aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/lazy/SkBitmapFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lazy/SkBitmapFactory.cpp')
-rw-r--r--src/lazy/SkBitmapFactory.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/lazy/SkBitmapFactory.cpp b/src/lazy/SkBitmapFactory.cpp
new file mode 100644
index 0000000000..d67e019755
--- /dev/null
+++ b/src/lazy/SkBitmapFactory.cpp
@@ -0,0 +1,79 @@
+/*
+ * Copyright 2012 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkBitmapFactory.h"
+
+#include "SkBitmap.h"
+#include "SkData.h"
+#include "SkImageCache.h"
+#include "SkImagePriv.h"
+#include "SkLazyPixelRef.h"
+
+SkBitmapFactory::SkBitmapFactory(SkBitmapFactory::DecodeProc proc)
+ : fDecodeProc(proc)
+ , fImageCache(NULL)
+ , fCacheSelector(NULL) {
+ SkASSERT(fDecodeProc != NULL);
+}
+
+SkBitmapFactory::~SkBitmapFactory() {
+ SkSafeUnref(fImageCache);
+}
+
+void SkBitmapFactory::setImageCache(SkImageCache *cache) {
+ SkRefCnt_SafeAssign(fImageCache, cache);
+ if (cache != NULL) {
+ fCacheSelector = NULL;
+ }
+}
+
+void SkBitmapFactory::setCacheSelector(CacheSelector selector) {
+ fCacheSelector = selector;
+ if (selector != NULL) {
+ SkSafeUnref(fImageCache);
+ fImageCache = NULL;
+ }
+}
+
+bool SkBitmapFactory::installPixelRef(SkData* data, SkBitmap* dst) {
+ if (NULL == data || 0 == data->size() || dst == NULL) {
+ return false;
+ }
+
+ SkImage::Info info;
+ if (!fDecodeProc(data->data(), data->size(), &info, NULL)) {
+ return false;
+ }
+
+ bool isOpaque = false;
+ SkBitmap::Config config = SkImageInfoToBitmapConfig(info, &isOpaque);
+
+ Target target;
+ // FIMXE: There will be a problem if this rowbytes is calculated differently from
+ // in SkLazyPixelRef.
+ target.fRowBytes = SkImageMinRowBytes(info);
+
+ dst->setConfig(config, info.fWidth, info.fHeight, target.fRowBytes);
+ dst->setIsOpaque(isOpaque);
+
+ // fImageCache and fCacheSelector are mutually exclusive.
+ SkASSERT(NULL == fImageCache || NULL == fCacheSelector);
+
+ SkImageCache* cache = NULL == fCacheSelector ? fImageCache : fCacheSelector(info);
+
+ if (cache != NULL) {
+ // Now set a new LazyPixelRef on dst.
+ SkAutoTUnref<SkLazyPixelRef> lazyRef(SkNEW_ARGS(SkLazyPixelRef,
+ (data, fDecodeProc, cache)));
+ dst->setPixelRef(lazyRef);
+ return true;
+ } else {
+ dst->allocPixels();
+ target.fAddr = dst->getPixels();
+ return fDecodeProc(data->data(), data->size(), &info, &target);
+ }
+}