skia2/tools/UrlDataManager.cpp
Mike Klein cff6396875 begin refactoring SkTDynamicHash and SkTMultiMap
The biggest mismatch between these and SkTHash{Map,Set,Table}
is the old ones provide Iter and ConstIter, the new ones foreach().

This CL,

   - adds foreach() methods to the old types,
   - replaces all uses of ConstIter with foreach(),
   - replaces most uses of Iter with foreach(),

I'm leaving one spot using Iter to walk the table and remove its
elements for its own CL... it'll be a little more complicated to get
that right.

From there it should be straightforward to turn SkTDynamicHash
into a thin wrapper over an SkTHashTable.

Bugs: skia:9703
Change-Id: Ia6ba87c35b89585c42b5b9f118f4cbf3abd04f0d
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/277098
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2020-03-16 14:06:30 +00:00

61 lines
1.6 KiB
C++

/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "tools/UrlDataManager.h"
#include <unordered_map>
bool operator==(const SkData& a, const SkData& b) {
return a.equals(&b);
}
UrlDataManager::UrlDataManager(SkString rootUrl) : fRootUrl(rootUrl), fDataId(0) {}
SkString UrlDataManager::addData(SkData* data, const char* contentType) {
UrlData* urlData = fCache.find(*data);
if (fCache.find(*data)) {
SkASSERT(data->equals(urlData->fData.get()));
return urlData->fUrl;
}
urlData = new UrlData;
urlData->fData.reset(SkRef(data));
urlData->fContentType.set(contentType);
urlData->fUrl.appendf("%s/%d", fRootUrl.c_str(), fDataId++);
fCache.add(urlData);
SkASSERT(!fUrlLookup.find(urlData->fUrl));
fUrlLookup.add(urlData);
return urlData->fUrl;
}
void UrlDataManager::reset() {
fCache.foreach([&](UrlData* urlData) {
urlData->unref();
});
fCache.rewind();
}
void UrlDataManager::indexImages(const std::vector<sk_sp<SkImage>>& images) {
SkASSERT(imageMap.size() == 0); // this method meant only for initialization once.
for (size_t i = 0; i < images.size(); ++i) {
imageMap.insert({images[i].get(), i});
}
}
int UrlDataManager::lookupImage(const SkImage* im) {
auto search = imageMap.find(im);
if (search != imageMap.end()) {
return search->second;
} else {
// -1 signals the pointer to this image wasn't in the original list.
// Maybe it was synthesized after file load? If so, you shouldn't be looking it up here.
return -1;
}
}