blob: 76dc4148eddd5dd3847a7abef33af3ebf079f019 [file] [log] [blame]
mtklein@google.comd36522d2013-10-16 13:02:15 +00001// Main binary for DM.
2// For a high-level overview, please see dm/README.
3
tfarinaf168b862014-06-19 12:32:29 -07004#include "CrashHandler.h"
caryclark17f0b6d2014-07-22 10:15:34 -07005#include "SkCommonFlags.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +00006#include "SkForceLinking.h"
7#include "SkGraphics.h"
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +00008#include "SkPicture.h"
rmistry@google.comd6bab022013-12-02 13:50:38 +00009#include "SkString.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000010#include "Test.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000011#include "gm.h"
Cary Clark992c7b02014-07-31 08:58:44 -040012#include "sk_tool_utils.h"
13#include "sk_tool_utils_flags.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000014
commit-bot@chromium.orgef57b7e2014-02-28 20:31:31 +000015#include "DMCpuGMTask.h"
16#include "DMGpuGMTask.h"
commit-bot@chromium.org787227d2014-03-26 21:26:15 +000017#include "DMGpuSupport.h"
mtklein30bf3e22014-06-03 13:57:14 -070018#include "DMPDFTask.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000019#include "DMReporter.h"
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +000020#include "DMSKPTask.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000021#include "DMTask.h"
22#include "DMTaskRunner.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000023#include "DMTestTask.h"
commit-bot@chromium.org99589af2013-12-10 14:53:16 +000024#include "DMWriteTask.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000025
mtklein30bf3e22014-06-03 13:57:14 -070026#ifdef SK_BUILD_POPPLER
27# include "SkPDFRasterizer.h"
28# define RASTERIZE_PDF_PROC SkPopplerRasterizePDF
29#else
30# define RASTERIZE_PDF_PROC NULL
31#endif
32
commit-bot@chromium.org120c9992014-05-16 18:11:51 +000033#include <ctype.h>
mtklein@google.comd36522d2013-10-16 13:02:15 +000034
35using skiagm::GM;
36using skiagm::GMRegistry;
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000037using skiatest::Test;
38using skiatest::TestRegistry;
mtklein@google.comd36522d2013-10-16 13:02:15 +000039
kkinnunen80549fc2014-06-30 06:36:31 -070040static const char kGpuAPINameGL[] = "gl";
41static const char kGpuAPINameGLES[] = "gles";
42
commit-bot@chromium.orgef57b7e2014-02-28 20:31:31 +000043DEFINE_int32(gpuThreads, 1, "Threads for GPU work.");
commit-bot@chromium.org99589af2013-12-10 14:53:16 +000044DEFINE_string2(expectations, r, "",
45 "If a directory, compare generated images against images under this path. "
commit-bot@chromium.org120c9992014-05-16 18:11:51 +000046 "If a file, compare generated images against JSON expectations at this path."
commit-bot@chromium.org120c9992014-05-16 18:11:51 +000047);
caryclark17f0b6d2014-07-22 10:15:34 -070048
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000049DEFINE_bool(gms, true, "Run GMs?");
50DEFINE_bool(tests, true, "Run tests?");
Cary Clark992c7b02014-07-31 08:58:44 -040051DEFINE_bool(reportUsedChars, false, "Output test font construction data to be pasted into"
52 " create_test_font.cpp.");
mtklein@google.comd36522d2013-10-16 13:02:15 +000053
54__SK_FORCE_IMAGE_DECODER_LINKING;
55
mtklein@google.comd36522d2013-10-16 13:02:15 +000056// "FooBar" -> "foobar". Obviously, ASCII only.
57static SkString lowercase(SkString s) {
58 for (size_t i = 0; i < s.size(); i++) {
59 s[i] = tolower(s[i]);
60 }
61 return s;
62}
63
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +000064static const GrContextFactory::GLContextType native = GrContextFactory::kNative_GLContextType;
commit-bot@chromium.orgb6401862014-03-12 14:46:31 +000065static const GrContextFactory::GLContextType nvpr = GrContextFactory::kNVPR_GLContextType;
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +000066static const GrContextFactory::GLContextType null = GrContextFactory::kNull_GLContextType;
67static const GrContextFactory::GLContextType debug = GrContextFactory::kDebug_GLContextType;
68static const GrContextFactory::GLContextType angle =
69#if SK_ANGLE
70GrContextFactory::kANGLE_GLContextType;
71#else
72native;
73#endif
74static const GrContextFactory::GLContextType mesa =
75#if SK_MESA
bsalomon@google.com9dccafa2014-05-02 14:43:12 +000076GrContextFactory::kMESA_GLContextType;
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +000077#else
78native;
79#endif
80
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000081static void kick_off_gms(const SkTDArray<GMRegistry::Factory>& gms,
82 const SkTArray<SkString>& configs,
kkinnunen80549fc2014-06-30 06:36:31 -070083 GrGLStandard gpuAPI,
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000084 const DM::Expectations& expectations,
85 DM::Reporter* reporter,
86 DM::TaskRunner* tasks) {
mtkleine4d3e602014-06-06 09:28:43 -070087#define START(name, type, ...) \
88 if (lowercase(configs[j]).equals(name)) { \
89 tasks->add(SkNEW_ARGS(DM::type, (name, reporter, tasks, gms[i], ## __VA_ARGS__))); \
mtklein@google.comd36522d2013-10-16 13:02:15 +000090 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +000091 for (int i = 0; i < gms.count(); i++) {
mtklein@google.comd36522d2013-10-16 13:02:15 +000092 for (int j = 0; j < configs.count(); j++) {
kkinnunen80549fc2014-06-30 06:36:31 -070093
mtkleine4d3e602014-06-06 09:28:43 -070094 START("565", CpuGMTask, expectations, kRGB_565_SkColorType);
95 START("8888", CpuGMTask, expectations, kN32_SkColorType);
kkinnunen80549fc2014-06-30 06:36:31 -070096 START("gpu", GpuGMTask, expectations, native, gpuAPI, 0);
97 START("msaa4", GpuGMTask, expectations, native, gpuAPI, 4);
98 START("msaa16", GpuGMTask, expectations, native, gpuAPI, 16);
99 START("nvprmsaa4", GpuGMTask, expectations, nvpr, gpuAPI, 4);
100 START("nvprmsaa16", GpuGMTask, expectations, nvpr, gpuAPI, 16);
101 START("gpunull", GpuGMTask, expectations, null, gpuAPI, 0);
102 START("gpudebug", GpuGMTask, expectations, debug, gpuAPI, 0);
103 START("angle", GpuGMTask, expectations, angle, gpuAPI, 0);
104 START("mesa", GpuGMTask, expectations, mesa, gpuAPI, 0);
mtklein30bf3e22014-06-03 13:57:14 -0700105 START("pdf", PDFTask, RASTERIZE_PDF_PROC);
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000106 }
107 }
108#undef START
109}
110
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000111static void kick_off_tests(const SkTDArray<TestRegistry::Factory>& tests,
112 DM::Reporter* reporter,
113 DM::TaskRunner* tasks) {
114 for (int i = 0; i < tests.count(); i++) {
commit-bot@chromium.orgef57b7e2014-02-28 20:31:31 +0000115 SkAutoTDelete<Test> test(tests[i](NULL));
116 if (test->isGPUTest()) {
117 tasks->add(SkNEW_ARGS(DM::GpuTestTask, (reporter, tasks, tests[i])));
118 } else {
119 tasks->add(SkNEW_ARGS(DM::CpuTestTask, (reporter, tasks, tests[i])));
120 }
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000121 }
122}
123
halcanarya98683b2014-07-28 07:21:24 -0700124static void find_skps(SkTArray<SkString>* skps) {
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000125 if (FLAGS_skps.isEmpty()) {
126 return;
127 }
128
129 SkOSFile::Iter it(FLAGS_skps[0], ".skp");
130 SkString filename;
131 while (it.next(&filename)) {
halcanarya98683b2014-07-28 07:21:24 -0700132 if (!SkCommandLineFlags::ShouldSkip(FLAGS_match, filename.c_str())) {
tfarinaa8e2e152014-07-28 19:26:58 -0700133 skps->push_back(SkOSPath::Join(FLAGS_skps[0], filename.c_str()));
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000134 }
halcanarya98683b2014-07-28 07:21:24 -0700135 }
136}
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000137
halcanarya98683b2014-07-28 07:21:24 -0700138static void kick_off_skps(const SkTArray<SkString>& skps,
139 DM::Reporter* reporter, DM::TaskRunner* tasks) {
140 for (int i = 0; i < skps.count(); ++i) {
141 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(skps[i].c_str()));
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000142 if (stream.get() == NULL) {
halcanarya98683b2014-07-28 07:21:24 -0700143 SkDebugf("Could not read %s.\n", skps[i].c_str());
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000144 exit(1);
145 }
146 SkAutoTUnref<SkPicture> pic(SkPicture::CreateFromStream(stream.get()));
147 if (pic.get() == NULL) {
halcanarya98683b2014-07-28 07:21:24 -0700148 SkDebugf("Could not read %s as an SkPicture.\n", skps[i].c_str());
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000149 exit(1);
150 }
151
tfarinaa8e2e152014-07-28 19:26:58 -0700152 SkString filename = SkOSPath::Basename(skps[i].c_str());
mtkleind3e474e2014-06-27 12:34:44 -0700153 tasks->add(SkNEW_ARGS(DM::SKPTask, (reporter, tasks, pic, filename)));
154 tasks->add(SkNEW_ARGS(DM::PDFTask, (reporter, tasks, pic, filename,
mtkleine4d3e602014-06-06 09:28:43 -0700155 RASTERIZE_PDF_PROC)));
commit-bot@chromium.org90b5a2a2014-05-14 17:55:32 +0000156 }
157}
158
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000159static void report_failures(const SkTArray<SkString>& failures) {
mtklein@google.comd36522d2013-10-16 13:02:15 +0000160 if (failures.count() == 0) {
161 return;
162 }
163
164 SkDebugf("Failures:\n");
165 for (int i = 0; i < failures.count(); i++) {
166 SkDebugf(" %s\n", failures[i].c_str());
167 }
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000168 SkDebugf("%d failures.\n", failures.count());
mtklein@google.comd36522d2013-10-16 13:02:15 +0000169}
170
kkinnunen80549fc2014-06-30 06:36:31 -0700171static GrGLStandard get_gl_standard() {
172 if (FLAGS_gpuAPI.contains(kGpuAPINameGL)) {
173 return kGL_GrGLStandard;
174 }
175 if (FLAGS_gpuAPI.contains(kGpuAPINameGLES)) {
176 return kGLES_GrGLStandard;
177 }
178 return kNone_GrGLStandard;
179}
180
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000181template <typename T, typename Registry>
182static void append_matching_factories(Registry* head, SkTDArray<typename Registry::Factory>* out) {
183 for (const Registry* reg = head; reg != NULL; reg = reg->next()) {
184 SkAutoTDelete<T> forName(reg->factory()(NULL));
185 if (!SkCommandLineFlags::ShouldSkip(FLAGS_match, forName->getName())) {
186 *out->append() = reg->factory();
187 }
188 }
189}
190
caryclark17f0b6d2014-07-22 10:15:34 -0700191int dm_main();
192int dm_main() {
mtklein30e6e2a2014-06-18 11:44:15 -0700193 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000194 SkAutoGraphics ag;
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000195
196 if (FLAGS_dryRun) {
197 FLAGS_verbose = true;
198 }
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000199#if SK_ENABLE_INST_COUNT
200 gPrintInstCount = FLAGS_leaks;
201#endif
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000202
mtklein@google.comd36522d2013-10-16 13:02:15 +0000203 SkTArray<SkString> configs;
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000204 for (int i = 0; i < FLAGS_config.count(); i++) {
205 SkStrSplit(FLAGS_config[i], ", ", &configs);
206 }
207
kkinnunen80549fc2014-06-30 06:36:31 -0700208 GrGLStandard gpuAPI = get_gl_standard();
209
mtklein@google.comd36522d2013-10-16 13:02:15 +0000210 SkTDArray<GMRegistry::Factory> gms;
commit-bot@chromium.org99589af2013-12-10 14:53:16 +0000211 SkAutoTDelete<DM::Expectations> expectations(SkNEW(DM::NoExpectations));
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000212 if (FLAGS_gms) {
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000213 append_matching_factories<GM>(GMRegistry::Head(), &gms);
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000214
215 if (FLAGS_expectations.count() > 0) {
216 const char* path = FLAGS_expectations[0];
217 if (sk_isdir(path)) {
218 expectations.reset(SkNEW_ARGS(DM::WriteTask::Expectations, (path)));
219 } else {
220 expectations.reset(SkNEW_ARGS(DM::JsonExpectations, (path)));
221 }
commit-bot@chromium.org99589af2013-12-10 14:53:16 +0000222 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000223 }
224
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000225 SkTDArray<TestRegistry::Factory> tests;
226 if (FLAGS_tests) {
227 append_matching_factories<Test>(TestRegistry::Head(), &tests);
228 }
229
halcanarya98683b2014-07-28 07:21:24 -0700230 SkTArray<SkString> skps;
231 find_skps(&skps);
232
233 SkDebugf("%d GMs x %d configs, %d tests, %d pictures\n",
234 gms.count(), configs.count(), tests.count(), skps.count());
mtklein@google.comd36522d2013-10-16 13:02:15 +0000235 DM::Reporter reporter;
commit-bot@chromium.orgef57b7e2014-02-28 20:31:31 +0000236 DM::TaskRunner tasks(FLAGS_threads, FLAGS_gpuThreads);
kkinnunen80549fc2014-06-30 06:36:31 -0700237 kick_off_gms(gms, configs, gpuAPI, *expectations, &reporter, &tasks);
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000238 kick_off_tests(tests, &reporter, &tasks);
halcanarya98683b2014-07-28 07:21:24 -0700239 kick_off_skps(skps, &reporter, &tasks);
mtklein@google.comd36522d2013-10-16 13:02:15 +0000240 tasks.wait();
241
mtklein@google.comd36522d2013-10-16 13:02:15 +0000242 SkDebugf("\n");
Cary Clark992c7b02014-07-31 08:58:44 -0400243#ifdef SK_DEBUG
244 if (FLAGS_portableFonts && FLAGS_reportUsedChars) {
245 sk_tool_utils::report_used_chars();
246 }
247#endif
mtklein92007582014-08-01 07:46:52 -0700248
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000249 SkTArray<SkString> failures;
250 reporter.getFailures(&failures);
251 report_failures(failures);
252 return failures.count() > 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000253}
commit-bot@chromium.org846872f2013-10-16 18:21:03 +0000254
255#if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
256int main(int argc, char** argv) {
caryclark17f0b6d2014-07-22 10:15:34 -0700257 SkCommandLineFlags::Parse(argc, argv);
258 return dm_main();
commit-bot@chromium.org846872f2013-10-16 18:21:03 +0000259}
260#endif