All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EmscriptenStubHttpCache.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IHttpCache.h"
6 #include "Types.h"
7 #include "Helpers.h"
8 #include "Cache.h"
9 #include "CacheModel.h"
10 #include <string>
11 
12 namespace Eegeo
13 {
14  namespace Emscripten
15  {
17  {
18  public:
20 
21  virtual ~EmscriptenStubHttpCache() {}
22 
23  virtual void AddToCache(const Eegeo::Web::Cache::CacheRecord& cacheRecordToAdd) {}
24 
25  virtual void RemoveFromCache(const std::string& url) {}
26 
27  virtual bool TryGetCachedHeaderInfo(
28  const std::string& url,
29  std::string& out_cachedETag,
30  std::string& out_cachedLastModified) { return false; }
31 
32  virtual void GetFileNameByUrl(std::string& name, const std::string& url) { name = ""; }
33  virtual void SetMaxCacheSize(Helpers::CacheSize_t size) {}
34  virtual void ClearCache() {}
35  virtual bool IsInCache(const std::string& url) { return false; }
36  virtual void FlushInMemoryCacheRepresentation(bool prune) {}
37  virtual void ReloadCacheRepresentationFromStorage() {}
38  virtual bool LoadLocallyCachedData(const std::string& url, std::vector<Byte>& out_buffer) { return false; }
39  virtual bool GetEnabled() { return false; }
40  virtual void SetEnabled(bool enabled) {}
41  };
42  }
43 }