blob: 60332fbff90d7ada92055104033f53efbcf7c5be [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
#define CONTENT_RENDERER_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
#include <string>
#include "content/common/appcache_interfaces.h"
#include "mojo/public/cpp/system/message_pipe.h"
#include "third_party/blink/public/platform/web_application_cache_host.h"
#include "third_party/blink/public/platform/web_application_cache_host_client.h"
#include "third_party/blink/public/platform/web_url_response.h"
#include "third_party/blink/public/platform/web_vector.h"
#include "url/gurl.h"
namespace content {
class WebApplicationCacheHostImpl : public blink::WebApplicationCacheHost {
public:
// Returns the host having given id or NULL if there is no such host.
static WebApplicationCacheHostImpl* FromId(int id);
WebApplicationCacheHostImpl(blink::WebApplicationCacheHostClient* client,
AppCacheBackend* backend,
int appcache_host_id);
~WebApplicationCacheHostImpl() override;
int host_id() const { return host_id_; }
AppCacheBackend* backend() const { return backend_; }
blink::WebApplicationCacheHostClient* client() const { return client_; }
virtual void OnCacheSelected(const AppCacheInfo& info);
void OnStatusChanged(AppCacheStatus);
void OnEventRaised(AppCacheEventID);
void OnProgressEventRaised(const GURL& url, int num_total, int num_complete);
void OnErrorEventRaised(const AppCacheErrorDetails& details);
virtual void OnLogMessage(AppCacheLogLevel log_level,
const std::string& message) {}
virtual void OnContentBlocked(const GURL& manifest_url) {}
// blink::WebApplicationCacheHost:
void WillStartMainResourceRequest(
const blink::WebURL& url,
const blink::WebString& method,
const WebApplicationCacheHost* spawning_host) override;
void SelectCacheWithoutManifest() override;
bool SelectCacheWithManifest(const blink::WebURL& manifestURL) override;
void DidReceiveResponseForMainResource(const blink::WebURLResponse&) override;
void DidReceiveDataForMainResource(const char* data, size_t len) override;
void DidFinishLoadingMainResource(bool success) override;
blink::WebApplicationCacheHost::Status GetStatus() override;
bool StartUpdate() override;
bool SwapCache() override;
void GetResourceList(blink::WebVector<ResourceInfo>* resources) override;
void GetAssociatedCacheInfo(CacheInfo* info) override;
int GetHostID() const override;
// Set the URLLoaderFactory instance to be used for subresource requests.
virtual void SetSubresourceFactory(
network::mojom::URLLoaderFactoryPtr url_loader_factory) {}
private:
enum IsNewMasterEntry { MAYBE_NEW_ENTRY, NEW_ENTRY, OLD_ENTRY };
blink::WebApplicationCacheHostClient* client_;
AppCacheBackend* backend_;
int host_id_;
AppCacheStatus status_;
blink::WebURLResponse document_response_;
GURL document_url_;
bool is_scheme_supported_;
bool is_get_method_;
IsNewMasterEntry is_new_master_entry_;
AppCacheInfo cache_info_;
GURL original_main_resource_url_; // Used to detect redirection.
bool was_select_cache_called_;
};
} // namespace content
#endif // CONTENT_RENDERER_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_