2012-07-27 17:21:34 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
#ifndef mozilla_dom_archivereader_domarchivereader_h__
|
|
|
|
#define mozilla_dom_archivereader_domarchivereader_h__
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2013-03-09 23:57:14 -08:00
|
|
|
#include "nsWrapperCache.h"
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
#include "ArchiveReaderCommon.h"
|
2012-07-27 17:21:34 -07:00
|
|
|
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsIChannel.h"
|
|
|
|
#include "nsIDOMFile.h"
|
2012-07-28 17:33:58 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-03-09 23:57:14 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-06-18 17:57:51 -07:00
|
|
|
struct ArchiveReaderOptions;
|
2014-10-08 09:15:23 -07:00
|
|
|
class File;
|
2013-03-09 23:57:14 -08:00
|
|
|
class GlobalObject;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
BEGIN_ARCHIVEREADER_NAMESPACE
|
2012-07-27 17:21:34 -07:00
|
|
|
|
|
|
|
class ArchiveRequest;
|
|
|
|
|
2012-11-06 15:23:13 -08:00
|
|
|
/**
|
|
|
|
* This is the ArchiveReader object
|
|
|
|
*/
|
2013-03-09 23:57:14 -08:00
|
|
|
class ArchiveReader MOZ_FINAL : public nsISupports,
|
|
|
|
public nsWrapperCache
|
2012-07-27 17:21:34 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2013-03-09 23:57:14 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(ArchiveReader)
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2013-03-09 23:57:14 -08:00
|
|
|
static already_AddRefed<ArchiveReader>
|
2014-10-08 09:15:23 -07:00
|
|
|
Constructor(const GlobalObject& aGlobal, File& aBlob,
|
2013-03-09 23:57:14 -08:00
|
|
|
const ArchiveReaderOptions& aOptions, ErrorResult& aError);
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2014-10-08 09:15:23 -07:00
|
|
|
ArchiveReader(File& aBlob, nsPIDOMWindow* aWindow,
|
2013-12-17 02:47:25 -08:00
|
|
|
const nsACString& aEncoding);
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2013-03-09 23:57:14 -08:00
|
|
|
nsIDOMWindow* GetParentObject() const
|
|
|
|
{
|
|
|
|
return mWindow;
|
|
|
|
}
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2013-03-17 01:51:36 -07:00
|
|
|
already_AddRefed<ArchiveRequest> GetFilenames();
|
|
|
|
already_AddRefed<ArchiveRequest> GetFile(const nsAString& filename);
|
|
|
|
already_AddRefed<ArchiveRequest> GetFiles();
|
2012-07-27 17:21:34 -07:00
|
|
|
|
|
|
|
nsresult GetInputStream(nsIInputStream** aInputStream);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult GetSize(uint64_t* aSize);
|
2012-07-27 17:21:34 -07:00
|
|
|
|
|
|
|
public: // for the ArchiveRequest:
|
|
|
|
nsresult RegisterRequest(ArchiveRequest* aRequest);
|
|
|
|
|
|
|
|
public: // For events:
|
|
|
|
void Ready(nsTArray<nsCOMPtr<nsIDOMFile> >& aFileList,
|
|
|
|
nsresult aStatus);
|
|
|
|
|
|
|
|
private:
|
|
|
|
~ArchiveReader();
|
|
|
|
|
|
|
|
already_AddRefed<ArchiveRequest> GenerateArchiveRequest();
|
|
|
|
|
|
|
|
nsresult OpenArchive();
|
|
|
|
|
|
|
|
void RequestReady(ArchiveRequest* aRequest);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// The archive blob/file
|
2014-10-08 09:15:23 -07:00
|
|
|
nsRefPtr<File> mBlob;
|
2012-07-27 17:21:34 -07:00
|
|
|
|
|
|
|
// The window is needed by the requests
|
2014-01-06 18:53:23 -08:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2012-07-27 17:21:34 -07:00
|
|
|
|
|
|
|
// Are we ready to return data?
|
|
|
|
enum {
|
|
|
|
NOT_STARTED = 0,
|
|
|
|
WORKING,
|
|
|
|
READY
|
|
|
|
} mStatus;
|
|
|
|
|
|
|
|
// State of the read:
|
|
|
|
enum {
|
|
|
|
Header, // We are collecting the header: 30bytes
|
|
|
|
Name, // The name length is contained in the header
|
|
|
|
Data, // The length of the data segment COULD be written in the header
|
|
|
|
Search // ... if the data length is unknown (== 0) we wait until we read a new header
|
|
|
|
} mReadStatus;
|
|
|
|
|
|
|
|
// List of requests to be processed
|
|
|
|
nsTArray<nsRefPtr<ArchiveRequest> > mRequests;
|
|
|
|
|
|
|
|
// Everything related to the blobs and the status:
|
|
|
|
struct {
|
|
|
|
nsTArray<nsCOMPtr<nsIDOMFile> > fileList;
|
|
|
|
nsresult status;
|
|
|
|
} mData;
|
2012-11-06 15:23:13 -08:00
|
|
|
|
2013-12-17 02:47:25 -08:00
|
|
|
nsCString mEncoding;
|
2012-07-27 17:21:34 -07:00
|
|
|
};
|
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
END_ARCHIVEREADER_NAMESPACE
|
2012-07-27 17:21:34 -07:00
|
|
|
|
2014-05-07 07:32:12 -07:00
|
|
|
#endif // mozilla_dom_archivereader_domarchivereader_h__
|