aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/UrlDataManager.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2016-02-08 07:08:21 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-08 07:08:21 -0800
commitcdad12f3b14e7cb4c1aa03990ea8044a3f204403 (patch)
tree8cf9f61c0866ece986b8dcccf2a80f0f2b0342a0 /tools/UrlDataManager.h
parentb9c61f7a6e32cf5b17c16da484b3fe5902ba92f0 (diff)
Create image cache for use by json canvas
Diffstat (limited to 'tools/UrlDataManager.h')
-rw-r--r--tools/UrlDataManager.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/tools/UrlDataManager.h b/tools/UrlDataManager.h
new file mode 100644
index 0000000000..b047edacbc
--- /dev/null
+++ b/tools/UrlDataManager.h
@@ -0,0 +1,76 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkUrlDataManager_DEFINED
+#define SkUrlDataManager_DEFINED
+
+#include "SkChecksum.h"
+#include "SkData.h"
+#include "SkString.h"
+#include "SkTDynamicHash.h"
+
+/*
+ * A simple class which allows clients to add opaque data types, and returns a url where this data
+ * will be hosted. Its up to the owner of this class to actually serve the data.
+ */
+bool operator==(const SkData& a, const SkData& b);
+
+class UrlDataManager {
+public:
+ UrlDataManager(SkString rootUrl);
+ ~UrlDataManager() { this->reset(); }
+
+ /*
+ * Adds a data blob to the cache with a particular content type. UrlDataManager will hash
+ * the blob data to ensure uniqueness
+ */
+ SkString addData(SkData*, const char* contentType);
+
+ struct UrlData : public SkRefCnt {
+ SkString fUrl;
+ SkString fContentType;
+ SkAutoTUnref<SkData> fData;
+ };
+
+ /*
+ * returns the UrlData object which should be hosted at 'url'
+ */
+ UrlData* getDataFromUrl(SkString url) {
+ return fUrlLookup.find(url);
+ }
+ void reset();
+
+private:
+ struct LookupTrait {
+ // We use the data as a hash, this is not really optimal but is fine until proven otherwise
+ static const SkData& GetKey(const UrlData& data) {
+ return *data.fData.get();
+ }
+
+ static uint32_t Hash(const SkData& key) {
+ return SkChecksum::Murmur3(key.bytes(), key.size());
+ }
+ };
+
+ struct ReverseLookupTrait {
+ static const SkString& GetKey(const UrlData& data) {
+ return data.fUrl;
+ }
+
+ static uint32_t Hash(const SkString& key) {
+ return SkChecksum::Murmur3(key.c_str(), strlen(key.c_str()));
+ }
+ };
+
+
+ SkString fRootUrl;
+ SkTDynamicHash<UrlData, SkData, LookupTrait> fCache;
+ SkTDynamicHash<UrlData, SkString, ReverseLookupTrait> fUrlLookup;
+ uint32_t fDataId;
+};
+
+#endif