blob: 93834bb3a87597bf2f9d71d1def64475768ad0f2 [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"
Hal Canary2a2f6752018-06-11 21:44:01 -04009#include "SkPicture.h"
Hal Canary2a2f6752018-06-11 21:44:01 -040010#include "SkPictureData.h"
Hal Canaryfdcfb8b2018-06-13 09:42:32 -040011#include "SkPictureCommon.h"
Hal Canary2a2f6752018-06-11 21:44:01 -040012#include "SkStream.h"
Hal Canaryfdcfb8b2018-06-13 09:42:32 -040013#include "SkFontDescriptor.h"
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000014
15DEFINE_string2(input, i, "", "skp on which to report");
16DEFINE_bool2(version, v, true, "version");
robertphillipsa8d7f0b2014-08-29 08:03:56 -070017DEFINE_bool2(cullRect, c, true, "cullRect");
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +000018DEFINE_bool2(flags, f, true, "flags");
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000019DEFINE_bool2(tags, t, true, "tags");
20DEFINE_bool2(quiet, q, false, "quiet");
21
22// This tool can print simple information about an SKP but its main use
23// is just to check if an SKP has been truncated during the recording
24// process.
25// return codes:
26static const int kSuccess = 0;
27static const int kTruncatedFile = 1;
28static const int kNotAnSKP = 2;
29static const int kInvalidTag = 3;
30static const int kMissingInput = 4;
31static const int kIOError = 5;
32
Mike Kleinbe28ee22017-02-06 12:46:20 -050033int main(int argc, char** argv) {
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000034 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;
Mike Reede7a58322017-12-20 14:09:20 -050055 if (!SkPicture_StreamIsSKP(&stream, &info)) {
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000056 return kNotAnSKP;
57 }
58
59 if (FLAGS_version && !FLAGS_quiet) {
Mike Reedb3f543d2016-10-04 15:12:01 -040060 SkDebugf("Version: %d\n", info.getVersion());
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000061 }
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 }
67
Ben Wagner255ab8d2016-10-07 15:50:53 -040068 bool hasData;
69 if (!stream.readBool(&hasData)) { return kTruncatedFile; }
70 if (!hasData) {
skia.committer@gmail.comade9a342014-03-04 03:02:32 +000071 // If we read true there's a picture playback object flattened
72 // in the file; if false, there isn't a playback, so we're done
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000073 // reading the file.
74 return kSuccess;
75 }
76
77 for (;;) {
Ben Wagner255ab8d2016-10-07 15:50:53 -040078 uint32_t tag;
79 if (!stream.readU32(&tag)) { return kTruncatedFile; }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000080 if (SK_PICT_EOF_TAG == tag) {
81 break;
82 }
83
Ben Wagner255ab8d2016-10-07 15:50:53 -040084 uint32_t chunkSize;
85 if (!stream.readU32(&chunkSize)) { return kTruncatedFile; }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000086 size_t curPos = stream.getPosition();
87
88 // "move" doesn't error out when seeking beyond the end of file
89 // so we need a preemptive check here.
90 if (curPos+chunkSize > totStreamSize) {
91 if (!FLAGS_quiet) {
92 SkDebugf("truncated file\n");
93 }
94 return kTruncatedFile;
95 }
96
97 // Not all the tags store the chunk size (in bytes). Three
98 // of them store tag-specific size information (e.g., number of
99 // fonts) instead. This forces us to early exit when those
100 // chunks are encountered.
101 switch (tag) {
skia.committer@gmail.comade9a342014-03-04 03:02:32 +0000102 case SK_PICT_READER_TAG:
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000103 if (FLAGS_tags && !FLAGS_quiet) {
104 SkDebugf("SK_PICT_READER_TAG %d\n", chunkSize);
105 }
106 break;
107 case SK_PICT_FACTORY_TAG:
108 if (FLAGS_tags && !FLAGS_quiet) {
109 SkDebugf("SK_PICT_FACTORY_TAG %d\n", chunkSize);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000110 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000111 break;
robertphillips3552ba12016-02-25 10:58:49 -0800112 case SK_PICT_TYPEFACE_TAG: {
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000113 if (FLAGS_tags && !FLAGS_quiet) {
114 SkDebugf("SK_PICT_TYPEFACE_TAG %d\n", chunkSize);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000115 }
robertphillips3552ba12016-02-25 10:58:49 -0800116
117 const int count = SkToInt(chunkSize);
118 for (int i = 0; i < count; i++) {
119 SkFontDescriptor desc;
120 if (!SkFontDescriptor::Deserialize(&stream, &desc)) {
121 if (!FLAGS_quiet) {
122 SkDebugf("File corruption in SkFontDescriptor\n");
123 }
124 return kInvalidTag;
125 }
126 }
127
128 // clear this since we've consumed all the typefaces
129 chunkSize = 0;
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000130 break;
robertphillips3552ba12016-02-25 10:58:49 -0800131 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000132 case SK_PICT_PICTURE_TAG:
133 if (FLAGS_tags && !FLAGS_quiet) {
134 SkDebugf("SK_PICT_PICTURE_TAG %d\n", chunkSize);
135 SkDebugf("Exiting early due to format limitations\n");
136 }
137 return kSuccess; // TODO: need to store size in bytes
138 break;
139 case SK_PICT_BUFFER_SIZE_TAG:
140 if (FLAGS_tags && !FLAGS_quiet) {
141 SkDebugf("SK_PICT_BUFFER_SIZE_TAG %d\n", chunkSize);
142 }
143 break;
144 default:
145 if (!FLAGS_quiet) {
146 SkDebugf("Unknown tag %d\n", chunkSize);
147 }
148 return kInvalidTag;
149 }
150
151 if (!stream.move(chunkSize)) {
152 if (!FLAGS_quiet) {
153 SkDebugf("seek error\n");
154 }
155 return kTruncatedFile;
156 }
157 }
158
159 return kSuccess;
160}