| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file input format is based loosely on | 5 // This file input format is based loosely on |
| 6 // Tools/DumpRenderTree/ImageDiff.m | 6 // Tools/DumpRenderTree/ImageDiff.m |
| 7 | 7 |
| 8 // The exact format of this tool's output to stdout is important, to match | 8 // The exact format of this tool's output to stdout is important, to match |
| 9 // what the run-webkit-tests script expects. | 9 // what the run-webkit-tests script expects. |
| 10 | 10 |
| 11 #include <algorithm> | 11 #include <algorithm> |
| 12 #include <iostream> | 12 #include <iostream> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
| 17 #include "base/command_line.h" | 17 #include "base/command_line.h" |
| 18 #include "base/containers/hash_tables.h" | 18 #include "base/containers/hash_tables.h" |
| 19 #include "base/file_util.h" | 19 #include "base/file_util.h" |
| 20 #include "base/files/file_path.h" | 20 #include "base/files/file_path.h" |
| 21 #include "base/logging.h" | 21 #include "base/logging.h" |
| 22 #include "base/memory/scoped_ptr.h" | 22 #include "base/memory/scoped_ptr.h" |
| 23 #include "base/numerics/safe_conversions.h" |
| 23 #include "base/process/memory.h" | 24 #include "base/process/memory.h" |
| 24 #include "base/safe_numerics.h" | |
| 25 #include "base/strings/string_util.h" | 25 #include "base/strings/string_util.h" |
| 26 #include "base/strings/utf_string_conversions.h" | 26 #include "base/strings/utf_string_conversions.h" |
| 27 #include "tools/imagediff/image_diff_png.h" | 27 #include "tools/imagediff/image_diff_png.h" |
| 28 | 28 |
| 29 #if defined(OS_WIN) | 29 #if defined(OS_WIN) |
| 30 #include "windows.h" | 30 #include "windows.h" |
| 31 #endif | 31 #endif |
| 32 | 32 |
| 33 // Causes the app to remain open, waiting for pairs of filenames on stdin. | 33 // Causes the app to remain open, waiting for pairs of filenames on stdin. |
| 34 // The caller is then responsible for terminating this app. | 34 // The caller is then responsible for terminating this app. |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 bool same = CreateImageDiff(baseline_image, actual_image, &diff_image); | 379 bool same = CreateImageDiff(baseline_image, actual_image, &diff_image); |
| 380 if (same) | 380 if (same) |
| 381 return kStatusSame; | 381 return kStatusSame; |
| 382 | 382 |
| 383 std::vector<unsigned char> png_encoding; | 383 std::vector<unsigned char> png_encoding; |
| 384 image_diff_png::EncodeRGBAPNG( | 384 image_diff_png::EncodeRGBAPNG( |
| 385 diff_image.data(), diff_image.w(), diff_image.h(), | 385 diff_image.data(), diff_image.w(), diff_image.h(), |
| 386 diff_image.w() * 4, &png_encoding); | 386 diff_image.w() * 4, &png_encoding); |
| 387 if (file_util::WriteFile(out_file, | 387 if (file_util::WriteFile(out_file, |
| 388 reinterpret_cast<char*>(&png_encoding.front()), | 388 reinterpret_cast<char*>(&png_encoding.front()), |
| 389 base::checked_numeric_cast<int>(png_encoding.size())) < 0) | 389 base::checked_cast<int>(png_encoding.size())) < 0) |
| 390 return kStatusError; | 390 return kStatusError; |
| 391 | 391 |
| 392 return kStatusDifferent; | 392 return kStatusDifferent; |
| 393 } | 393 } |
| 394 | 394 |
| 395 // It isn't strictly correct to only support ASCII paths, but this | 395 // It isn't strictly correct to only support ASCII paths, but this |
| 396 // program reads paths on stdin and the program that spawns it outputs | 396 // program reads paths on stdin and the program that spawns it outputs |
| 397 // paths as non-wide strings anyway. | 397 // paths as non-wide strings anyway. |
| 398 base::FilePath FilePathFromASCII(const std::string& str) { | 398 base::FilePath FilePathFromASCII(const std::string& str) { |
| 399 #if defined(OS_WIN) | 399 #if defined(OS_WIN) |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 base::FilePath(args[2])); | 440 base::FilePath(args[2])); |
| 441 } | 441 } |
| 442 } else if (args.size() == 2) { | 442 } else if (args.size() == 2) { |
| 443 return CompareImages( | 443 return CompareImages( |
| 444 base::FilePath(args[0]), base::FilePath(args[1]), histograms); | 444 base::FilePath(args[0]), base::FilePath(args[1]), histograms); |
| 445 } | 445 } |
| 446 | 446 |
| 447 PrintHelp(); | 447 PrintHelp(); |
| 448 return kStatusError; | 448 return kStatusError; |
| 449 } | 449 } |
| OLD | NEW |