/* 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 mozilla_dom_workers_ServiceWorkerRegistrar_h #define mozilla_dom_workers_ServiceWorkerRegistrar_h #include "mozilla/Monitor.h" #include "mozilla/Telemetry.h" #include "nsClassHashtable.h" #include "nsIObserver.h" #include "nsCOMPtr.h" #include "nsString.h" #include "nsTArray.h" #define SERVICEWORKERREGISTRAR_FILE "serviceworker.txt" #define SERVICEWORKERREGISTRAR_VERSION "1" #define SERVICEWORKERREGISTRAR_TERMINATOR "#" #define SERVICEWORKERREGISTRAR_TRUE "true" #define SERVICEWORKERREGISTRAR_FALSE "false" #define SERVICEWORKERREGISTRAR_SYSTEM_PRINCIPAL "system" #define SERVICEWORKERREGISTRAR_CONTENT_PRINCIPAL "content" class nsIFile; namespace mozilla { namespace dom { class ServiceWorkerRegistrationData; class ServiceWorkerRegistrar : public nsIObserver { friend class ServiceWorkerRegistrarSaveDataRunnable; public: NS_DECL_THREADSAFE_ISUPPORTS NS_DECL_NSIOBSERVER static void Initialize(); void Shutdown(); void DataSaved(); static already_AddRefed Get(); void GetRegistrations(nsTArray& aValues); void RegisterServiceWorker(const ServiceWorkerRegistrationData& aData); void UnregisterServiceWorker(const nsACString& aScope); protected: // These methods are protected because we test this class using gTest // subclassing it. void LoadData(); void SaveData(); nsresult ReadData(); nsresult WriteData(); void DeleteData(); ServiceWorkerRegistrar(); virtual ~ServiceWorkerRegistrar(); private: void ProfileStarted(); void ProfileStopped(); void ScheduleSaveData(); void ShutdownCompleted(); void MaybeScheduleShutdownCompleted(); mozilla::Monitor mMonitor; protected: // mData and mDataLoaded are protected by mMonitor. nsTArray mData; bool mDataLoaded; bool mShuttingDown; bool* mShutdownCompleteFlag; uint32_t mRunnableCounter; nsCOMPtr mProfileDir; }; } // dom namespace } // mozilla namespace #endif // mozilla_dom_workers_ServiceWorkerRegistrar_h