aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPicture.cpp
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-12-13 15:16:43 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-13 15:16:53 +0000
commit2a3009931d7bb0f5ca31490c4cf19eef205e4e7a (patch)
tree0e560343dccf1aef830d0eb24ac35e3790f54f9f /src/core/SkPicture.cpp
parent76d917cef19aabfdc1247336f58237800bd71875 (diff)
Revert "impl SkSerial picture procs"
This reverts commit c8226728541fdd6434a7f1b97678246202b0edc5. Reason for revert: broke old skps Original change's description: > impl SkSerial picture procs > > The picture serialization code is a bit of a mess, with duplicated functions for streams and buffers. > Could not see how to fix that and land this at the same time, but I will try to circle back and > simplify if possible afterwards. > > Bug: skia: > Change-Id: I9053fdc476c60f483df013d021e248258181c199 > Reviewed-on: https://skia-review.googlesource.com/83943 > Reviewed-by: Florin Malita <fmalita@chromium.org> > Commit-Queue: Mike Reed <reed@google.com> TBR=mtklein@google.com,fmalita@chromium.org,reed@google.com Change-Id: I68ae019a286691b65cc373cb29c941d6620fd34a No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/84460 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'src/core/SkPicture.cpp')
-rw-r--r--src/core/SkPicture.cpp91
1 files changed, 9 insertions, 82 deletions
diff --git a/src/core/SkPicture.cpp b/src/core/SkPicture.cpp
index edac1349ed..5442738368 100644
--- a/src/core/SkPicture.cpp
+++ b/src/core/SkPicture.cpp
@@ -8,7 +8,6 @@
#include "SkAtomics.h"
#include "SkImageDeserializer.h"
#include "SkImageGenerator.h"
-#include "SkMathPriv.h"
#include "SkPicture.h"
#include "SkPictureCommon.h"
#include "SkPictureData.h"
@@ -176,25 +175,7 @@ sk_sp<SkPicture> SkPicture::MakeFromStream(SkStream* stream, const SkDeserialPro
sk_sp<SkPicture> SkPicture::MakeFromStream(SkStream* stream, const SkDeserialProcs& procs,
SkTypefacePlayback* typefaces) {
SkPictInfo info;
- if (!InternalOnly_StreamIsSKP(stream, &info)) {
- return nullptr;
- }
-
- // size should be 0, 1, or negative
- int32_t ssize = stream->readS32();
- if (ssize < 0) {
- if (!procs.fPictureProc) {
- return nullptr;
- }
- size_t size = sk_negate_to_size_t(ssize);
- auto data = SkData::MakeUninitialized(size);
- if (stream->read(data->writable_data(), size) != size) {
- return nullptr;
- }
- return procs.fPictureProc(data->data(), size, procs.fPictureCtx);
- }
- if (ssize != 1) {
- // 1 is the magic 'size' that means SkPictureData follows
+ if (!InternalOnly_StreamIsSKP(stream, &info) || !stream->readBool()) {
return nullptr;
}
std::unique_ptr<SkPictureData> data(
@@ -204,24 +185,10 @@ sk_sp<SkPicture> SkPicture::MakeFromStream(SkStream* stream, const SkDeserialPro
sk_sp<SkPicture> SkPicture::MakeFromBuffer(SkReadBuffer& buffer) {
SkPictInfo info;
- if (!InternalOnly_BufferIsSKP(&buffer, &info)) {
+ if (!InternalOnly_BufferIsSKP(&buffer, &info) || !buffer.readBool()) {
return nullptr;
}
- // size should be 0, 1, or negative
- int32_t ssize = buffer.read32();
- if (ssize < 0) {
- const SkDeserialProcs& procs = buffer.fProcs;
- if (!procs.fPictureProc) {
- return nullptr;
- }
- size_t size = sk_negate_to_size_t(ssize);
- return procs.fPictureProc(buffer.skip(size), size, procs.fPictureCtx);
- }
- if (ssize != 1) {
- // 1 is the magic 'size' that means SkPictureData follows
- return nullptr;
- }
- std::unique_ptr<SkPictureData> data(SkPictureData::CreateFromBuffer(buffer, info));
+ std::unique_ptr<SkPictureData> data(SkPictureData::CreateFromBuffer(buffer, info));
return Forwardport(info, data.get(), &buffer);
}
@@ -255,49 +222,17 @@ sk_sp<SkData> SkPicture::serialize(const SkSerialProcs& procs) const {
return stream.detachAsData();
}
-static sk_sp<SkData> custom_serialize(const SkPicture* picture, const SkSerialProcs& procs) {
- if (procs.fPictureProc) {
- auto data = procs.fPictureProc(const_cast<SkPicture*>(picture), procs.fPictureCtx);
- if (data) {
- size_t size = data->size();
- if (!sk_64_isS32(size) || size <= 1) {
- return SkData::MakeEmpty();
- }
- return data;
- }
- }
- return nullptr;
-}
-
-static bool write_pad32(SkWStream* stream, const void* data, size_t size) {
- if (!stream->write(data, size)) {
- return false;
- }
- if (size & 3) {
- uint32_t zero = 0;
- return stream->write(&zero, 4 - (size & 3));
- }
- return true;
-}
-
void SkPicture::serialize(SkWStream* stream, const SkSerialProcs& procs,
SkRefCntSet* typefaceSet) const {
SkPictInfo info = this->createHeader();
- stream->write(&info, sizeof(info));
-
- if (auto custom = custom_serialize(this, procs)) {
- int32_t size = SkToS32(custom->size());
- stream->write32(-size); // negative for custom format
- write_pad32(stream, custom->data(), size);
- return;
- }
-
std::unique_ptr<SkPictureData> data(this->backport());
+
+ stream->write(&info, sizeof(info));
if (data) {
- stream->write32(1); // special size meaning SkPictureData
+ stream->writeBool(true);
data->serialize(stream, procs, typefaceSet);
} else {
- stream->write32(0); // signal no content
+ stream->writeBool(false);
}
}
@@ -309,19 +244,11 @@ void SkPicture::flatten(SkWriteBuffer& buffer) const {
buffer.writeUInt(info.getVersion());
buffer.writeRect(info.fCullRect);
buffer.writeUInt(info.fFlags);
-
- if (auto custom = custom_serialize(this, buffer.fProcs)) {
- int32_t size = SkToS32(custom->size());
- buffer.write32(-size); // negative for custom format
- buffer.writePad32(custom->data(), size);
- return;
- }
-
if (data) {
- buffer.write32(1); // special size meaning SkPictureData
+ buffer.writeBool(true);
data->flatten(buffer);
} else {
- buffer.write32(0); // signal no content
+ buffer.writeBool(false);
}
}