| /* |
| * Copyright (C) 2017 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #pragma once |
| |
| #if ENABLE(SERVICE_WORKER) |
| |
| #include "SWServer.h" |
| #include "ServiceWorkerClientIdentifier.h" |
| #include "ServiceWorkerRegistrationData.h" |
| #include "ServiceWorkerTypes.h" |
| #include <wtf/HashCountedSet.h> |
| #include <wtf/MonotonicTime.h> |
| #include <wtf/WallTime.h> |
| #include <wtf/WeakPtr.h> |
| |
| namespace WebCore { |
| |
| class SWServer; |
| class SWServerWorker; |
| enum class ServiceWorkerRegistrationState : uint8_t; |
| enum class ServiceWorkerState : uint8_t; |
| struct ExceptionData; |
| struct ServiceWorkerContextData; |
| struct ServiceWorkerFetchResult; |
| |
| class SWServerRegistration : public CanMakeWeakPtr<SWServerRegistration> { |
| WTF_MAKE_FAST_ALLOCATED; |
| public: |
| SWServerRegistration(SWServer&, const ServiceWorkerRegistrationKey&, ServiceWorkerUpdateViaCache, const URL& scopeURL, const URL& scriptURL); |
| ~SWServerRegistration(); |
| |
| const ServiceWorkerRegistrationKey& key() const { return m_registrationKey; } |
| ServiceWorkerRegistrationIdentifier identifier() const { return m_identifier; } |
| |
| SWServerWorker* getNewestWorker(); |
| WEBCORE_EXPORT ServiceWorkerRegistrationData data() const; |
| |
| void setLastUpdateTime(WallTime); |
| WallTime lastUpdateTime() const { return m_lastUpdateTime; } |
| bool isStale() const { return m_lastUpdateTime && (WallTime::now() - m_lastUpdateTime) > 86400_s; } |
| |
| void setUpdateViaCache(ServiceWorkerUpdateViaCache); |
| ServiceWorkerUpdateViaCache updateViaCache() const { return m_updateViaCache; } |
| |
| void updateRegistrationState(ServiceWorkerRegistrationState, SWServerWorker*); |
| void updateWorkerState(SWServerWorker&, ServiceWorkerState); |
| void fireUpdateFoundEvent(); |
| |
| void addClientServiceWorkerRegistration(SWServerConnectionIdentifier); |
| void removeClientServiceWorkerRegistration(SWServerConnectionIdentifier); |
| |
| void setPreInstallationWorker(SWServerWorker*); |
| SWServerWorker* preInstallationWorker() const { return m_preInstallationWorker.get(); } |
| SWServerWorker* installingWorker() const { return m_installingWorker.get(); } |
| SWServerWorker* waitingWorker() const { return m_waitingWorker.get(); } |
| SWServerWorker* activeWorker() const { return m_activeWorker.get(); } |
| |
| MonotonicTime creationTime() const { return m_creationTime; } |
| |
| bool hasClientsUsingRegistration() const { return !m_clientsUsingRegistration.isEmpty(); } |
| void addClientUsingRegistration(const ServiceWorkerClientIdentifier&); |
| void removeClientUsingRegistration(const ServiceWorkerClientIdentifier&); |
| void unregisterServerConnection(SWServerConnectionIdentifier); |
| |
| void notifyClientsOfControllerChange(); |
| void controlClient(ServiceWorkerClientIdentifier); |
| |
| void clear(); |
| bool tryClear(); |
| void tryActivate(); |
| void didFinishActivation(ServiceWorkerIdentifier); |
| |
| bool isUnregistered() const; |
| |
| void forEachConnection(const WTF::Function<void(SWServer::Connection&)>&); |
| |
| WEBCORE_EXPORT bool shouldSoftUpdate(const FetchOptions&) const; |
| WEBCORE_EXPORT void softUpdate(); |
| |
| String scopeURLWithoutFragment() const { return m_scopeURL; } |
| |
| private: |
| void activate(); |
| void handleClientUnload(); |
| |
| ServiceWorkerRegistrationIdentifier m_identifier; |
| ServiceWorkerRegistrationKey m_registrationKey; |
| ServiceWorkerUpdateViaCache m_updateViaCache; |
| URL m_scopeURL; |
| URL m_scriptURL; |
| |
| RefPtr<SWServerWorker> m_preInstallationWorker; // Implementation detail, not part of the specification. |
| RefPtr<SWServerWorker> m_installingWorker; |
| RefPtr<SWServerWorker> m_waitingWorker; |
| RefPtr<SWServerWorker> m_activeWorker; |
| |
| WallTime m_lastUpdateTime; |
| |
| HashCountedSet<SWServerConnectionIdentifier> m_connectionsWithClientRegistrations; |
| SWServer& m_server; |
| |
| MonotonicTime m_creationTime; |
| HashMap<SWServerConnectionIdentifier, HashSet<DocumentIdentifier>> m_clientsUsingRegistration; |
| }; |
| |
| } // namespace WebCore |
| |
| #endif // ENABLE(SERVICE_WORKER) |