/* 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/. */ #ifndef nsDeviceStorage_h #define nsDeviceStorage_h class nsPIDOMWindow; #include "PCOMContentPermissionRequestChild.h" #include "DOMRequest.h" #include "nsAutoPtr.h" #include "nsCycleCollectionParticipant.h" #include "nsDOMClassInfoID.h" #include "nsIClassInfo.h" #include "nsIContentPermissionPrompt.h" #include "nsIDOMDeviceStorageCursor.h" #include "nsIDOMDeviceStorageStat.h" #include "nsIDOMWindow.h" #include "nsIURI.h" #include "nsInterfaceHashtable.h" #include "nsIPrincipal.h" #include "nsString.h" #include "nsWeakPtr.h" #include "nsIDOMEventListener.h" #include "nsIDOMEventTarget.h" #include "nsIObserver.h" #include "mozilla/Mutex.h" #include "DeviceStorage.h" #define POST_ERROR_EVENT_FILE_DOES_NOT_EXIST "File location doesn't exists" #define POST_ERROR_EVENT_FILE_NOT_ENUMERABLE "File location is not enumerable" #define POST_ERROR_EVENT_PERMISSION_DENIED "Permission Denied" #define POST_ERROR_EVENT_ILLEGAL_FILE_NAME "Illegal file name" #define POST_ERROR_EVENT_UNKNOWN "Unknown" #define POST_ERROR_EVENT_NON_STRING_TYPE_UNSUPPORTED "Non-string type unsupported" #define POST_ERROR_EVENT_NOT_IMPLEMENTED "Not implemented" using namespace mozilla::dom; class DeviceStorageFile MOZ_FINAL : public nsISupports { public: nsCOMPtr mFile; nsString mPath; nsString mStorageType; bool mEditable; DeviceStorageFile(const nsAString& aStorageType, nsIFile* aFile, const nsAString& aPath); DeviceStorageFile(const nsAString& aStorageType, nsIFile* aFile); void SetPath(const nsAString& aPath); void SetEditable(bool aEditable); NS_DECL_ISUPPORTS // we want to make sure that the names of file can't reach // outside of the type of storage the user asked for. bool IsSafePath(); bool IsType(nsAString& aType); nsresult Remove(); nsresult Write(nsIInputStream* aInputStream); nsresult Write(InfallibleTArray& bits); void CollectFiles(nsTArray > &aFiles, uint64_t aSince = 0); void collectFilesInternal(nsTArray > &aFiles, uint64_t aSince, nsAString& aRootPath); static void DirectoryDiskUsage(nsIFile* aFile, uint64_t* aSoFar); private: void NormalizeFilePath(); void AppendRelativePath(); }; class ContinueCursorEvent MOZ_FINAL: public nsRunnable { public: ContinueCursorEvent(nsRefPtr& aRequest); ContinueCursorEvent(DOMRequest* aRequest); ~ContinueCursorEvent(); NS_IMETHOD Run(); private: nsRefPtr mRequest; }; class nsDOMDeviceStorageCursor MOZ_FINAL : public nsIDOMDeviceStorageCursor , public DOMRequest , public nsIContentPermissionRequest , public PCOMContentPermissionRequestChild { public: NS_DECL_ISUPPORTS_INHERITED NS_DECL_NSICONTENTPERMISSIONREQUEST NS_DECL_NSIDOMDEVICESTORAGECURSOR nsDOMDeviceStorageCursor(nsIDOMWindow* aWindow, nsIPrincipal* aPrincipal, DeviceStorageFile* aFile, uint64_t aSince); nsTArray > mFiles; bool mOkToCallContinue; uint64_t mSince; virtual bool Recv__delete__(const bool& allow); virtual void IPDLRelease(); void GetStorageType(nsAString & aType); private: ~nsDOMDeviceStorageCursor(); nsRefPtr mFile; nsCOMPtr mPrincipal; }; class nsDOMDeviceStorageStat MOZ_FINAL : public nsIDOMDeviceStorageStat { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOMDEVICESTORAGESTAT nsDOMDeviceStorageStat(uint64_t aFreeBytes, uint64_t aTotalBytes, nsAString& aState); private: ~nsDOMDeviceStorageStat(); uint64_t mFreeBytes, mTotalBytes; nsString mState; }; //helpers jsval StringToJsval(nsPIDOMWindow* aWindow, nsAString& aString); jsval nsIFileToJsval(nsPIDOMWindow* aWindow, DeviceStorageFile* aFile); jsval InterfaceToJsval(nsPIDOMWindow* aWindow, nsISupports* aObject, const nsIID* aIID); #ifdef MOZ_WIDGET_GONK nsresult GetSDCardStatus(nsAString& aState); #endif #endif