commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 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 | |
| 8 | #include "SkCommandLineFlags.h" |
| 9 | #include "SkPicture.h" |
robertphillips | db53990 | 2014-07-01 08:47:04 -0700 | [diff] [blame] | 10 | #include "SkPictureData.h" |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 11 | #include "SkStream.h" |
robertphillips | 3552ba1 | 2016-02-25 10:58:49 -0800 | [diff] [blame] | 12 | #include "SkFontDescriptor.h" |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 13 | |
| 14 | DEFINE_string2(input, i, "", "skp on which to report"); |
| 15 | DEFINE_bool2(version, v, true, "version"); |
robertphillips | a8d7f0b | 2014-08-29 08:03:56 -0700 | [diff] [blame] | 16 | DEFINE_bool2(cullRect, c, true, "cullRect"); |
commit-bot@chromium.org | e2cb12a | 2014-04-24 21:53:13 +0000 | [diff] [blame] | 17 | DEFINE_bool2(flags, f, true, "flags"); |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 18 | DEFINE_bool2(tags, t, true, "tags"); |
| 19 | DEFINE_bool2(quiet, q, false, "quiet"); |
| 20 | |
| 21 | // This tool can print simple information about an SKP but its main use |
| 22 | // is just to check if an SKP has been truncated during the recording |
| 23 | // process. |
| 24 | // return codes: |
| 25 | static const int kSuccess = 0; |
| 26 | static const int kTruncatedFile = 1; |
| 27 | static const int kNotAnSKP = 2; |
| 28 | static const int kInvalidTag = 3; |
| 29 | static const int kMissingInput = 4; |
| 30 | static const int kIOError = 5; |
| 31 | |
| 32 | int tool_main(int argc, char** argv); |
| 33 | int tool_main(int argc, char** argv) { |
| 34 | SkCommandLineFlags::SetUsage("Prints information about an skp file"); |
| 35 | SkCommandLineFlags::Parse(argc, argv); |
| 36 | |
| 37 | if (FLAGS_input.count() != 1) { |
| 38 | if (!FLAGS_quiet) { |
| 39 | SkDebugf("Missing input file\n"); |
| 40 | } |
| 41 | return kMissingInput; |
| 42 | } |
| 43 | |
| 44 | SkFILEStream stream(FLAGS_input[0]); |
| 45 | if (!stream.isValid()) { |
| 46 | if (!FLAGS_quiet) { |
| 47 | SkDebugf("Couldn't open file\n"); |
| 48 | } |
| 49 | return kIOError; |
| 50 | } |
| 51 | |
| 52 | size_t totStreamSize = stream.getLength(); |
| 53 | |
| 54 | SkPictInfo info; |
| 55 | if (!SkPicture::InternalOnly_StreamIsSKP(&stream, &info)) { |
| 56 | return kNotAnSKP; |
| 57 | } |
| 58 | |
| 59 | if (FLAGS_version && !FLAGS_quiet) { |
| 60 | SkDebugf("Version: %d\n", info.fVersion); |
| 61 | } |
robertphillips | a8d7f0b | 2014-08-29 08:03:56 -0700 | [diff] [blame] | 62 | if (FLAGS_cullRect && !FLAGS_quiet) { |
mtklein | 88fd0fb | 2014-12-01 06:56:38 -0800 | [diff] [blame] | 63 | SkDebugf("Cull Rect: %f,%f,%f,%f\n", |
| 64 | info.fCullRect.fLeft, info.fCullRect.fTop, |
robertphillips | a8d7f0b | 2014-08-29 08:03:56 -0700 | [diff] [blame] | 65 | info.fCullRect.fRight, info.fCullRect.fBottom); |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 66 | } |
commit-bot@chromium.org | e2cb12a | 2014-04-24 21:53:13 +0000 | [diff] [blame] | 67 | if (FLAGS_flags && !FLAGS_quiet) { |
robertphillips | 4458312 | 2016-04-19 09:29:01 -0700 | [diff] [blame] | 68 | SkDebugf("Flags: "); |
| 69 | bool needsSeparator = false; |
| 70 | if (info.fFlags & SkPictInfo::kCrossProcess_Flag) { |
| 71 | SkDebugf("kCrossProcess"); |
| 72 | needsSeparator = true; |
| 73 | } |
| 74 | if (info.fFlags & SkPictInfo::kScalarIsFloat_Flag) { |
| 75 | if (needsSeparator) { |
| 76 | SkDebugf("|"); |
| 77 | } |
| 78 | SkDebugf("kScalarIsFloat"); |
| 79 | needsSeparator = true; |
| 80 | } |
| 81 | if (info.fFlags & SkPictInfo::kPtrIs64Bit_Flag) { |
| 82 | if (needsSeparator) { |
| 83 | SkDebugf("|"); |
| 84 | } |
| 85 | SkDebugf("kPtrIs64Bit"); |
| 86 | } |
| 87 | SkDebugf("\n"); |
commit-bot@chromium.org | e2cb12a | 2014-04-24 21:53:13 +0000 | [diff] [blame] | 88 | } |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 89 | |
| 90 | if (!stream.readBool()) { |
skia.committer@gmail.com | ade9a34 | 2014-03-04 03:02:32 +0000 | [diff] [blame] | 91 | // If we read true there's a picture playback object flattened |
| 92 | // in the file; if false, there isn't a playback, so we're done |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 93 | // reading the file. |
| 94 | return kSuccess; |
| 95 | } |
| 96 | |
| 97 | for (;;) { |
| 98 | uint32_t tag = stream.readU32(); |
| 99 | if (SK_PICT_EOF_TAG == tag) { |
| 100 | break; |
| 101 | } |
| 102 | |
| 103 | uint32_t chunkSize = stream.readU32(); |
| 104 | size_t curPos = stream.getPosition(); |
| 105 | |
| 106 | // "move" doesn't error out when seeking beyond the end of file |
| 107 | // so we need a preemptive check here. |
| 108 | if (curPos+chunkSize > totStreamSize) { |
| 109 | if (!FLAGS_quiet) { |
| 110 | SkDebugf("truncated file\n"); |
| 111 | } |
| 112 | return kTruncatedFile; |
| 113 | } |
| 114 | |
| 115 | // Not all the tags store the chunk size (in bytes). Three |
| 116 | // of them store tag-specific size information (e.g., number of |
| 117 | // fonts) instead. This forces us to early exit when those |
| 118 | // chunks are encountered. |
| 119 | switch (tag) { |
skia.committer@gmail.com | ade9a34 | 2014-03-04 03:02:32 +0000 | [diff] [blame] | 120 | case SK_PICT_READER_TAG: |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 121 | if (FLAGS_tags && !FLAGS_quiet) { |
| 122 | SkDebugf("SK_PICT_READER_TAG %d\n", chunkSize); |
| 123 | } |
| 124 | break; |
| 125 | case SK_PICT_FACTORY_TAG: |
| 126 | if (FLAGS_tags && !FLAGS_quiet) { |
| 127 | SkDebugf("SK_PICT_FACTORY_TAG %d\n", chunkSize); |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 128 | } |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 129 | break; |
robertphillips | 3552ba1 | 2016-02-25 10:58:49 -0800 | [diff] [blame] | 130 | case SK_PICT_TYPEFACE_TAG: { |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 131 | if (FLAGS_tags && !FLAGS_quiet) { |
| 132 | SkDebugf("SK_PICT_TYPEFACE_TAG %d\n", chunkSize); |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 133 | } |
robertphillips | 3552ba1 | 2016-02-25 10:58:49 -0800 | [diff] [blame] | 134 | |
| 135 | const int count = SkToInt(chunkSize); |
| 136 | for (int i = 0; i < count; i++) { |
| 137 | SkFontDescriptor desc; |
| 138 | if (!SkFontDescriptor::Deserialize(&stream, &desc)) { |
| 139 | if (!FLAGS_quiet) { |
| 140 | SkDebugf("File corruption in SkFontDescriptor\n"); |
| 141 | } |
| 142 | return kInvalidTag; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | // clear this since we've consumed all the typefaces |
| 147 | chunkSize = 0; |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 148 | break; |
robertphillips | 3552ba1 | 2016-02-25 10:58:49 -0800 | [diff] [blame] | 149 | } |
commit-bot@chromium.org | 6f4fb0f | 2014-03-03 19:18:39 +0000 | [diff] [blame] | 150 | case SK_PICT_PICTURE_TAG: |
| 151 | if (FLAGS_tags && !FLAGS_quiet) { |
| 152 | SkDebugf("SK_PICT_PICTURE_TAG %d\n", chunkSize); |
| 153 | SkDebugf("Exiting early due to format limitations\n"); |
| 154 | } |
| 155 | return kSuccess; // TODO: need to store size in bytes |
| 156 | break; |
| 157 | case SK_PICT_BUFFER_SIZE_TAG: |
| 158 | if (FLAGS_tags && !FLAGS_quiet) { |
| 159 | SkDebugf("SK_PICT_BUFFER_SIZE_TAG %d\n", chunkSize); |
| 160 | } |
| 161 | break; |
| 162 | default: |
| 163 | if (!FLAGS_quiet) { |
| 164 | SkDebugf("Unknown tag %d\n", chunkSize); |
| 165 | } |
| 166 | return kInvalidTag; |
| 167 | } |
| 168 | |
| 169 | if (!stream.move(chunkSize)) { |
| 170 | if (!FLAGS_quiet) { |
| 171 | SkDebugf("seek error\n"); |
| 172 | } |
| 173 | return kTruncatedFile; |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | return kSuccess; |
| 178 | } |
| 179 | |
| 180 | #if !defined SK_BUILD_FOR_IOS |
| 181 | int main(int argc, char * const argv[]) { |
| 182 | return tool_main(argc, (char**) argv); |
| 183 | } |
| 184 | #endif |