blob: 865492d58ccaa92cd37593e472e047cb8cc4ab8d [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"
Mike Reede7a58322017-12-20 14:09:20 -050011#include "SkPictureCommon.h"
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000012#include "SkStream.h"
robertphillips3552ba12016-02-25 10:58:49 -080013#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
68 if (!stream.readBool()) {
skia.committer@gmail.comade9a342014-03-04 03:02:32 +000069 // If we read true there's a picture playback object flattened
70 // in the file; if false, there isn't a playback, so we're done
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000071 // reading the file.
72 return kSuccess;
73 }
74
75 for (;;) {
76 uint32_t tag = stream.readU32();
77 if (SK_PICT_EOF_TAG == tag) {
78 break;
79 }
80
81 uint32_t chunkSize = stream.readU32();
82 size_t curPos = stream.getPosition();
83
84 // "move" doesn't error out when seeking beyond the end of file
85 // so we need a preemptive check here.
86 if (curPos+chunkSize > totStreamSize) {
87 if (!FLAGS_quiet) {
88 SkDebugf("truncated file\n");
89 }
90 return kTruncatedFile;
91 }
92
93 // Not all the tags store the chunk size (in bytes). Three
94 // of them store tag-specific size information (e.g., number of
95 // fonts) instead. This forces us to early exit when those
96 // chunks are encountered.
97 switch (tag) {
skia.committer@gmail.comade9a342014-03-04 03:02:32 +000098 case SK_PICT_READER_TAG:
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +000099 if (FLAGS_tags && !FLAGS_quiet) {
100 SkDebugf("SK_PICT_READER_TAG %d\n", chunkSize);
101 }
102 break;
103 case SK_PICT_FACTORY_TAG:
104 if (FLAGS_tags && !FLAGS_quiet) {
105 SkDebugf("SK_PICT_FACTORY_TAG %d\n", chunkSize);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000106 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000107 break;
robertphillips3552ba12016-02-25 10:58:49 -0800108 case SK_PICT_TYPEFACE_TAG: {
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000109 if (FLAGS_tags && !FLAGS_quiet) {
110 SkDebugf("SK_PICT_TYPEFACE_TAG %d\n", chunkSize);
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000111 }
robertphillips3552ba12016-02-25 10:58:49 -0800112
113 const int count = SkToInt(chunkSize);
114 for (int i = 0; i < count; i++) {
115 SkFontDescriptor desc;
116 if (!SkFontDescriptor::Deserialize(&stream, &desc)) {
117 if (!FLAGS_quiet) {
118 SkDebugf("File corruption in SkFontDescriptor\n");
119 }
120 return kInvalidTag;
121 }
122 }
123
124 // clear this since we've consumed all the typefaces
125 chunkSize = 0;
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000126 break;
robertphillips3552ba12016-02-25 10:58:49 -0800127 }
commit-bot@chromium.org6f4fb0f2014-03-03 19:18:39 +0000128 case SK_PICT_PICTURE_TAG:
129 if (FLAGS_tags && !FLAGS_quiet) {
130 SkDebugf("SK_PICT_PICTURE_TAG %d\n", chunkSize);
131 SkDebugf("Exiting early due to format limitations\n");
132 }
133 return kSuccess; // TODO: need to store size in bytes
134 break;
135 case SK_PICT_BUFFER_SIZE_TAG:
136 if (FLAGS_tags && !FLAGS_quiet) {
137 SkDebugf("SK_PICT_BUFFER_SIZE_TAG %d\n", chunkSize);
138 }
139 break;
140 default:
141 if (!FLAGS_quiet) {
142 SkDebugf("Unknown tag %d\n", chunkSize);
143 }
144 return kInvalidTag;
145 }
146
147 if (!stream.move(chunkSize)) {
148 if (!FLAGS_quiet) {
149 SkDebugf("seek error\n");
150 }
151 return kTruncatedFile;
152 }
153 }
154
155 return kSuccess;
156}