Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Side by Side Diff: src/utils/SkBitmapHasher.cpp

Issue 14265010: Make SkSHA1 and SkM5 use common SkDigestHash result type (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: revert_all_md5_and_sha1_changes Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/utils/SkBitmapHasher.h ('k') | src/utils/SkHashDigest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
epoger 2013/04/19 17:20:53 Patchsets 9, 10, and 11 are all identical... "gcl
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SkBitmap.h" 9 #include "SkBitmap.h"
10 #include "SkBitmapHasher.h" 10 #include "SkBitmapHasher.h"
11 #include "SkBitmapTransformer.h" 11 #include "SkBitmapTransformer.h"
12 #include "SkCityHash.h" 12 #include "SkCityHash.h"
13 #include "SkEndian.h" 13 #include "SkEndian.h"
14 #include "SkMD5.h"
14 15
15 /** 16 /**
16 * Write an integer value into a bytebuffer in little-endian order. 17 * Write an int32_t value into a bytebuffer in little-endian order.
17 */ 18 */
18 static void write_int_to_buffer(int val, char* buf) { 19 static void write_int32_to_buffer(int32_t val, char* buf) {
19 val = SkEndian_SwapLE32(val);
20 for (int byte=0; byte<4; byte++) { 20 for (int byte=0; byte<4; byte++) {
21 *buf++ = (char)(val & 0xff); 21 *buf++ = (char)(val & 0xff);
22 val = val >> 8; 22 val = val >> 8;
23 } 23 }
24 } 24 }
25 25
26 /*static*/ bool SkBitmapHasher::ComputeDigestInternal( 26 /*static*/ bool SkBitmapHasher::ComputeDigestInternal(
27 const SkBitmap& bitmap, const SkBitmapTransformer& transformer, SkHashDi gest *result) { 27 const SkBitmap& bitmap, const SkBitmapTransformer& transformer, BITMAP_H ASH_TYPE *result) {
28 size_t pixelBufferSize = transformer.bytesNeededTotal(); 28 size_t pixelBufferSize = transformer.bytesNeededTotal();
29 size_t totalBufferSize = pixelBufferSize + 8; // leave room for x/y dimensio ns 29 size_t totalBufferSize = pixelBufferSize + 8; // leave room for x/y dimensio ns
30 30
31 SkAutoMalloc bufferManager(totalBufferSize); 31 SkAutoMalloc bufferManager(totalBufferSize);
32 char *bufferStart = static_cast<char *>(bufferManager.get()); 32 char *bufferStart = static_cast<char *>(bufferManager.get());
33 char *bufPtr = bufferStart; 33 char *bufPtr = bufferStart;
34 // start with the x/y dimensions 34 // start with the x/y dimensions
35 write_int_to_buffer(bitmap.width(), bufPtr); 35 write_int32_to_buffer(bitmap.width(), bufPtr);
36 bufPtr += 4; 36 bufPtr += 4;
37 write_int_to_buffer(bitmap.height(), bufPtr); 37 write_int32_to_buffer(bitmap.height(), bufPtr);
38 bufPtr += 4; 38 bufPtr += 4;
39 39
40 // add all the pixel data 40 // add all the pixel data
41 // EPOGER: if we are using our MD5 or SHA1 implementations, we can add this
42 // data to the hash algorithm in-place (without the big memcpy).
43 // Add that optimization!
41 if (!transformer.copyBitmapToPixelBuffer(bufPtr, pixelBufferSize)) { 44 if (!transformer.copyBitmapToPixelBuffer(bufPtr, pixelBufferSize)) {
42 return false; 45 return false;
43 } 46 }
47 #ifdef BITMAP_HASH_TYPE_SkHashDigest
48 SkMD5 hasher;
49 hasher.update(reinterpret_cast<const uint8_t*>(bufferStart), totalBufferSize );
50 SkMD5::Digest digest;
epoger 2013/04/19 17:20:53 In patchset 11, I have reverted all changes to SkM
51 hasher.finish(digest);
52 // EPOGER: instead of creating the extra copy on the stack and running copyF rom, use malloc and then just make the SkHashDigest hold a reference to it?
53 result->copyFrom(&digest, sizeof(digest));
54 #else
44 *result = SkCityHash::Compute64(bufferStart, totalBufferSize); 55 *result = SkCityHash::Compute64(bufferStart, totalBufferSize);
56 #endif
45 return true; 57 return true;
46 } 58 }
47 59
48 /*static*/ bool SkBitmapHasher::ComputeDigest(const SkBitmap& bitmap, SkHashDige st *result) { 60 /*static*/ bool SkBitmapHasher::ComputeDigest(const SkBitmap& bitmap, BITMAP_HAS H_TYPE *result) {
49 const SkBitmapTransformer::PixelFormat kPixelFormat = 61 const SkBitmapTransformer::PixelFormat kPixelFormat =
50 SkBitmapTransformer::kARGB_8888_Premul_PixelFormat; 62 SkBitmapTransformer::kARGB_8888_Premul_PixelFormat;
51 63
52 // First, try to transform the existing bitmap. 64 // First, try to transform the existing bitmap.
53 const SkBitmapTransformer transformer = 65 const SkBitmapTransformer transformer =
54 SkBitmapTransformer(bitmap, kPixelFormat); 66 SkBitmapTransformer(bitmap, kPixelFormat);
55 if (transformer.isValid(false)) { 67 if (transformer.isValid(false)) {
56 return ComputeDigestInternal(bitmap, transformer, result); 68 return ComputeDigestInternal(bitmap, transformer, result);
57 } 69 }
58 70
59 // Hmm, that didn't work. Maybe if we create a new 71 // Hmm, that didn't work. Maybe if we create a new
60 // kARGB_8888_Config version of the bitmap it will work better? 72 // kARGB_8888_Config version of the bitmap it will work better?
61 SkBitmap copyBitmap; 73 SkBitmap copyBitmap;
62 bitmap.copyTo(&copyBitmap, SkBitmap::kARGB_8888_Config); 74 bitmap.copyTo(&copyBitmap, SkBitmap::kARGB_8888_Config);
63 const SkBitmapTransformer copyTransformer = 75 const SkBitmapTransformer copyTransformer =
64 SkBitmapTransformer(copyBitmap, kPixelFormat); 76 SkBitmapTransformer(copyBitmap, kPixelFormat);
65 if (copyTransformer.isValid(true)) { 77 if (copyTransformer.isValid(true)) {
66 return ComputeDigestInternal(copyBitmap, copyTransformer, result); 78 return ComputeDigestInternal(copyBitmap, copyTransformer, result);
67 } else { 79 } else {
68 return false; 80 return false;
69 } 81 }
70 } 82 }
OLDNEW
« no previous file with comments | « src/utils/SkBitmapHasher.h ('k') | src/utils/SkHashDigest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698