blob: 4b65cb8a8c692aacc9fa6f2dbb04a9223925dedb [file] [log] [blame]
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +00001/*
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"
robertphillipsdb539902014-07-01 08:47:04 -070010#include "SkPictureData.h"
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000011#include "SkStream.h"
robertphillips3552ba12016-02-25 10:58:49 -080012#include "SkFontDescriptor.h"
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000013
14DEFINE_string2(input, i, "", "skp on which to report");
15DEFINE_bool2(version, v, true, "version");
robertphillipsa8d7f0b2014-08-29 08:03:56 -070016DEFINE_bool2(cullRect, c, true, "cullRect");
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +000017DEFINE_bool2(flags, f, true, "flags");
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000018DEFINE_bool2(tags, t, true, "tags");
19DEFINE_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:
25static const int kSuccess = 0;
26static const int kTruncatedFile = 1;
27static const int kNotAnSKP = 2;
28static const int kInvalidTag = 3;
29static const int kMissingInput = 4;
30static const int kIOError = 5;
31
32int tool_main(int argc, char** argv);
33int 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 }
robertphillipsa8d7f0b2014-08-29 08:03:56 -070062 if (FLAGS_cullRect && !FLAGS_quiet) {
mtklein88fd0fb2014-12-01 06:56:38 -080063 SkDebugf("Cull Rect: %f,%f,%f,%f\n",
64 info.fCullRect.fLeft, info.fCullRect.fTop,
robertphillipsa8d7f0b2014-08-29 08:03:56 -070065 info.fCullRect.fRight, info.fCullRect.fBottom);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000066 }
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +000067 if (FLAGS_flags && !FLAGS_quiet) {
68 SkDebugf("Flags: 0x%x\n", info.fFlags);
69 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000070
71 if (!stream.readBool()) {
skia.committer@gmail.comade9a342014-03-04 03:02:32 +000072 // If we read true there's a picture playback object flattened
73 // in the file; if false, there isn't a playback, so we're done
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000074 // reading the file.
75 return kSuccess;
76 }
77
78 for (;;) {
79 uint32_t tag = stream.readU32();
80 if (SK_PICT_EOF_TAG == tag) {
81 break;
82 }
83
84 uint32_t chunkSize = stream.readU32();
85 size_t curPos = stream.getPosition();
86
87 // "move" doesn't error out when seeking beyond the end of file
88 // so we need a preemptive check here.
89 if (curPos+chunkSize > totStreamSize) {
90 if (!FLAGS_quiet) {
91 SkDebugf("truncated file\n");
92 }
93 return kTruncatedFile;
94 }
95
96 // Not all the tags store the chunk size (in bytes). Three
97 // of them store tag-specific size information (e.g., number of
98 // fonts) instead. This forces us to early exit when those
99 // chunks are encountered.
100 switch (tag) {
skia.committer@gmail.comade9a342014-03-04 03:02:32 +0000101 case SK_PICT_READER_TAG:
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000102 if (FLAGS_tags && !FLAGS_quiet) {
103 SkDebugf("SK_PICT_READER_TAG %d\n", chunkSize);
104 }
105 break;
106 case SK_PICT_FACTORY_TAG:
107 if (FLAGS_tags && !FLAGS_quiet) {
108 SkDebugf("SK_PICT_FACTORY_TAG %d\n", chunkSize);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000109 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000110 break;
robertphillips3552ba12016-02-25 10:58:49 -0800111 case SK_PICT_TYPEFACE_TAG: {
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000112 if (FLAGS_tags && !FLAGS_quiet) {
113 SkDebugf("SK_PICT_TYPEFACE_TAG %d\n", chunkSize);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000114 }
robertphillips3552ba12016-02-25 10:58:49 -0800115
116 const int count = SkToInt(chunkSize);
117 for (int i = 0; i < count; i++) {
118 SkFontDescriptor desc;
119 if (!SkFontDescriptor::Deserialize(&stream, &desc)) {
120 if (!FLAGS_quiet) {
121 SkDebugf("File corruption in SkFontDescriptor\n");
122 }
123 return kInvalidTag;
124 }
125 }
126
127 // clear this since we've consumed all the typefaces
128 chunkSize = 0;
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000129 break;
robertphillips3552ba12016-02-25 10:58:49 -0800130 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000131 case SK_PICT_PICTURE_TAG:
132 if (FLAGS_tags && !FLAGS_quiet) {
133 SkDebugf("SK_PICT_PICTURE_TAG %d\n", chunkSize);
134 SkDebugf("Exiting early due to format limitations\n");
135 }
136 return kSuccess; // TODO: need to store size in bytes
137 break;
138 case SK_PICT_BUFFER_SIZE_TAG:
139 if (FLAGS_tags && !FLAGS_quiet) {
140 SkDebugf("SK_PICT_BUFFER_SIZE_TAG %d\n", chunkSize);
141 }
142 break;
143 default:
144 if (!FLAGS_quiet) {
145 SkDebugf("Unknown tag %d\n", chunkSize);
146 }
147 return kInvalidTag;
148 }
149
150 if (!stream.move(chunkSize)) {
151 if (!FLAGS_quiet) {
152 SkDebugf("seek error\n");
153 }
154 return kTruncatedFile;
155 }
156 }
157
158 return kSuccess;
159}
160
161#if !defined SK_BUILD_FOR_IOS
162int main(int argc, char * const argv[]) {
163 return tool_main(argc, (char**) argv);
164}
165#endif