2016-10-17 20:19:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "SkDebugCanvas.h"
|
|
|
|
#include "SkNullCanvas.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
|
|
|
|
#ifdef SK_BUILD_FOR_WIN
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
if (argc < 2) {
|
|
|
|
SkDebugf("Usage:\n %s SKP_FILE [DATA_URL]\n", argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
SkFILEStream input(argv[1]);
|
|
|
|
if (!input.isValid()) {
|
|
|
|
SkDebugf("Bad file: '%s'\n", argv[1]);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
sk_sp<SkPicture> pic = SkPicture::MakeFromStream(&input);
|
|
|
|
if (!pic) {
|
|
|
|
SkDebugf("Bad skp: '%s'\n", argv[1]);
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
SkISize size = pic->cullRect().roundOut().size();
|
|
|
|
SkDebugCanvas debugCanvas(size.width(), size.height());
|
|
|
|
pic->playback(&debugCanvas);
|
2016-11-12 14:06:55 +00:00
|
|
|
std::unique_ptr<SkCanvas> nullCanvas = SkMakeNullCanvas();
|
2016-10-17 20:19:02 +00:00
|
|
|
UrlDataManager dataManager(SkString("data"));
|
|
|
|
Json::Value json = debugCanvas.toJSON(
|
|
|
|
dataManager, debugCanvas.getSize(), nullCanvas.get());
|
|
|
|
if (argc > 2) {
|
|
|
|
if (UrlDataManager::UrlData* data =
|
|
|
|
dataManager.getDataFromUrl(SkString(argv[2]))) {
|
|
|
|
SkData* skdata = data->fData.get();
|
|
|
|
SkASSERT(skdata);
|
|
|
|
#ifdef SK_BUILD_FOR_WIN
|
|
|
|
fflush(stdout);
|
|
|
|
(void)_setmode(_fileno(stdout), _O_BINARY);
|
|
|
|
#endif
|
|
|
|
fwrite(skdata->data(), skdata->size(), 1, stdout);
|
|
|
|
} else {
|
|
|
|
SkDebugf("Bad data url.\n");
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Json::StyledStreamWriter(" ").write(std::cout, json);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|