Chromium Code Reviews| 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 #include "content/browser/service_worker/service_worker_provider_host.h" | 5 #include "content/browser/service_worker/service_worker_provider_host.h" |
| 6 | 6 |
| 7 #include "base/stl_util.h" | 7 #include "base/stl_util.h" |
| 8 #include "content/browser/message_port_message_filter.h" | 8 #include "content/browser/message_port_message_filter.h" |
| 9 #include "content/browser/service_worker/service_worker_context_core.h" | 9 #include "content/browser/service_worker/service_worker_context_core.h" |
| 10 #include "content/browser/service_worker/service_worker_context_request_handler. h" | 10 #include "content/browser/service_worker/service_worker_context_request_handler. h" |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 34 // won't associate the new version with a provider being destroyed. | 34 // won't associate the new version with a provider being destroyed. |
| 35 document_url_ = GURL(); | 35 document_url_ = GURL(); |
| 36 if (controlling_version_) | 36 if (controlling_version_) |
| 37 controlling_version_->RemoveControllee(this); | 37 controlling_version_->RemoveControllee(this); |
| 38 if (active_version_) | 38 if (active_version_) |
| 39 active_version_->RemovePotentialControllee(this); | 39 active_version_->RemovePotentialControllee(this); |
| 40 if (waiting_version_) | 40 if (waiting_version_) |
| 41 waiting_version_->RemovePotentialControllee(this); | 41 waiting_version_->RemovePotentialControllee(this); |
| 42 if (installing_version_) | 42 if (installing_version_) |
| 43 installing_version_->RemovePotentialControllee(this); | 43 installing_version_->RemovePotentialControllee(this); |
| 44 if (associated_registration_) | |
| 45 associated_registration_->RemoveListener(this); | |
| 46 } | |
| 47 | |
| 48 void ServiceWorkerProviderHost::OnVersionAttributesChanged( | |
| 49 ServiceWorkerRegistration* registration, | |
| 50 ChangedVersionAttributesMask changed_mask, | |
| 51 const ServiceWorkerRegistrationInfo& info) { | |
| 52 if (changed_mask.installing_changed()) | |
| 53 SetInstallingVersion(registration->installing_version()); | |
| 54 if (changed_mask.waiting_changed()) | |
| 55 SetWaitingVersion(registration->waiting_version()); | |
| 56 if (changed_mask.active_changed()) | |
| 57 SetActiveVersion(registration->active_version()); | |
| 58 } | |
| 59 | |
| 60 void ServiceWorkerProviderHost::OnRegistrationFailed( | |
| 61 ServiceWorkerRegistration* registration) { | |
| 62 DCHECK(associated_registration_); | |
| 63 DCHECK_EQ(registration->id(), associated_registration_->id()); | |
| 64 UnassociateRegistration(); | |
| 44 } | 65 } |
| 45 | 66 |
| 46 void ServiceWorkerProviderHost::SetDocumentUrl(const GURL& url) { | 67 void ServiceWorkerProviderHost::SetDocumentUrl(const GURL& url) { |
| 47 DCHECK(!url.has_ref()); | 68 DCHECK(!url.has_ref()); |
| 48 document_url_ = url; | 69 document_url_ = url; |
| 49 } | 70 } |
| 50 | 71 |
| 51 void ServiceWorkerProviderHost::SetControllerVersion( | 72 void ServiceWorkerProviderHost::SetControllerVersion( |
| 52 ServiceWorkerVersion* version) { | 73 ServiceWorkerVersion* version) { |
| 53 DCHECK(CanAssociateVersion(version)); | 74 DCHECK(CanAssociateVersion(version)); |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 152 info.process_id != process_id_) { | 173 info.process_id != process_id_) { |
| 153 // If we aren't trying to start this version in our process | 174 // If we aren't trying to start this version in our process |
| 154 // something is amiss. | 175 // something is amiss. |
| 155 return false; | 176 return false; |
| 156 } | 177 } |
| 157 | 178 |
| 158 running_hosted_version_ = live_version; | 179 running_hosted_version_ = live_version; |
| 159 return true; | 180 return true; |
| 160 } | 181 } |
| 161 | 182 |
| 183 void ServiceWorkerProviderHost::AssociateRegistration( | |
| 184 ServiceWorkerRegistration* registration) { | |
| 185 DCHECK(CanAssociateRegistration(registration)); | |
| 186 if (associated_registration_) | |
|
falken
2014/08/07 03:59:26
Now this can't happen, CanAssociateRegistration wo
nhiroki
2014/08/07 04:10:42
Done. Thanks!
| |
| 187 associated_registration_->RemoveListener(this); | |
| 188 associated_registration_ = registration; | |
| 189 | |
| 190 registration->AddListener(this); | |
| 191 SetActiveVersion(registration->active_version()); | |
| 192 SetInstallingVersion(registration->installing_version()); | |
| 193 SetWaitingVersion(registration->waiting_version()); | |
| 194 } | |
| 195 | |
| 196 void ServiceWorkerProviderHost::UnassociateRegistration() { | |
| 197 if (!associated_registration_) | |
| 198 return; | |
| 199 associated_registration_->RemoveListener(this); | |
| 200 associated_registration_ = NULL; | |
| 201 | |
| 202 SetActiveVersion(NULL); | |
| 203 SetInstallingVersion(NULL); | |
| 204 SetWaitingVersion(NULL); | |
| 205 } | |
| 206 | |
| 162 scoped_ptr<ServiceWorkerRequestHandler> | 207 scoped_ptr<ServiceWorkerRequestHandler> |
| 163 ServiceWorkerProviderHost::CreateRequestHandler( | 208 ServiceWorkerProviderHost::CreateRequestHandler( |
| 164 ResourceType resource_type, | 209 ResourceType resource_type, |
| 165 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context) { | 210 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context) { |
| 166 if (IsHostToRunningServiceWorker()) { | 211 if (IsHostToRunningServiceWorker()) { |
| 167 return scoped_ptr<ServiceWorkerRequestHandler>( | 212 return scoped_ptr<ServiceWorkerRequestHandler>( |
| 168 new ServiceWorkerContextRequestHandler( | 213 new ServiceWorkerContextRequestHandler( |
| 169 context_, AsWeakPtr(), blob_storage_context, resource_type)); | 214 context_, AsWeakPtr(), blob_storage_context, resource_type)); |
| 170 } | 215 } |
| 171 if (ServiceWorkerUtils::IsMainResourceType(resource_type) || | 216 if (ServiceWorkerUtils::IsMainResourceType(resource_type) || |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 194 else if (waiting_version_) | 239 else if (waiting_version_) |
| 195 already_associated_version = waiting_version_; | 240 already_associated_version = waiting_version_; |
| 196 else if (installing_version_) | 241 else if (installing_version_) |
| 197 already_associated_version = installing_version_; | 242 already_associated_version = installing_version_; |
| 198 | 243 |
| 199 return !already_associated_version || | 244 return !already_associated_version || |
| 200 already_associated_version->registration_id() == | 245 already_associated_version->registration_id() == |
| 201 version->registration_id(); | 246 version->registration_id(); |
| 202 } | 247 } |
| 203 | 248 |
| 249 bool ServiceWorkerProviderHost::CanAssociateRegistration( | |
| 250 ServiceWorkerRegistration* registration) { | |
| 251 if (!context_) | |
| 252 return false; | |
| 253 if (running_hosted_version_) | |
| 254 return false; | |
| 255 if (!registration || associated_registration_) | |
| 256 return false; | |
| 257 return true; | |
| 258 } | |
| 259 | |
| 204 void ServiceWorkerProviderHost::PostMessage( | 260 void ServiceWorkerProviderHost::PostMessage( |
| 205 const base::string16& message, | 261 const base::string16& message, |
| 206 const std::vector<int>& sent_message_port_ids) { | 262 const std::vector<int>& sent_message_port_ids) { |
| 207 if (!dispatcher_host_) | 263 if (!dispatcher_host_) |
| 208 return; // Could be NULL in some tests. | 264 return; // Could be NULL in some tests. |
| 209 | 265 |
| 210 std::vector<int> new_routing_ids; | 266 std::vector<int> new_routing_ids; |
| 211 dispatcher_host_->message_port_message_filter()-> | 267 dispatcher_host_->message_port_message_filter()-> |
| 212 UpdateMessagePortsWithNewRoutes(sent_message_port_ids, | 268 UpdateMessagePortsWithNewRoutes(sent_message_port_ids, |
| 213 &new_routing_ids); | 269 &new_routing_ids); |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 231 dispatcher_host_->RegisterServiceWorkerHandle(handle.Pass()); | 287 dispatcher_host_->RegisterServiceWorkerHandle(handle.Pass()); |
| 232 } | 288 } |
| 233 return info; | 289 return info; |
| 234 } | 290 } |
| 235 | 291 |
| 236 bool ServiceWorkerProviderHost::IsContextAlive() { | 292 bool ServiceWorkerProviderHost::IsContextAlive() { |
| 237 return context_ != NULL; | 293 return context_ != NULL; |
| 238 } | 294 } |
| 239 | 295 |
| 240 } // namespace content | 296 } // namespace content |
| OLD | NEW |