OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTER_JOB_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTER_JOB_H_ |
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTER_JOB_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTER_JOB_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 // depending on what is already registered: | 26 // depending on what is already registered: |
27 // - creating a ServiceWorkerRegistration instance if there isn't | 27 // - creating a ServiceWorkerRegistration instance if there isn't |
28 // already something registered | 28 // already something registered |
29 // - creating a ServiceWorkerVersion for the new version. | 29 // - creating a ServiceWorkerVersion for the new version. |
30 // - starting a worker for the ServiceWorkerVersion | 30 // - starting a worker for the ServiceWorkerVersion |
31 // - firing the 'install' event at the ServiceWorkerVersion | 31 // - firing the 'install' event at the ServiceWorkerVersion |
32 // - firing the 'activate' event at the ServiceWorkerVersion | 32 // - firing the 'activate' event at the ServiceWorkerVersion |
33 // - waiting for older ServiceWorkerVersions to deactivate | 33 // - waiting for older ServiceWorkerVersions to deactivate |
34 // - designating the new version to be the 'active' version | 34 // - designating the new version to be the 'active' version |
35 // - updating storage | 35 // - updating storage |
36 class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase, | 36 class ServiceWorkerRegisterJob |
37 public EmbeddedWorkerInstance::Listener, | 37 : public ServiceWorkerRegisterJobBase, |
38 public ServiceWorkerRegistration::Listener { | 38 public EmbeddedWorkerInstance::Listener { |
39 public: | 39 public: |
40 typedef base::Callback<void(ServiceWorkerStatusCode status, | 40 typedef base::Callback<void(ServiceWorkerStatusCode status, |
41 ServiceWorkerRegistration* registration, | 41 ServiceWorkerRegistration* registration, |
42 ServiceWorkerVersion* version)> | 42 ServiceWorkerVersion* version)> |
43 RegistrationCallback; | 43 RegistrationCallback; |
44 | 44 |
45 // For registration jobs. | 45 // For registration jobs. |
46 CONTENT_EXPORT ServiceWorkerRegisterJob( | 46 CONTENT_EXPORT ServiceWorkerRegisterJob( |
47 base::WeakPtr<ServiceWorkerContextCore> context, | 47 base::WeakPtr<ServiceWorkerContextCore> context, |
48 const GURL& pattern, | 48 const GURL& pattern, |
(...skipping 18 matching lines...) Expand all Loading... |
67 virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE; | 67 virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE; |
68 virtual RegistrationJobType GetType() OVERRIDE; | 68 virtual RegistrationJobType GetType() OVERRIDE; |
69 | 69 |
70 private: | 70 private: |
71 FRIEND_TEST_ALL_PREFIXES(ServiceWorkerProviderHostWaitingVersionTest, | 71 FRIEND_TEST_ALL_PREFIXES(ServiceWorkerProviderHostWaitingVersionTest, |
72 AssociateInstallingVersionToDocuments); | 72 AssociateInstallingVersionToDocuments); |
73 FRIEND_TEST_ALL_PREFIXES(ServiceWorkerProviderHostWaitingVersionTest, | 73 FRIEND_TEST_ALL_PREFIXES(ServiceWorkerProviderHostWaitingVersionTest, |
74 DisassociateVersionFromDocuments); | 74 DisassociateVersionFromDocuments); |
75 | 75 |
76 enum Phase { | 76 enum Phase { |
77 INITIAL, | 77 INITIAL, |
78 START, | 78 START, |
79 WAIT_FOR_UNINSTALL, | 79 REGISTER, |
80 REGISTER, | 80 UPDATE, |
81 UPDATE, | 81 INSTALL, |
82 INSTALL, | 82 STORE, |
83 STORE, | 83 COMPLETE, |
84 COMPLETE, | 84 ABORT, |
85 ABORT, | |
86 }; | 85 }; |
87 | 86 |
88 // Holds internal state of ServiceWorkerRegistrationJob, to compel use of the | 87 // Holds internal state of ServiceWorkerRegistrationJob, to compel use of the |
89 // getter/setter functions. | 88 // getter/setter functions. |
90 struct Internal { | 89 struct Internal { |
91 Internal(); | 90 Internal(); |
92 ~Internal(); | 91 ~Internal(); |
93 scoped_refptr<ServiceWorkerRegistration> registration; | 92 scoped_refptr<ServiceWorkerRegistration> registration; |
94 | 93 |
95 // Holds the version created by this job. It can be the 'installing', | 94 // Holds the version created by this job. It can be the 'installing', |
96 // 'waiting', or 'active' version depending on the phase. | 95 // 'waiting', or 'active' version depending on the phase. |
97 scoped_refptr<ServiceWorkerVersion> new_version; | 96 scoped_refptr<ServiceWorkerVersion> new_version; |
98 | |
99 scoped_refptr<ServiceWorkerRegistration> uninstalling_registration; | |
100 }; | 97 }; |
101 | 98 |
102 void set_registration(ServiceWorkerRegistration* registration); | 99 void set_registration(ServiceWorkerRegistration* registration); |
103 ServiceWorkerRegistration* registration(); | 100 ServiceWorkerRegistration* registration(); |
104 void set_new_version(ServiceWorkerVersion* version); | 101 void set_new_version(ServiceWorkerVersion* version); |
105 ServiceWorkerVersion* new_version(); | 102 ServiceWorkerVersion* new_version(); |
106 void set_uninstalling_registration(ServiceWorkerRegistration* registration); | |
107 ServiceWorkerRegistration* uninstalling_registration(); | |
108 | 103 |
109 void SetPhase(Phase phase); | 104 void SetPhase(Phase phase); |
110 | 105 |
111 void ContinueWithRegistration( | 106 void ContinueWithRegistration( |
112 ServiceWorkerStatusCode status, | 107 ServiceWorkerStatusCode status, |
113 const scoped_refptr<ServiceWorkerRegistration>& registration); | 108 const scoped_refptr<ServiceWorkerRegistration>& registration); |
114 void ContinueWithUpdate( | 109 void ContinueWithUpdate( |
115 ServiceWorkerStatusCode status, | 110 ServiceWorkerStatusCode status, |
116 const scoped_refptr<ServiceWorkerRegistration>& registration); | 111 const scoped_refptr<ServiceWorkerRegistration>& registration); |
117 void RegisterAndContinue(ServiceWorkerStatusCode status); | 112 void RegisterAndContinue(ServiceWorkerStatusCode status); |
118 void WaitForUninstall( | |
119 const scoped_refptr<ServiceWorkerRegistration>& registration); | |
120 void ContinueWithRegistrationForSameScriptUrl( | |
121 const scoped_refptr<ServiceWorkerRegistration>& existing_registration, | |
122 ServiceWorkerStatusCode status); | |
123 void UpdateAndContinue(); | 113 void UpdateAndContinue(); |
124 void OnStartWorkerFinished(ServiceWorkerStatusCode status); | 114 void OnStartWorkerFinished(ServiceWorkerStatusCode status); |
125 void OnStoreRegistrationComplete(ServiceWorkerStatusCode status); | 115 void OnStoreRegistrationComplete(ServiceWorkerStatusCode status); |
126 void InstallAndContinue(); | 116 void InstallAndContinue(); |
127 void OnInstallFinished(ServiceWorkerStatusCode status); | 117 void OnInstallFinished(ServiceWorkerStatusCode status); |
128 void ActivateAndContinue(); | 118 void ActivateAndContinue(); |
129 void OnActivateFinished(ServiceWorkerStatusCode status); | 119 void OnActivateFinished(ServiceWorkerStatusCode status); |
130 void Complete(ServiceWorkerStatusCode status); | 120 void Complete(ServiceWorkerStatusCode status); |
131 void CompleteInternal(ServiceWorkerStatusCode status); | 121 void CompleteInternal(ServiceWorkerStatusCode status); |
132 void ResolvePromise(ServiceWorkerStatusCode status, | 122 void ResolvePromise(ServiceWorkerStatusCode status, |
133 ServiceWorkerRegistration* registration, | 123 ServiceWorkerRegistration* registration, |
134 ServiceWorkerVersion* version); | 124 ServiceWorkerVersion* version); |
135 | 125 |
136 // EmbeddedWorkerInstance::Listener override of OnPausedAfterDownload. | 126 // EmbeddedWorkerInstance::Listener override of OnPausedAfterDownload. |
137 virtual void OnPausedAfterDownload() OVERRIDE; | 127 virtual void OnPausedAfterDownload() OVERRIDE; |
138 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 128 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
139 | 129 |
140 // ServiceWorkerRegistration::Listener overrides | |
141 virtual void OnRegistrationFinishedUninstalling( | |
142 ServiceWorkerRegistration* registration) OVERRIDE; | |
143 | |
144 void OnCompareScriptResourcesComplete( | 130 void OnCompareScriptResourcesComplete( |
145 ServiceWorkerVersion* most_recent_version, | 131 ServiceWorkerVersion* most_recent_version, |
146 ServiceWorkerStatusCode status, | 132 ServiceWorkerStatusCode status, |
147 bool are_equal); | 133 bool are_equal); |
148 | 134 |
149 void AssociateProviderHostsToRegistration( | 135 void AssociateProviderHostsToRegistration( |
150 ServiceWorkerRegistration* registration); | 136 ServiceWorkerRegistration* registration); |
151 | 137 |
152 // The ServiceWorkerContextCore object should always outlive this. | 138 // The ServiceWorkerContextCore object should always outlive this. |
153 base::WeakPtr<ServiceWorkerContextCore> context_; | 139 base::WeakPtr<ServiceWorkerContextCore> context_; |
(...skipping 10 matching lines...) Expand all Loading... |
164 scoped_refptr<ServiceWorkerRegistration> promise_resolved_registration_; | 150 scoped_refptr<ServiceWorkerRegistration> promise_resolved_registration_; |
165 scoped_refptr<ServiceWorkerVersion> promise_resolved_version_; | 151 scoped_refptr<ServiceWorkerVersion> promise_resolved_version_; |
166 base::WeakPtrFactory<ServiceWorkerRegisterJob> weak_factory_; | 152 base::WeakPtrFactory<ServiceWorkerRegisterJob> weak_factory_; |
167 | 153 |
168 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegisterJob); | 154 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegisterJob); |
169 }; | 155 }; |
170 | 156 |
171 } // namespace content | 157 } // namespace content |
172 | 158 |
173 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTER_JOB_H_ | 159 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REGISTER_JOB_H_ |
OLD | NEW |