2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2011-04-27 15:39:30 +00:00
|
|
|
#include "SkColorPriv.h"
|
|
|
|
#include "SkImageDecoder.h"
|
|
|
|
#include "SkImageEncoder.h"
|
|
|
|
#include "SkOSFile.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
#include "SkTDArray.h"
|
|
|
|
#include "SkTemplates.h"
|
|
|
|
#include "SkTime.h"
|
|
|
|
#include "SkTSearch.h"
|
|
|
|
#include "SkTypes.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* skdiff
|
|
|
|
*
|
|
|
|
* Given three directory names, expects to find identically-named files in
|
|
|
|
* each of the first two; the first are treated as a set of baseline,
|
|
|
|
* the second a set of variant images, and a diff image is written into the
|
|
|
|
* third directory for each pair.
|
2011-07-14 13:15:55 +00:00
|
|
|
* Creates an index.html in the current third directory to compare each
|
2011-04-27 15:39:30 +00:00
|
|
|
* pair that does not match exactly.
|
|
|
|
* Does *not* recursively descend directories.
|
2011-07-14 13:15:55 +00:00
|
|
|
*
|
|
|
|
* With the --chromium flag, *does* recursively descend the first directory
|
|
|
|
* named, comparing *-expected.png with *-actual.png and writing diff
|
|
|
|
* images into the second directory, also writing index.html there.
|
2011-04-27 15:39:30 +00:00
|
|
|
*/
|
|
|
|
|
2011-09-23 14:56:37 +00:00
|
|
|
#if SK_BUILD_FOR_WIN32
|
|
|
|
#define PATH_DIV_STR "\\"
|
|
|
|
#define PATH_DIV_CHAR '\\'
|
|
|
|
#else
|
|
|
|
#define PATH_DIV_STR "/"
|
|
|
|
#define PATH_DIV_CHAR '/'
|
|
|
|
#endif
|
|
|
|
|
2011-04-27 15:39:30 +00:00
|
|
|
struct DiffRecord {
|
2011-07-13 17:42:46 +00:00
|
|
|
DiffRecord (const SkString filename,
|
|
|
|
const SkString basePath,
|
2012-03-22 18:20:06 +00:00
|
|
|
const SkString comparisonPath,
|
|
|
|
bool baseMissing = false,
|
|
|
|
bool comparisonMissing = false)
|
2011-04-27 15:39:30 +00:00
|
|
|
: fFilename (filename)
|
2011-07-13 17:42:46 +00:00
|
|
|
, fBasePath (basePath)
|
|
|
|
, fComparisonPath (comparisonPath)
|
2011-08-02 14:10:04 +00:00
|
|
|
, fBaseBitmap (new SkBitmap ())
|
|
|
|
, fComparisonBitmap (new SkBitmap ())
|
|
|
|
, fDifferenceBitmap (new SkBitmap ())
|
2012-02-02 20:50:36 +00:00
|
|
|
, fWhiteBitmap (new SkBitmap ())
|
2011-08-02 14:10:04 +00:00
|
|
|
, fBaseHeight (0)
|
|
|
|
, fBaseWidth (0)
|
2011-06-09 15:47:10 +00:00
|
|
|
, fFractionDifference (0)
|
|
|
|
, fWeightedFraction (0)
|
2011-04-27 15:39:30 +00:00
|
|
|
, fAverageMismatchR (0)
|
|
|
|
, fAverageMismatchG (0)
|
|
|
|
, fAverageMismatchB (0)
|
|
|
|
, fMaxMismatchR (0)
|
|
|
|
, fMaxMismatchG (0)
|
2011-11-30 17:01:00 +00:00
|
|
|
, fMaxMismatchB (0)
|
2012-03-22 18:20:06 +00:00
|
|
|
, fDoImageSizesMismatch (false)
|
|
|
|
, fBaseMissing(baseMissing)
|
|
|
|
, fComparisonMissing(comparisonMissing) {
|
2011-07-14 13:15:55 +00:00
|
|
|
// These asserts are valid for GM, but not for --chromium
|
|
|
|
//SkASSERT(basePath.endsWith(filename.c_str()));
|
|
|
|
//SkASSERT(comparisonPath.endsWith(filename.c_str()));
|
2011-07-13 17:42:46 +00:00
|
|
|
};
|
2011-04-27 15:39:30 +00:00
|
|
|
|
|
|
|
SkString fFilename;
|
2011-07-13 17:42:46 +00:00
|
|
|
SkString fBasePath;
|
|
|
|
SkString fComparisonPath;
|
2011-04-27 15:39:30 +00:00
|
|
|
|
2011-08-02 14:10:04 +00:00
|
|
|
SkBitmap* fBaseBitmap;
|
|
|
|
SkBitmap* fComparisonBitmap;
|
|
|
|
SkBitmap* fDifferenceBitmap;
|
2012-02-02 20:50:36 +00:00
|
|
|
SkBitmap* fWhiteBitmap;
|
2011-08-02 14:10:04 +00:00
|
|
|
|
|
|
|
int fBaseHeight;
|
|
|
|
int fBaseWidth;
|
2011-04-27 15:39:30 +00:00
|
|
|
|
|
|
|
/// Arbitrary floating-point metric to be used to sort images from most
|
|
|
|
/// to least different from baseline; values of 0 will be omitted from the
|
|
|
|
/// summary webpage.
|
2011-06-09 15:47:10 +00:00
|
|
|
float fFractionDifference;
|
|
|
|
float fWeightedFraction;
|
2011-04-27 15:39:30 +00:00
|
|
|
|
|
|
|
float fAverageMismatchR;
|
|
|
|
float fAverageMismatchG;
|
|
|
|
float fAverageMismatchB;
|
|
|
|
|
|
|
|
uint32_t fMaxMismatchR;
|
|
|
|
uint32_t fMaxMismatchG;
|
|
|
|
uint32_t fMaxMismatchB;
|
2011-11-30 17:01:00 +00:00
|
|
|
|
|
|
|
/// By the time we need to report image size mismatch, we've already
|
|
|
|
/// released the bitmaps, so we need to remember it when we detect it.
|
|
|
|
bool fDoImageSizesMismatch;
|
2012-03-22 18:20:06 +00:00
|
|
|
|
|
|
|
bool fBaseMissing;
|
|
|
|
bool fComparisonMissing;
|
2011-04-27 15:39:30 +00:00
|
|
|
};
|
|
|
|
|
2011-06-09 15:47:10 +00:00
|
|
|
#define MAX2(a,b) (((b) < (a)) ? (a) : (b))
|
|
|
|
#define MAX3(a,b,c) (((b) < (a)) ? MAX2((a), (c)) : MAX2((b), (c)))
|
|
|
|
|
2012-02-02 20:50:36 +00:00
|
|
|
const SkPMColor PMCOLOR_WHITE = SkPreMultiplyColor(SK_ColorWHITE);
|
|
|
|
const SkPMColor PMCOLOR_BLACK = SkPreMultiplyColor(SK_ColorBLACK);
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
typedef SkTDArray<SkString*> FileArray;
|
|
|
|
|
2011-06-09 15:47:10 +00:00
|
|
|
struct DiffSummary {
|
|
|
|
DiffSummary ()
|
|
|
|
: fNumMatches (0)
|
|
|
|
, fNumMismatches (0)
|
|
|
|
, fMaxMismatchV (0)
|
|
|
|
, fMaxMismatchPercent (0) { };
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
~DiffSummary() {
|
|
|
|
fBaseMissing.deleteAll();
|
|
|
|
fComparisonMissing.deleteAll();
|
|
|
|
}
|
|
|
|
|
2011-06-09 15:47:10 +00:00
|
|
|
uint32_t fNumMatches;
|
|
|
|
uint32_t fNumMismatches;
|
|
|
|
uint32_t fMaxMismatchV;
|
|
|
|
float fMaxMismatchPercent;
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
FileArray fBaseMissing;
|
|
|
|
FileArray fComparisonMissing;
|
|
|
|
|
2011-06-09 15:47:10 +00:00
|
|
|
void print () {
|
2012-03-22 18:20:06 +00:00
|
|
|
int n = fBaseMissing.count();
|
|
|
|
if (n > 0) {
|
|
|
|
printf("Missing in baseDir:\n");
|
|
|
|
for (int i = 0; i < n; ++i) {
|
|
|
|
printf("\t%s\n", fBaseMissing[i]->c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n = fComparisonMissing.count();
|
|
|
|
if (n > 0) {
|
|
|
|
printf("Missing in comparisonDir:\n");
|
|
|
|
for (int i = 0; i < n; ++i) {
|
|
|
|
printf("\t%s\n", fComparisonMissing[i]->c_str());
|
|
|
|
}
|
|
|
|
}
|
2011-06-09 15:47:10 +00:00
|
|
|
printf("%d of %d images matched.\n", fNumMatches,
|
|
|
|
fNumMatches + fNumMismatches);
|
|
|
|
if (fNumMismatches > 0) {
|
|
|
|
printf("Maximum pixel intensity mismatch %d\n", fMaxMismatchV);
|
|
|
|
printf("Largest area mismatch was %.2f%% of pixels\n",
|
|
|
|
fMaxMismatchPercent);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void add (DiffRecord* drp) {
|
2012-03-22 18:20:06 +00:00
|
|
|
if (drp->fBaseMissing) {
|
|
|
|
fBaseMissing.push(new SkString(drp->fFilename));
|
|
|
|
fNumMismatches++;
|
|
|
|
} else if (drp->fComparisonMissing) {
|
|
|
|
fComparisonMissing.push(new SkString(drp->fFilename));
|
|
|
|
fNumMismatches++;
|
|
|
|
} else if (0 == drp->fFractionDifference) {
|
2011-06-09 15:47:10 +00:00
|
|
|
fNumMatches++;
|
|
|
|
} else {
|
|
|
|
fNumMismatches++;
|
|
|
|
if (drp->fFractionDifference * 100 > fMaxMismatchPercent) {
|
|
|
|
fMaxMismatchPercent = drp->fFractionDifference * 100;
|
|
|
|
}
|
2011-06-09 18:54:01 +00:00
|
|
|
uint32_t value = MAX3(drp->fMaxMismatchR, drp->fMaxMismatchG,
|
|
|
|
drp->fMaxMismatchB);
|
2011-06-09 15:47:10 +00:00
|
|
|
if (value > fMaxMismatchV) {
|
|
|
|
fMaxMismatchV = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-04-27 15:39:30 +00:00
|
|
|
typedef SkTDArray<DiffRecord*> RecordArray;
|
|
|
|
|
2011-06-09 15:47:10 +00:00
|
|
|
/// Comparison routine for qsort; sorts by fFractionDifference
|
2011-04-27 15:39:30 +00:00
|
|
|
/// from largest to smallest.
|
|
|
|
static int compare_diff_metrics (DiffRecord** lhs, DiffRecord** rhs) {
|
2011-06-09 15:47:10 +00:00
|
|
|
if ((*lhs)->fFractionDifference < (*rhs)->fFractionDifference) {
|
2011-04-27 15:39:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2011-06-09 15:47:10 +00:00
|
|
|
if ((*rhs)->fFractionDifference < (*lhs)->fFractionDifference) {
|
2011-05-24 19:41:13 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int compare_diff_weighted (DiffRecord** lhs, DiffRecord** rhs) {
|
2011-06-09 15:47:10 +00:00
|
|
|
if ((*lhs)->fWeightedFraction < (*rhs)->fWeightedFraction) {
|
2011-05-24 19:41:13 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2011-06-09 15:47:10 +00:00
|
|
|
if ((*lhs)->fWeightedFraction > (*rhs)->fWeightedFraction) {
|
2011-04-27 15:39:30 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Comparison routine for qsort; sorts by max(fAverageMismatch{RGB})
|
|
|
|
/// from largest to smallest.
|
|
|
|
static int compare_diff_mean_mismatches (DiffRecord** lhs, DiffRecord** rhs) {
|
|
|
|
float leftValue = MAX3((*lhs)->fAverageMismatchR,
|
|
|
|
(*lhs)->fAverageMismatchG,
|
|
|
|
(*lhs)->fAverageMismatchB);
|
|
|
|
float rightValue = MAX3((*rhs)->fAverageMismatchR,
|
|
|
|
(*rhs)->fAverageMismatchG,
|
|
|
|
(*rhs)->fAverageMismatchB);
|
|
|
|
if (leftValue < rightValue) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (rightValue < leftValue) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Comparison routine for qsort; sorts by max(fMaxMismatch{RGB})
|
|
|
|
/// from largest to smallest.
|
|
|
|
static int compare_diff_max_mismatches (DiffRecord** lhs, DiffRecord** rhs) {
|
2011-10-07 20:03:39 +00:00
|
|
|
uint32_t leftValue = MAX3((*lhs)->fMaxMismatchR,
|
|
|
|
(*lhs)->fMaxMismatchG,
|
|
|
|
(*lhs)->fMaxMismatchB);
|
|
|
|
uint32_t rightValue = MAX3((*rhs)->fMaxMismatchR,
|
|
|
|
(*rhs)->fMaxMismatchG,
|
|
|
|
(*rhs)->fMaxMismatchB);
|
2011-04-27 15:39:30 +00:00
|
|
|
if (leftValue < rightValue) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (rightValue < leftValue) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return compare_diff_mean_mismatches(lhs, rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Parameterized routine to compute the color of a pixel in a difference image.
|
|
|
|
typedef SkPMColor (*DiffMetricProc)(SkPMColor, SkPMColor);
|
|
|
|
|
2011-11-30 17:01:00 +00:00
|
|
|
static void expand_and_copy (int width, int height, SkBitmap** dest) {
|
|
|
|
SkBitmap* temp = new SkBitmap ();
|
|
|
|
temp->reset();
|
|
|
|
temp->setConfig((*dest)->config(), width, height);
|
|
|
|
temp->allocPixels();
|
|
|
|
(*dest)->copyPixelsTo(temp->getPixels(), temp->getSize(),
|
|
|
|
temp->rowBytes());
|
|
|
|
*dest = temp;
|
|
|
|
}
|
|
|
|
|
2011-07-13 17:42:46 +00:00
|
|
|
static bool get_bitmaps (DiffRecord* diffRecord) {
|
|
|
|
SkFILEStream compareStream(diffRecord->fComparisonPath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
if (!compareStream.isValid()) {
|
|
|
|
SkDebugf("WARNING: couldn't open comparison file <%s>\n",
|
2011-07-13 17:42:46 +00:00
|
|
|
diffRecord->fComparisonPath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-13 17:42:46 +00:00
|
|
|
SkFILEStream baseStream(diffRecord->fBasePath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
if (!baseStream.isValid()) {
|
|
|
|
SkDebugf("ERROR: couldn't open base file <%s>\n",
|
2011-07-13 17:42:46 +00:00
|
|
|
diffRecord->fBasePath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkImageDecoder* codec = SkImageDecoder::Factory(&baseStream);
|
|
|
|
if (NULL == codec) {
|
|
|
|
SkDebugf("ERROR: no codec found for <%s>\n",
|
2011-07-13 17:42:46 +00:00
|
|
|
diffRecord->fBasePath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-30 17:01:00 +00:00
|
|
|
// In debug, the DLL will automatically be unloaded when this is deleted,
|
|
|
|
// but that shouldn't be a problem in release mode.
|
2011-04-27 15:39:30 +00:00
|
|
|
SkAutoTDelete<SkImageDecoder> ad(codec);
|
|
|
|
|
|
|
|
baseStream.rewind();
|
2011-08-02 14:10:04 +00:00
|
|
|
if (!codec->decode(&baseStream, diffRecord->fBaseBitmap,
|
2011-04-27 15:39:30 +00:00
|
|
|
SkBitmap::kARGB_8888_Config,
|
|
|
|
SkImageDecoder::kDecodePixels_Mode)) {
|
|
|
|
SkDebugf("ERROR: codec failed for <%s>\n",
|
2011-07-13 17:42:46 +00:00
|
|
|
diffRecord->fBasePath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-08-02 14:10:04 +00:00
|
|
|
diffRecord->fBaseWidth = diffRecord->fBaseBitmap->width();
|
|
|
|
diffRecord->fBaseHeight = diffRecord->fBaseBitmap->height();
|
|
|
|
|
|
|
|
if (!codec->decode(&compareStream, diffRecord->fComparisonBitmap,
|
2011-04-27 15:39:30 +00:00
|
|
|
SkBitmap::kARGB_8888_Config,
|
|
|
|
SkImageDecoder::kDecodePixels_Mode)) {
|
|
|
|
SkDebugf("ERROR: codec failed for <%s>\n",
|
2011-07-13 17:42:46 +00:00
|
|
|
diffRecord->fComparisonPath.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
static bool get_bitmap_height_width(const SkString& path,
|
|
|
|
int *height, int *width) {
|
|
|
|
SkFILEStream stream(path.c_str());
|
|
|
|
if (!stream.isValid()) {
|
|
|
|
SkDebugf("ERROR: couldn't open file <%s>\n",
|
|
|
|
path.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkImageDecoder* codec = SkImageDecoder::Factory(&stream);
|
|
|
|
if (NULL == codec) {
|
|
|
|
SkDebugf("ERROR: no codec found for <%s>\n",
|
|
|
|
path.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkAutoTDelete<SkImageDecoder> ad(codec);
|
|
|
|
SkBitmap bm;
|
|
|
|
|
|
|
|
stream.rewind();
|
|
|
|
if (!codec->decode(&stream, &bm,
|
|
|
|
SkBitmap::kARGB_8888_Config,
|
|
|
|
SkImageDecoder::kDecodePixels_Mode)) {
|
|
|
|
SkDebugf("ERROR: codec failed for <%s>\n",
|
|
|
|
path.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*height = bm.height();
|
|
|
|
*width = bm.width();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-27 15:39:30 +00:00
|
|
|
// from gm - thanks to PNG, we need to force all pixels 100% opaque
|
|
|
|
static void force_all_opaque(const SkBitmap& bitmap) {
|
|
|
|
SkAutoLockPixels lock(bitmap);
|
|
|
|
for (int y = 0; y < bitmap.height(); y++) {
|
|
|
|
for (int x = 0; x < bitmap.width(); x++) {
|
|
|
|
*bitmap.getAddr32(x, y) |= (SK_A32_MASK << SK_A32_SHIFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// from gm
|
2011-08-02 14:10:04 +00:00
|
|
|
static bool write_bitmap(const SkString& path, const SkBitmap* bitmap) {
|
2011-04-27 15:39:30 +00:00
|
|
|
SkBitmap copy;
|
2011-08-02 14:10:04 +00:00
|
|
|
bitmap->copyTo(©, SkBitmap::kARGB_8888_Config);
|
2011-04-27 15:39:30 +00:00
|
|
|
force_all_opaque(copy);
|
|
|
|
return SkImageEncoder::EncodeFile(path.c_str(), copy,
|
|
|
|
SkImageEncoder::kPNG_Type, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
// from gm
|
|
|
|
static inline SkPMColor compute_diff_pmcolor(SkPMColor c0, SkPMColor c1) {
|
|
|
|
int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1);
|
|
|
|
int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1);
|
|
|
|
int db = SkGetPackedB32(c0) - SkGetPackedB32(c1);
|
|
|
|
|
|
|
|
return SkPackARGB32(0xFF, SkAbs32(dr), SkAbs32(dg), SkAbs32(db));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool colors_match_thresholded(SkPMColor c0, SkPMColor c1,
|
|
|
|
const int threshold) {
|
|
|
|
int da = SkGetPackedA32(c0) - SkGetPackedA32(c1);
|
|
|
|
int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1);
|
|
|
|
int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1);
|
|
|
|
int db = SkGetPackedB32(c0) - SkGetPackedB32(c1);
|
|
|
|
|
|
|
|
return ((SkAbs32(da) <= threshold) &&
|
|
|
|
(SkAbs32(dr) <= threshold) &&
|
|
|
|
(SkAbs32(dg) <= threshold) &&
|
|
|
|
(SkAbs32(db) <= threshold));
|
|
|
|
}
|
|
|
|
|
|
|
|
// based on gm
|
|
|
|
static void compute_diff(DiffRecord* dr,
|
|
|
|
DiffMetricProc diffFunction,
|
|
|
|
const int colorThreshold) {
|
2012-02-02 20:50:36 +00:00
|
|
|
SkAutoLockPixels alpDiff(*dr->fDifferenceBitmap);
|
|
|
|
SkAutoLockPixels alpWhite(*dr->fWhiteBitmap);
|
2011-04-27 15:39:30 +00:00
|
|
|
|
2011-08-02 14:10:04 +00:00
|
|
|
const int w = dr->fComparisonBitmap->width();
|
|
|
|
const int h = dr->fComparisonBitmap->height();
|
2011-04-27 15:39:30 +00:00
|
|
|
int mismatchedPixels = 0;
|
|
|
|
int totalMismatchR = 0;
|
|
|
|
int totalMismatchG = 0;
|
|
|
|
int totalMismatchB = 0;
|
2011-11-30 17:01:00 +00:00
|
|
|
|
|
|
|
if (w != dr->fBaseWidth || h != dr->fBaseHeight) {
|
|
|
|
dr->fDoImageSizesMismatch = true;
|
|
|
|
dr->fFractionDifference = 1;
|
|
|
|
return;
|
|
|
|
}
|
2011-05-24 19:41:13 +00:00
|
|
|
// Accumulate fractionally different pixels, then divide out
|
|
|
|
// # of pixels at the end.
|
2011-06-09 15:47:10 +00:00
|
|
|
dr->fWeightedFraction = 0;
|
2011-04-27 15:39:30 +00:00
|
|
|
for (int y = 0; y < h; y++) {
|
|
|
|
for (int x = 0; x < w; x++) {
|
2011-08-02 14:10:04 +00:00
|
|
|
SkPMColor c0 = *dr->fBaseBitmap->getAddr32(x, y);
|
|
|
|
SkPMColor c1 = *dr->fComparisonBitmap->getAddr32(x, y);
|
2011-06-09 15:47:10 +00:00
|
|
|
SkPMColor trueDifference = compute_diff_pmcolor(c0, c1);
|
|
|
|
SkPMColor outputDifference = diffFunction(c0, c1);
|
|
|
|
uint32_t thisR = SkGetPackedR32(trueDifference);
|
|
|
|
uint32_t thisG = SkGetPackedG32(trueDifference);
|
|
|
|
uint32_t thisB = SkGetPackedB32(trueDifference);
|
2011-05-24 19:41:13 +00:00
|
|
|
totalMismatchR += thisR;
|
|
|
|
totalMismatchG += thisG;
|
|
|
|
totalMismatchB += thisB;
|
|
|
|
// In HSV, value is defined as max RGB component.
|
|
|
|
int value = MAX3(thisR, thisG, thisB);
|
2011-06-09 15:47:10 +00:00
|
|
|
dr->fWeightedFraction += ((float) value) / 255;
|
2011-05-24 19:41:13 +00:00
|
|
|
if (thisR > dr->fMaxMismatchR) {
|
|
|
|
dr->fMaxMismatchR = thisR;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
2011-05-24 19:41:13 +00:00
|
|
|
if (thisG > dr->fMaxMismatchG) {
|
|
|
|
dr->fMaxMismatchG = thisG;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
2011-05-24 19:41:13 +00:00
|
|
|
if (thisB > dr->fMaxMismatchB) {
|
|
|
|
dr->fMaxMismatchB = thisB;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
if (!colors_match_thresholded(c0, c1, colorThreshold)) {
|
|
|
|
mismatchedPixels++;
|
2011-08-02 14:10:04 +00:00
|
|
|
*dr->fDifferenceBitmap->getAddr32(x, y) = outputDifference;
|
2012-02-02 20:50:36 +00:00
|
|
|
*dr->fWhiteBitmap->getAddr32(x, y) = PMCOLOR_WHITE;
|
2011-04-27 15:39:30 +00:00
|
|
|
} else {
|
2011-08-02 14:10:04 +00:00
|
|
|
*dr->fDifferenceBitmap->getAddr32(x, y) = 0;
|
2012-02-02 20:50:36 +00:00
|
|
|
*dr->fWhiteBitmap->getAddr32(x, y) = PMCOLOR_BLACK;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-24 19:41:13 +00:00
|
|
|
int pixelCount = w * h;
|
2011-06-09 15:47:10 +00:00
|
|
|
dr->fFractionDifference = ((float) mismatchedPixels) / pixelCount;
|
|
|
|
dr->fWeightedFraction /= pixelCount;
|
2011-05-24 19:41:13 +00:00
|
|
|
dr->fAverageMismatchR = ((float) totalMismatchR) / pixelCount;
|
|
|
|
dr->fAverageMismatchG = ((float) totalMismatchG) / pixelCount;
|
|
|
|
dr->fAverageMismatchB = ((float) totalMismatchB) / pixelCount;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 20:50:36 +00:00
|
|
|
static SkString filename_to_derived_filename (const SkString& filename,
|
|
|
|
const char *suffix) {
|
2011-06-09 15:47:10 +00:00
|
|
|
SkString diffName (filename);
|
|
|
|
const char* cstring = diffName.c_str();
|
|
|
|
int dotOffset = strrchr(cstring, '.') - cstring;
|
|
|
|
diffName.remove(dotOffset, diffName.size() - dotOffset);
|
2012-02-02 20:50:36 +00:00
|
|
|
diffName.append(suffix);
|
2011-06-09 15:47:10 +00:00
|
|
|
return diffName;
|
|
|
|
}
|
|
|
|
|
2012-02-02 20:50:36 +00:00
|
|
|
/// Given a image filename, returns the name of the file containing the
|
|
|
|
/// associated difference image.
|
|
|
|
static SkString filename_to_diff_filename (const SkString& filename) {
|
|
|
|
return filename_to_derived_filename(filename, "-diff.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Given a image filename, returns the name of the file containing the
|
|
|
|
/// "white" difference image.
|
|
|
|
static SkString filename_to_white_filename (const SkString& filename) {
|
|
|
|
return filename_to_derived_filename(filename, "-white.png");
|
|
|
|
}
|
|
|
|
|
2011-07-14 13:15:55 +00:00
|
|
|
/// Convert a chromium/WebKit LayoutTest "foo-expected.png" to "foo-actual.png"
|
|
|
|
static SkString chrome_expected_path_to_actual (const SkString& expected) {
|
|
|
|
SkString actualPath (expected);
|
|
|
|
actualPath.remove(actualPath.size() - 13, 13);
|
|
|
|
actualPath.append("-actual.png");
|
|
|
|
return actualPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert a chromium/WebKit LayoutTest "foo-expected.png" to "foo.png"
|
|
|
|
static SkString chrome_expected_name_to_short (const SkString& expected) {
|
|
|
|
SkString shortName (expected);
|
|
|
|
shortName.remove(shortName.size() - 13, 13);
|
|
|
|
shortName.append(".png");
|
|
|
|
return shortName;
|
|
|
|
}
|
|
|
|
|
2011-08-02 14:10:04 +00:00
|
|
|
static void release_bitmaps(DiffRecord* drp) {
|
|
|
|
delete drp->fBaseBitmap;
|
|
|
|
drp->fBaseBitmap = NULL;
|
|
|
|
delete drp->fComparisonBitmap;
|
|
|
|
drp->fComparisonBitmap = NULL;
|
|
|
|
delete drp->fDifferenceBitmap;
|
|
|
|
drp->fDifferenceBitmap = NULL;
|
2012-02-02 20:50:36 +00:00
|
|
|
delete drp->fWhiteBitmap;
|
|
|
|
drp->fWhiteBitmap = NULL;
|
2011-08-02 14:10:04 +00:00
|
|
|
}
|
|
|
|
|
2011-07-14 13:15:55 +00:00
|
|
|
|
|
|
|
static void create_and_write_diff_image(DiffRecord* drp,
|
|
|
|
DiffMetricProc dmp,
|
|
|
|
const int colorThreshold,
|
|
|
|
const SkString& outputDir,
|
|
|
|
const SkString& filename) {
|
2011-08-02 14:10:04 +00:00
|
|
|
const int w = drp->fBaseWidth;
|
|
|
|
const int h = drp->fBaseHeight;
|
|
|
|
drp->fDifferenceBitmap->setConfig(SkBitmap::kARGB_8888_Config, w, h);
|
|
|
|
drp->fDifferenceBitmap->allocPixels();
|
2012-02-02 20:50:36 +00:00
|
|
|
drp->fWhiteBitmap->setConfig(SkBitmap::kARGB_8888_Config, w, h);
|
|
|
|
drp->fWhiteBitmap->allocPixels();
|
2011-07-13 17:42:46 +00:00
|
|
|
compute_diff(drp, dmp, colorThreshold);
|
2011-07-14 13:15:55 +00:00
|
|
|
|
2012-02-02 20:50:36 +00:00
|
|
|
SkString differencePath (outputDir);
|
|
|
|
differencePath.append(filename_to_diff_filename(filename));
|
|
|
|
write_bitmap(differencePath, drp->fDifferenceBitmap);
|
|
|
|
SkString whitePath (outputDir);
|
|
|
|
whitePath.append(filename_to_white_filename(filename));
|
|
|
|
write_bitmap(whitePath, drp->fWhiteBitmap);
|
2011-08-02 14:10:04 +00:00
|
|
|
release_bitmaps(drp);
|
2011-07-13 17:42:46 +00:00
|
|
|
}
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
/// Iterate dir and get all files except 'pdf' files.
|
|
|
|
static void get_file_list(const SkString& dir, FileArray *files) {
|
|
|
|
SkOSFile::Iter it(dir.c_str());
|
|
|
|
SkString filename;
|
|
|
|
while (it.next(&filename)) {
|
|
|
|
if (filename.endsWith(".pdf")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
files->push(new SkString(filename));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void release_file_list(FileArray *files) {
|
|
|
|
files->deleteAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Comparison routines for qsort, sort by file names.
|
|
|
|
static int compare_file_name_metrics(SkString **lhs, SkString **rhs) {
|
|
|
|
return strcmp((*lhs)->c_str(), (*rhs)->c_str());
|
|
|
|
}
|
|
|
|
|
2011-04-27 15:39:30 +00:00
|
|
|
/// Creates difference images, returns the number that have a 0 metric.
|
2011-06-09 15:47:10 +00:00
|
|
|
static void create_diff_images (DiffMetricProc dmp,
|
|
|
|
const int colorThreshold,
|
|
|
|
RecordArray* differences,
|
|
|
|
const SkString& baseDir,
|
|
|
|
const SkString& comparisonDir,
|
|
|
|
const SkString& outputDir,
|
|
|
|
DiffSummary* summary) {
|
2012-03-22 18:20:06 +00:00
|
|
|
SkQSortCompareProc sortFileProc =
|
|
|
|
(SkQSortCompareProc)compare_file_name_metrics;
|
2011-04-27 15:39:30 +00:00
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
FileArray baseFiles;
|
|
|
|
FileArray comparisonFiles;
|
|
|
|
|
|
|
|
get_file_list(baseDir, &baseFiles);
|
|
|
|
get_file_list(comparisonDir, &comparisonFiles);
|
|
|
|
|
|
|
|
SkQSort(baseFiles.begin(), baseFiles.count(),
|
|
|
|
sizeof(SkString*), sortFileProc);
|
|
|
|
SkQSort(comparisonFiles.begin(), comparisonFiles.count(),
|
|
|
|
sizeof(SkString*), sortFileProc);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
int j = 0;
|
|
|
|
|
|
|
|
while (i < baseFiles.count() &&
|
|
|
|
j < comparisonFiles.count()) {
|
2011-04-27 15:39:30 +00:00
|
|
|
|
2011-07-13 17:42:46 +00:00
|
|
|
SkString basePath (baseDir);
|
2012-03-22 18:20:06 +00:00
|
|
|
basePath.append(*baseFiles[i]);
|
2011-07-14 13:15:55 +00:00
|
|
|
SkString comparisonPath (comparisonDir);
|
2012-03-22 18:20:06 +00:00
|
|
|
comparisonPath.append(*comparisonFiles[j]);
|
|
|
|
|
|
|
|
DiffRecord *drp = NULL;
|
|
|
|
int v = strcmp(baseFiles[i]->c_str(),
|
|
|
|
comparisonFiles[j]->c_str());
|
|
|
|
|
|
|
|
if (v < 0) {
|
|
|
|
// in baseDir, but not in comparisonDir
|
|
|
|
drp = new DiffRecord(*baseFiles[i],
|
|
|
|
basePath, comparisonPath, false, true);
|
|
|
|
++i;
|
|
|
|
} else if (v > 0) {
|
|
|
|
// in comparisonDir, but not in baseDir
|
|
|
|
drp = new DiffRecord(*comparisonFiles[j],
|
|
|
|
basePath, comparisonPath, true, false);
|
|
|
|
++j;
|
|
|
|
} else {
|
|
|
|
// let's diff!
|
|
|
|
drp = new DiffRecord(*baseFiles[i], basePath, comparisonPath);
|
|
|
|
|
|
|
|
if (get_bitmaps(drp)) {
|
|
|
|
create_and_write_diff_image(drp, dmp, colorThreshold,
|
|
|
|
outputDir, *baseFiles[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
++j;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
differences->push(drp);
|
|
|
|
summary->add(drp);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; i < baseFiles.count(); ++i) {
|
|
|
|
// files only in baseDir
|
|
|
|
SkString basePath (baseDir);
|
|
|
|
basePath.append(*baseFiles[i]);
|
|
|
|
SkString comparisonPath;
|
|
|
|
DiffRecord *drp = new DiffRecord(*baseFiles[i], basePath,
|
|
|
|
comparisonPath, false, true);
|
|
|
|
differences->push(drp);
|
|
|
|
summary->add(drp);
|
|
|
|
}
|
2011-04-27 15:39:30 +00:00
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
for (; j < comparisonFiles.count(); ++j) {
|
|
|
|
// files only in comparisonDir
|
|
|
|
SkString basePath;
|
|
|
|
SkString comparisonPath(comparisonDir);
|
|
|
|
comparisonPath.append(*comparisonFiles[j]);
|
|
|
|
DiffRecord *drp = new DiffRecord(*comparisonFiles[j], basePath,
|
|
|
|
comparisonPath, true, false);
|
2011-04-27 15:39:30 +00:00
|
|
|
differences->push(drp);
|
2011-06-09 15:47:10 +00:00
|
|
|
summary->add(drp);
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
2012-03-22 18:20:06 +00:00
|
|
|
|
|
|
|
release_file_list(&baseFiles);
|
|
|
|
release_file_list(&comparisonFiles);
|
2011-07-14 13:15:55 +00:00
|
|
|
}
|
2011-04-27 15:39:30 +00:00
|
|
|
|
2011-07-14 13:15:55 +00:00
|
|
|
static void create_diff_images_chromium (DiffMetricProc dmp,
|
|
|
|
const int colorThreshold,
|
|
|
|
RecordArray* differences,
|
|
|
|
const SkString& dirname,
|
|
|
|
const SkString& outputDir,
|
|
|
|
DiffSummary* summary) {
|
|
|
|
SkOSFile::Iter baseIterator (dirname.c_str());
|
|
|
|
SkString filename;
|
|
|
|
while (baseIterator.next(&filename)) {
|
|
|
|
if (filename.endsWith(".pdf")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (filename.endsWith("-expected.png")) {
|
|
|
|
SkString expectedPath (dirname);
|
|
|
|
expectedPath.append(filename);
|
|
|
|
SkString shortName (chrome_expected_name_to_short(filename));
|
|
|
|
SkString actualPath (chrome_expected_path_to_actual(expectedPath));
|
|
|
|
DiffRecord * drp =
|
|
|
|
new DiffRecord (shortName, expectedPath, actualPath);
|
|
|
|
if (!get_bitmaps(drp)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
create_and_write_diff_image(drp, dmp, colorThreshold,
|
|
|
|
outputDir, shortName);
|
|
|
|
|
|
|
|
differences->push(drp);
|
|
|
|
summary->add(drp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void analyze_chromium(DiffMetricProc dmp,
|
|
|
|
const int colorThreshold,
|
|
|
|
RecordArray* differences,
|
|
|
|
const SkString& dirname,
|
|
|
|
const SkString& outputDir,
|
|
|
|
DiffSummary* summary) {
|
|
|
|
create_diff_images_chromium(dmp, colorThreshold, differences,
|
|
|
|
dirname, outputDir, summary);
|
|
|
|
SkOSFile::Iter dirIterator(dirname.c_str());
|
|
|
|
SkString newdirname;
|
|
|
|
while (dirIterator.next(&newdirname, true)) {
|
|
|
|
if (newdirname.startsWith(".")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
SkString fullname (dirname);
|
|
|
|
fullname.append(newdirname);
|
2011-09-23 14:56:37 +00:00
|
|
|
if (!fullname.endsWith(PATH_DIV_STR)) {
|
|
|
|
fullname.append(PATH_DIV_STR);
|
2011-07-14 13:15:55 +00:00
|
|
|
}
|
|
|
|
analyze_chromium(dmp, colorThreshold, differences,
|
|
|
|
fullname, outputDir, summary);
|
|
|
|
}
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Make layout more consistent by scaling image to 240 height, 360 width,
|
|
|
|
/// or natural size, whichever is smallest.
|
2011-08-02 14:10:04 +00:00
|
|
|
static int compute_image_height (int height, int width) {
|
2011-04-27 15:39:30 +00:00
|
|
|
int retval = 240;
|
2011-08-02 14:10:04 +00:00
|
|
|
if (height < retval) {
|
|
|
|
retval = height;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
2011-08-02 14:10:04 +00:00
|
|
|
float scale = (float) retval / height;
|
|
|
|
if (width * scale > 360) {
|
|
|
|
scale = (float) 360 / width;
|
2011-10-07 20:03:39 +00:00
|
|
|
retval = static_cast<int>(height * scale);
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-02-02 20:50:36 +00:00
|
|
|
static void print_table_header (SkFILEWStream* stream,
|
|
|
|
const int matchCount,
|
|
|
|
const int colorThreshold,
|
|
|
|
const RecordArray& differences,
|
|
|
|
const SkString &baseDir,
|
|
|
|
const SkString &comparisonDir) {
|
2011-04-27 15:39:30 +00:00
|
|
|
SkTime::DateTime dt;
|
|
|
|
SkTime::GetDateTime(&dt);
|
2012-02-02 20:50:36 +00:00
|
|
|
stream->writeText("<table>\n");
|
|
|
|
stream->writeText("<tr><th>");
|
2011-04-27 15:39:30 +00:00
|
|
|
stream->writeText("SkDiff run at ");
|
|
|
|
stream->writeDecAsText(dt.fHour);
|
|
|
|
stream->writeText(":");
|
|
|
|
if (dt.fMinute < 10) {
|
|
|
|
stream->writeText("0");
|
|
|
|
}
|
|
|
|
stream->writeDecAsText(dt.fMinute);
|
|
|
|
stream->writeText(":");
|
|
|
|
if (dt.fSecond < 10) {
|
|
|
|
stream->writeText("0");
|
|
|
|
}
|
|
|
|
stream->writeDecAsText(dt.fSecond);
|
|
|
|
stream->writeText("<br>");
|
|
|
|
stream->writeDecAsText(matchCount);
|
|
|
|
stream->writeText(" of ");
|
|
|
|
stream->writeDecAsText(differences.count());
|
|
|
|
stream->writeText(" images matched ");
|
|
|
|
if (colorThreshold == 0) {
|
|
|
|
stream->writeText("exactly");
|
|
|
|
} else {
|
|
|
|
stream->writeText("within ");
|
|
|
|
stream->writeDecAsText(colorThreshold);
|
|
|
|
stream->writeText(" color units per component");
|
|
|
|
}
|
|
|
|
stream->writeText(".<br>");
|
2012-02-02 20:50:36 +00:00
|
|
|
stream->writeText("</th>\n<th>");
|
|
|
|
stream->writeText("every different pixel shown in white");
|
|
|
|
stream->writeText("</th>\n<th>");
|
|
|
|
stream->writeText("color difference at each pixel");
|
|
|
|
stream->writeText("</th>\n<th>");
|
|
|
|
stream->writeText(baseDir.c_str());
|
|
|
|
stream->writeText("</th>\n<th>");
|
|
|
|
stream->writeText(comparisonDir.c_str());
|
|
|
|
stream->writeText("</th>\n");
|
|
|
|
stream->writeText("</tr>\n");
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_pixel_count (SkFILEWStream* stream,
|
|
|
|
const DiffRecord& diff) {
|
|
|
|
stream->writeText("<br>(");
|
2011-10-07 20:03:39 +00:00
|
|
|
stream->writeDecAsText(static_cast<int>(diff.fFractionDifference *
|
|
|
|
diff.fBaseWidth *
|
|
|
|
diff.fBaseHeight));
|
2011-04-27 15:39:30 +00:00
|
|
|
stream->writeText(" pixels)");
|
2011-05-24 19:41:13 +00:00
|
|
|
/*
|
2011-06-09 15:47:10 +00:00
|
|
|
stream->writeDecAsText(diff.fWeightedFraction *
|
2011-08-02 14:10:04 +00:00
|
|
|
diff.fBaseWidth *
|
|
|
|
diff.fBaseHeight);
|
2011-05-24 19:41:13 +00:00
|
|
|
stream->writeText(" weighted pixels)");
|
|
|
|
*/
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_label_cell (SkFILEWStream* stream,
|
|
|
|
const DiffRecord& diff) {
|
|
|
|
stream->writeText("<td>");
|
|
|
|
stream->writeText(diff.fFilename.c_str());
|
|
|
|
stream->writeText("<br>");
|
2012-03-22 18:20:06 +00:00
|
|
|
if (diff.fBaseMissing || diff.fComparisonMissing) {
|
|
|
|
stream->writeText("</td>");
|
|
|
|
return;
|
|
|
|
}
|
2011-11-30 17:01:00 +00:00
|
|
|
if (diff.fDoImageSizesMismatch) {
|
|
|
|
stream->writeText("Image sizes differ");
|
|
|
|
stream->writeText("</td>");
|
|
|
|
return;
|
|
|
|
}
|
2011-04-27 15:39:30 +00:00
|
|
|
char metricBuf [20];
|
2011-06-09 15:47:10 +00:00
|
|
|
sprintf(metricBuf, "%12.4f%%", 100 * diff.fFractionDifference);
|
2011-04-27 15:39:30 +00:00
|
|
|
stream->writeText(metricBuf);
|
|
|
|
stream->writeText(" of pixels differ");
|
2011-05-24 19:41:13 +00:00
|
|
|
stream->writeText("\n (");
|
2011-06-09 15:47:10 +00:00
|
|
|
sprintf(metricBuf, "%12.4f%%", 100 * diff.fWeightedFraction);
|
2011-05-24 19:41:13 +00:00
|
|
|
stream->writeText(metricBuf);
|
|
|
|
stream->writeText(" weighted)");
|
2011-04-27 15:39:30 +00:00
|
|
|
// Write the actual number of pixels that differ if it's < 1%
|
2011-06-09 15:47:10 +00:00
|
|
|
if (diff.fFractionDifference < 0.01) {
|
2011-04-27 15:39:30 +00:00
|
|
|
print_pixel_count(stream, diff);
|
|
|
|
}
|
|
|
|
stream->writeText("<br>Average color mismatch ");
|
2011-10-07 20:03:39 +00:00
|
|
|
stream->writeDecAsText(static_cast<int>(MAX3(diff.fAverageMismatchR,
|
|
|
|
diff.fAverageMismatchG,
|
|
|
|
diff.fAverageMismatchB)));
|
2011-04-27 15:39:30 +00:00
|
|
|
stream->writeText("<br>Max color mismatch ");
|
|
|
|
stream->writeDecAsText(MAX3(diff.fMaxMismatchR,
|
|
|
|
diff.fMaxMismatchG,
|
|
|
|
diff.fMaxMismatchB));
|
|
|
|
stream->writeText("</td>");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_image_cell (SkFILEWStream* stream,
|
2011-07-13 17:42:46 +00:00
|
|
|
const SkString& path,
|
2011-04-27 15:39:30 +00:00
|
|
|
int height) {
|
|
|
|
stream->writeText("<td><a href=\"");
|
2011-07-13 17:42:46 +00:00
|
|
|
stream->writeText(path.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
stream->writeText("\"><img src=\"");
|
2011-07-13 17:42:46 +00:00
|
|
|
stream->writeText(path.c_str());
|
2011-04-27 15:39:30 +00:00
|
|
|
stream->writeText("\" height=\"");
|
|
|
|
stream->writeDecAsText(height);
|
|
|
|
stream->writeText("px\"></a></td>");
|
|
|
|
}
|
|
|
|
|
2012-03-22 18:20:06 +00:00
|
|
|
static void print_diff_with_missing_file(SkFILEWStream* stream,
|
|
|
|
DiffRecord& diff,
|
|
|
|
const SkString& relativePath) {
|
|
|
|
stream->writeText("<tr>\n");
|
|
|
|
print_label_cell(stream, diff);
|
|
|
|
stream->writeText("<td>N/A</td>");
|
|
|
|
stream->writeText("<td>N/A</td>");
|
|
|
|
if (!diff.fBaseMissing) {
|
|
|
|
int h, w;
|
|
|
|
if (!get_bitmap_height_width(diff.fBasePath, &h, &w)) {
|
|
|
|
stream->writeText("<td>N/A</td>");
|
|
|
|
} else {
|
|
|
|
int height = compute_image_height(h, w);
|
|
|
|
if (!diff.fBasePath.startsWith(PATH_DIV_STR)) {
|
|
|
|
diff.fBasePath.prepend(relativePath);
|
|
|
|
}
|
|
|
|
print_image_cell(stream, diff.fBasePath, height);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stream->writeText("<td>N/A</td>");
|
|
|
|
}
|
|
|
|
if (!diff.fComparisonMissing) {
|
|
|
|
int h, w;
|
|
|
|
if (!get_bitmap_height_width(diff.fComparisonPath, &h, &w)) {
|
|
|
|
stream->writeText("<td>N/A</td>");
|
|
|
|
} else {
|
|
|
|
int height = compute_image_height(h, w);
|
|
|
|
if (!diff.fComparisonPath.startsWith(PATH_DIV_STR)) {
|
|
|
|
diff.fComparisonPath.prepend(relativePath);
|
|
|
|
}
|
|
|
|
print_image_cell(stream, diff.fComparisonPath, height);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stream->writeText("<td>N/A</td>");
|
|
|
|
}
|
|
|
|
stream->writeText("</tr>\n");
|
|
|
|
stream->flush();
|
|
|
|
}
|
|
|
|
|
2011-04-27 15:39:30 +00:00
|
|
|
static void print_diff_page (const int matchCount,
|
|
|
|
const int colorThreshold,
|
|
|
|
const RecordArray& differences,
|
|
|
|
const SkString& baseDir,
|
|
|
|
const SkString& comparisonDir,
|
|
|
|
const SkString& outputDir) {
|
|
|
|
|
2011-05-24 19:41:13 +00:00
|
|
|
SkString outputPath (outputDir);
|
|
|
|
outputPath.append("index.html");
|
|
|
|
//SkFILEWStream outputStream ("index.html");
|
|
|
|
SkFILEWStream outputStream (outputPath.c_str());
|
|
|
|
|
2011-07-13 17:42:46 +00:00
|
|
|
// Need to convert paths from relative-to-cwd to relative-to-outputDir
|
2011-05-24 19:41:13 +00:00
|
|
|
// FIXME this doesn't work if there are '..' inside the outputDir
|
|
|
|
unsigned int ui;
|
|
|
|
SkString relativePath;
|
|
|
|
for (ui = 0; ui < outputDir.size(); ui++) {
|
2011-09-23 14:56:37 +00:00
|
|
|
if (outputDir[ui] == PATH_DIV_CHAR) {
|
|
|
|
relativePath.append(".." PATH_DIV_STR);
|
2011-05-24 19:41:13 +00:00
|
|
|
}
|
|
|
|
}
|
2011-04-27 15:39:30 +00:00
|
|
|
|
|
|
|
outputStream.writeText("<html>\n<body>\n");
|
2012-02-02 20:50:36 +00:00
|
|
|
print_table_header(&outputStream, matchCount, colorThreshold, differences,
|
|
|
|
baseDir, comparisonDir);
|
2011-04-27 15:39:30 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < differences.count(); i++) {
|
|
|
|
DiffRecord* diff = differences[i];
|
2012-03-22 18:20:06 +00:00
|
|
|
|
|
|
|
if (diff->fBaseMissing || diff->fComparisonMissing) {
|
|
|
|
print_diff_with_missing_file(&outputStream, *diff, relativePath);
|
|
|
|
continue;
|
|
|
|
} else if (0 == diff->fFractionDifference) {
|
2011-04-27 15:39:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-03-22 18:20:06 +00:00
|
|
|
|
2011-09-23 14:56:37 +00:00
|
|
|
if (!diff->fBasePath.startsWith(PATH_DIV_STR)) {
|
2011-07-13 17:42:46 +00:00
|
|
|
diff->fBasePath.prepend(relativePath);
|
|
|
|
}
|
2011-09-23 14:56:37 +00:00
|
|
|
if (!diff->fComparisonPath.startsWith(PATH_DIV_STR)) {
|
2011-07-13 17:42:46 +00:00
|
|
|
diff->fComparisonPath.prepend(relativePath);
|
|
|
|
}
|
2012-03-22 18:20:06 +00:00
|
|
|
|
2011-08-02 14:10:04 +00:00
|
|
|
int height = compute_image_height(diff->fBaseHeight, diff->fBaseWidth);
|
2011-04-27 15:39:30 +00:00
|
|
|
outputStream.writeText("<tr>\n");
|
|
|
|
print_label_cell(&outputStream, *diff);
|
2012-02-02 20:50:36 +00:00
|
|
|
print_image_cell(&outputStream,
|
|
|
|
filename_to_white_filename(diff->fFilename), height);
|
2011-07-13 17:42:46 +00:00
|
|
|
print_image_cell(&outputStream,
|
2011-06-09 15:47:10 +00:00
|
|
|
filename_to_diff_filename(diff->fFilename), height);
|
2012-02-02 20:50:36 +00:00
|
|
|
print_image_cell(&outputStream, diff->fBasePath, height);
|
2011-07-13 17:42:46 +00:00
|
|
|
print_image_cell(&outputStream, diff->fComparisonPath, height);
|
2011-04-27 15:39:30 +00:00
|
|
|
outputStream.writeText("</tr>\n");
|
|
|
|
outputStream.flush();
|
|
|
|
}
|
|
|
|
outputStream.writeText("</table>\n");
|
|
|
|
outputStream.writeText("</body>\n</html>\n");
|
|
|
|
outputStream.flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usage (char * argv0) {
|
|
|
|
SkDebugf("Skia baseline image diff tool\n");
|
2011-06-09 15:47:10 +00:00
|
|
|
SkDebugf("Usage: %s baseDir comparisonDir [outputDir]\n", argv0);
|
2011-04-27 15:39:30 +00:00
|
|
|
SkDebugf(
|
2011-07-14 13:15:55 +00:00
|
|
|
" %s --chromium --release|--debug baseDir outputDir\n", argv0);
|
|
|
|
SkDebugf(
|
|
|
|
" --threshold n: only report differences > n (in one channel) [default 0]\n"
|
|
|
|
" --sortbymismatch: sort by average color channel mismatch\n");
|
2011-04-27 15:39:30 +00:00
|
|
|
SkDebugf(
|
2011-07-14 13:15:55 +00:00
|
|
|
" --sortbymaxmismatch: sort by worst color channel mismatch,\n"
|
2011-04-27 15:39:30 +00:00
|
|
|
" break ties with -sortbymismatch,\n"
|
|
|
|
" [default by fraction of pixels mismatching]\n");
|
2011-05-24 19:41:13 +00:00
|
|
|
SkDebugf(
|
2011-07-14 13:15:55 +00:00
|
|
|
" --weighted: sort by # pixels different weighted by color difference\n");
|
|
|
|
SkDebugf(
|
|
|
|
" --chromium-release: process Webkit LayoutTests results instead of gm\n"
|
|
|
|
" --chromium-debug: process Webkit LayoutTests results instead of gm\n");
|
|
|
|
SkDebugf(
|
|
|
|
" baseDir: directory to read baseline images from,\n"
|
|
|
|
" or chromium/src directory for --chromium.\n");
|
2011-04-27 15:39:30 +00:00
|
|
|
SkDebugf(" comparisonDir: directory to read comparison images from\n");
|
2011-06-09 15:47:10 +00:00
|
|
|
SkDebugf(
|
|
|
|
" outputDir: directory to write difference images to; defaults to\n"
|
2011-07-14 13:15:55 +00:00
|
|
|
" comparisonDir when not running --chromium\n");
|
|
|
|
SkDebugf("Also creates an \"index.html\" file in the output directory.\n");
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main (int argc, char ** argv) {
|
|
|
|
DiffMetricProc diffProc = compute_diff_pmcolor;
|
|
|
|
SkQSortCompareProc sortProc = (SkQSortCompareProc) compare_diff_metrics;
|
|
|
|
|
|
|
|
// Maximum error tolerated in any one color channel in any one pixel before
|
|
|
|
// a difference is reported.
|
|
|
|
int colorThreshold = 0;
|
|
|
|
SkString baseDir;
|
|
|
|
SkString comparisonDir;
|
|
|
|
SkString outputDir;
|
|
|
|
|
2011-07-14 13:15:55 +00:00
|
|
|
bool analyzeChromium = false;
|
|
|
|
bool chromiumDebug = false;
|
|
|
|
bool chromiumRelease = false;
|
|
|
|
|
2011-04-27 15:39:30 +00:00
|
|
|
RecordArray differences;
|
2011-06-09 15:47:10 +00:00
|
|
|
DiffSummary summary;
|
2011-04-27 15:39:30 +00:00
|
|
|
|
|
|
|
int i, j;
|
|
|
|
for (i = 1, j = 0; i < argc; i++) {
|
2011-07-14 13:15:55 +00:00
|
|
|
if (!strcmp(argv[i], "--help")) {
|
2011-04-27 15:39:30 +00:00
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-07-14 13:15:55 +00:00
|
|
|
if (!strcmp(argv[i], "--sortbymismatch")) {
|
2011-04-27 15:39:30 +00:00
|
|
|
sortProc = (SkQSortCompareProc) compare_diff_mean_mismatches;
|
|
|
|
continue;
|
|
|
|
}
|
2011-07-14 13:15:55 +00:00
|
|
|
if (!strcmp(argv[i], "--sortbymaxmismatch")) {
|
2011-04-27 15:39:30 +00:00
|
|
|
sortProc = (SkQSortCompareProc) compare_diff_max_mismatches;
|
|
|
|
continue;
|
|
|
|
}
|
2011-07-14 13:15:55 +00:00
|
|
|
if (!strcmp(argv[i], "--weighted")) {
|
2011-05-24 19:41:13 +00:00
|
|
|
sortProc = (SkQSortCompareProc) compare_diff_weighted;
|
|
|
|
continue;
|
|
|
|
}
|
2011-07-14 13:15:55 +00:00
|
|
|
if (!strcmp(argv[i], "--chromium-release")) {
|
|
|
|
analyzeChromium = true;
|
|
|
|
chromiumRelease = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strcmp(argv[i], "--chromium-debug")) {
|
|
|
|
analyzeChromium = true;
|
|
|
|
chromiumDebug = true;
|
2011-04-27 15:39:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (argv[i][0] != '-') {
|
|
|
|
switch (j++) {
|
|
|
|
case 0:
|
|
|
|
baseDir.set(argv[i]);
|
|
|
|
continue;
|
|
|
|
case 1:
|
|
|
|
comparisonDir.set(argv[i]);
|
|
|
|
continue;
|
|
|
|
case 2:
|
|
|
|
outputDir.set(argv[i]);
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SkDebugf("Unrecognized argument <%s>\n", argv[i]);
|
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-07-14 13:15:55 +00:00
|
|
|
if (analyzeChromium) {
|
|
|
|
if (j != 2) {
|
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (chromiumRelease && chromiumDebug) {
|
|
|
|
SkDebugf(
|
|
|
|
"--chromium must be either -release or -debug, not both!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-09 15:47:10 +00:00
|
|
|
if (j == 2) {
|
|
|
|
outputDir = comparisonDir;
|
|
|
|
} else if (j != 3) {
|
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
2011-09-23 14:56:37 +00:00
|
|
|
if (!baseDir.endsWith(PATH_DIV_STR)) {
|
|
|
|
baseDir.append(PATH_DIV_STR);
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
2011-09-23 14:56:37 +00:00
|
|
|
if (!comparisonDir.endsWith(PATH_DIV_STR)) {
|
|
|
|
comparisonDir.append(PATH_DIV_STR);
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
2011-09-23 14:56:37 +00:00
|
|
|
if (!outputDir.endsWith(PATH_DIV_STR)) {
|
|
|
|
outputDir.append(PATH_DIV_STR);
|
2011-04-27 15:39:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-14 13:15:55 +00:00
|
|
|
if (analyzeChromium) {
|
2011-09-23 14:56:37 +00:00
|
|
|
baseDir.append("webkit" PATH_DIV_STR);
|
2011-07-14 13:15:55 +00:00
|
|
|
if (chromiumRelease) {
|
2011-09-23 14:56:37 +00:00
|
|
|
baseDir.append("Release" PATH_DIV_STR);
|
2011-07-14 13:15:55 +00:00
|
|
|
}
|
|
|
|
if (chromiumDebug) {
|
2011-09-23 14:56:37 +00:00
|
|
|
baseDir.append("Debug" PATH_DIV_STR);
|
2011-07-14 13:15:55 +00:00
|
|
|
}
|
2011-09-23 14:56:37 +00:00
|
|
|
baseDir.append("layout-test-results" PATH_DIV_STR);
|
2011-07-14 13:15:55 +00:00
|
|
|
analyze_chromium(diffProc, colorThreshold, &differences,
|
|
|
|
baseDir, outputDir, &summary);
|
|
|
|
} else {
|
|
|
|
create_diff_images(diffProc, colorThreshold, &differences,
|
|
|
|
baseDir, comparisonDir, outputDir, &summary);
|
|
|
|
}
|
2011-06-09 15:47:10 +00:00
|
|
|
summary.print();
|
2011-07-14 13:15:55 +00:00
|
|
|
|
|
|
|
if (differences.count()) {
|
|
|
|
SkQSort(differences.begin(), differences.count(),
|
|
|
|
sizeof(DiffRecord*), sortProc);
|
|
|
|
}
|
2011-06-09 15:47:10 +00:00
|
|
|
print_diff_page(summary.fNumMatches, colorThreshold, differences,
|
2011-04-27 15:39:30 +00:00
|
|
|
baseDir, comparisonDir, outputDir);
|
|
|
|
|
|
|
|
for (i = 0; i < differences.count(); i++) {
|
|
|
|
delete differences[i];
|
|
|
|
}
|
|
|
|
}
|