reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
commit-bot@chromium.org | 56799e2 | 2013-07-16 18:21:46 +0000 | [diff] [blame] | 8 | #include "LazyDecodeBitmap.h" |
reed@google.com | 3597b73 | 2013-05-22 20:12:50 +0000 | [diff] [blame] | 9 | #include "SkLua.h" |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 10 | #include "SkLuaCanvas.h" |
| 11 | #include "SkPicture.h" |
| 12 | #include "SkCommandLineFlags.h" |
| 13 | #include "SkGraphics.h" |
| 14 | #include "SkStream.h" |
| 15 | #include "SkData.h" |
| 16 | #include "picture_utils.h" |
| 17 | #include "SkOSFile.h" |
| 18 | #include "SkImageDecoder.h" |
| 19 | |
| 20 | extern "C" { |
| 21 | #include "lua.h" |
| 22 | #include "lualib.h" |
| 23 | #include "lauxlib.h" |
| 24 | } |
| 25 | |
reed@google.com | 2d51677 | 2013-05-21 16:05:53 +0000 | [diff] [blame] | 26 | static const char gStartCanvasFunc[] = "sk_scrape_startcanvas"; |
| 27 | static const char gEndCanvasFunc[] = "sk_scrape_endcanvas"; |
| 28 | static const char gAccumulateFunc[] = "sk_scrape_accumulate"; |
| 29 | static const char gSummarizeFunc[] = "sk_scrape_summarize"; |
| 30 | |
commit-bot@chromium.org | aaeb87d | 2013-06-21 21:45:20 +0000 | [diff] [blame] | 31 | // Example usage for the modulo flag: |
| 32 | // for i in {0..5}; do lua_pictures --skpPath SKP_PATH -l YOUR_SCRIPT --modulo $i 6 &; done |
| 33 | DEFINE_string(modulo, "", "[--modulo <remainder> <divisor>]: only run tests for which " |
| 34 | "testIndex %% divisor == remainder."); |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 35 | DEFINE_string2(skpPath, r, "", "Read this .skp file or .skp files from this dir"); |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 36 | DEFINE_string2(luaFile, l, "", "File containing lua script to run"); |
reed@google.com | e2aad27 | 2013-05-31 19:46:02 +0000 | [diff] [blame] | 37 | DEFINE_string2(headCode, s, "", "Optional lua code to call at beginning"); |
| 38 | DEFINE_string2(tailFunc, s, "", "Optional lua function to call at end"); |
commit-bot@chromium.org | bdc772e | 2014-03-19 19:23:17 +0000 | [diff] [blame] | 39 | DEFINE_bool2(quiet, q, false, "Silence all non-error related output"); |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 40 | |
| 41 | static SkPicture* load_picture(const char path[]) { |
| 42 | SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(path)); |
| 43 | SkPicture* pic = NULL; |
| 44 | if (stream.get()) { |
commit-bot@chromium.org | 56799e2 | 2013-07-16 18:21:46 +0000 | [diff] [blame] | 45 | pic = SkPicture::CreateFromStream(stream.get(), &sk_tools::LazyDecodeBitmap); |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 46 | } |
| 47 | return pic; |
| 48 | } |
| 49 | |
| 50 | static SkData* read_into_data(const char file[]) { |
| 51 | SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(file)); |
| 52 | if (!stream.get()) { |
| 53 | return SkData::NewEmpty(); |
| 54 | } |
| 55 | size_t len = stream->getLength(); |
| 56 | void* buffer = sk_malloc_throw(len); |
| 57 | stream->read(buffer, len); |
| 58 | return SkData::NewFromMalloc(buffer, len); |
| 59 | } |
| 60 | |
reed@google.com | 2d51677 | 2013-05-21 16:05:53 +0000 | [diff] [blame] | 61 | static void call_canvas(lua_State* L, SkLuaCanvas* canvas, |
| 62 | const char pictureFile[], const char funcName[]) { |
| 63 | lua_getglobal(L, funcName); |
mike@reedtribe.org | f02fe3d | 2013-05-21 12:20:39 +0000 | [diff] [blame] | 64 | if (!lua_isfunction(L, -1)) { |
| 65 | int t = lua_type(L, -1); |
reed@google.com | 2d51677 | 2013-05-21 16:05:53 +0000 | [diff] [blame] | 66 | SkDebugf("--- expected %s function %d, ignoring.\n", funcName, t); |
mike@reedtribe.org | f02fe3d | 2013-05-21 12:20:39 +0000 | [diff] [blame] | 67 | lua_settop(L, -2); |
| 68 | } else { |
| 69 | canvas->pushThis(); |
reed@google.com | 2d51677 | 2013-05-21 16:05:53 +0000 | [diff] [blame] | 70 | lua_pushstring(L, pictureFile); |
| 71 | if (lua_pcall(L, 2, 0, 0) != LUA_OK) { |
mike@reedtribe.org | f02fe3d | 2013-05-21 12:20:39 +0000 | [diff] [blame] | 72 | SkDebugf("lua err: %s\n", lua_tostring(L, -1)); |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 | |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 77 | int tool_main(int argc, char** argv); |
| 78 | int tool_main(int argc, char** argv) { |
| 79 | SkCommandLineFlags::SetUsage("apply lua script to .skp files."); |
| 80 | SkCommandLineFlags::Parse(argc, argv); |
| 81 | |
| 82 | if (FLAGS_skpPath.isEmpty()) { |
| 83 | SkDebugf(".skp files or directories are required.\n"); |
| 84 | exit(-1); |
| 85 | } |
| 86 | if (FLAGS_luaFile.isEmpty()) { |
mike@reedtribe.org | 0e59b79 | 2013-05-21 03:24:37 +0000 | [diff] [blame] | 87 | SkDebugf("missing luaFile(s)\n"); |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 88 | exit(-1); |
| 89 | } |
| 90 | |
reed@google.com | e2aad27 | 2013-05-31 19:46:02 +0000 | [diff] [blame] | 91 | const char* summary = gSummarizeFunc; |
| 92 | if (!FLAGS_tailFunc.isEmpty()) { |
| 93 | summary = FLAGS_tailFunc[0]; |
| 94 | } |
| 95 | |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 96 | SkAutoGraphics ag; |
reed@google.com | e2aad27 | 2013-05-31 19:46:02 +0000 | [diff] [blame] | 97 | SkLua L(summary); |
mike@reedtribe.org | 0e59b79 | 2013-05-21 03:24:37 +0000 | [diff] [blame] | 98 | |
| 99 | for (int i = 0; i < FLAGS_luaFile.count(); ++i) { |
| 100 | SkAutoDataUnref data(read_into_data(FLAGS_luaFile[i])); |
commit-bot@chromium.org | bdc772e | 2014-03-19 19:23:17 +0000 | [diff] [blame] | 101 | if (!FLAGS_quiet) { |
| 102 | SkDebugf("loading %s...\n", FLAGS_luaFile[i]); |
| 103 | } |
reed@google.com | 3597b73 | 2013-05-22 20:12:50 +0000 | [diff] [blame] | 104 | if (!L.runCode(data->data(), data->size())) { |
mike@reedtribe.org | 0e59b79 | 2013-05-21 03:24:37 +0000 | [diff] [blame] | 105 | SkDebugf("failed to load luaFile %s\n", FLAGS_luaFile[i]); |
| 106 | exit(-1); |
| 107 | } |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 108 | } |
| 109 | |
reed@google.com | e2aad27 | 2013-05-31 19:46:02 +0000 | [diff] [blame] | 110 | if (!FLAGS_headCode.isEmpty()) { |
| 111 | L.runCode(FLAGS_headCode[0]); |
| 112 | } |
skia.committer@gmail.com | 26da7f0 | 2013-06-01 07:01:39 +0000 | [diff] [blame] | 113 | |
commit-bot@chromium.org | aaeb87d | 2013-06-21 21:45:20 +0000 | [diff] [blame] | 114 | int moduloRemainder = -1; |
| 115 | int moduloDivisor = -1; |
| 116 | SkString moduloStr; |
| 117 | |
| 118 | if (FLAGS_modulo.count() == 2) { |
| 119 | moduloRemainder = atoi(FLAGS_modulo[0]); |
| 120 | moduloDivisor = atoi(FLAGS_modulo[1]); |
| 121 | if (moduloRemainder < 0 || moduloDivisor <= 0 || moduloRemainder >= moduloDivisor) { |
| 122 | SkDebugf("invalid modulo values.\n"); |
| 123 | return -1; |
| 124 | } |
| 125 | } |
| 126 | |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 127 | for (int i = 0; i < FLAGS_skpPath.count(); i ++) { |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 128 | SkTArray<SkString> paths; |
| 129 | if (sk_isdir(FLAGS_skpPath[i])) { |
| 130 | // Add all .skp in this directory. |
| 131 | const SkString directory(FLAGS_skpPath[i]); |
| 132 | SkString filename; |
| 133 | SkOSFile::Iter iter(FLAGS_skpPath[i], "skp"); |
| 134 | while(iter.next(&filename)) { |
tfarina | a8e2e15 | 2014-07-28 19:26:58 -0700 | [diff] [blame^] | 135 | paths.push_back() = SkOSPath::Join(directory.c_str(), filename.c_str()); |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 136 | } |
| 137 | } else { |
| 138 | // Add this as an .skp itself. |
| 139 | paths.push_back() = FLAGS_skpPath[i]; |
| 140 | } |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 141 | |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 142 | for (int i = 0; i < paths.count(); i++) { |
commit-bot@chromium.org | aaeb87d | 2013-06-21 21:45:20 +0000 | [diff] [blame] | 143 | if (moduloRemainder >= 0) { |
| 144 | if ((i % moduloDivisor) != moduloRemainder) { |
| 145 | continue; |
| 146 | } |
| 147 | moduloStr.printf("[%d.%d] ", i, moduloDivisor); |
| 148 | } |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 149 | const char* path = paths[i].c_str(); |
commit-bot@chromium.org | bdc772e | 2014-03-19 19:23:17 +0000 | [diff] [blame] | 150 | if (!FLAGS_quiet) { |
| 151 | SkDebugf("scraping %s %s\n", path, moduloStr.c_str()); |
| 152 | } |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 153 | |
mike@reedtribe.org | cef454e | 2013-05-21 01:49:06 +0000 | [diff] [blame] | 154 | SkAutoTUnref<SkPicture> pic(load_picture(path)); |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 155 | if (pic.get()) { |
reed@google.com | 2d51677 | 2013-05-21 16:05:53 +0000 | [diff] [blame] | 156 | SkAutoTUnref<SkLuaCanvas> canvas( |
| 157 | new SkLuaCanvas(pic->width(), pic->height(), |
| 158 | L.get(), gAccumulateFunc)); |
mike@reedtribe.org | f02fe3d | 2013-05-21 12:20:39 +0000 | [diff] [blame] | 159 | |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 160 | call_canvas(L.get(), canvas.get(), path, gStartCanvasFunc); |
robertphillips | 9b14f26 | 2014-06-04 05:40:44 -0700 | [diff] [blame] | 161 | canvas->drawPicture(pic); |
commit-bot@chromium.org | 3da6c56 | 2013-06-18 18:35:58 +0000 | [diff] [blame] | 162 | call_canvas(L.get(), canvas.get(), path, gEndCanvasFunc); |
reed@google.com | 2d51677 | 2013-05-21 16:05:53 +0000 | [diff] [blame] | 163 | |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 164 | } else { |
mike@reedtribe.org | cef454e | 2013-05-21 01:49:06 +0000 | [diff] [blame] | 165 | SkDebugf("failed to load\n"); |
reed@google.com | dff7e11 | 2013-05-15 19:34:20 +0000 | [diff] [blame] | 166 | } |
| 167 | } |
| 168 | } |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | #if !defined SK_BUILD_FOR_IOS |
| 173 | int main(int argc, char * const argv[]) { |
| 174 | return tool_main(argc, (char**) argv); |
| 175 | } |
| 176 | #endif |