blob: 4b8153f9ab7d9fff4da5640c660eb51d76a45ed7 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000010#ifndef SkPDFStream_DEFINED
11#define SkPDFStream_DEFINED
12
13#include "SkPDFTypes.h"
14#include "SkRefCnt.h"
vandebo@chromium.orga09ef972010-12-01 22:17:20 +000015#include "SkStream.h"
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000016#include "SkTemplates.h"
17
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000018class SkPDFCatalog;
19
20/** \class SkPDFStream
21
vandebo@chromium.orgda912d62011-03-08 18:31:02 +000022 A stream object in a PDF. Note, all streams must be indirect objects (via
23 SkObjRef).
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000024*/
vandebo@chromium.orgd90c1412011-02-24 21:50:04 +000025class SkPDFStream : public SkPDFDict {
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000026public:
27 /** Create a PDF stream. A Length entry is automatically added to the
reed@google.com6ed82492011-06-24 21:01:17 +000028 * stream dictionary. The stream may be retained (stream->ref() may be
29 * called) so its contents must not be changed after calling this.
vandebo@chromium.org421d6442011-07-20 17:39:01 +000030 * @param data The data part of the stream.
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000031 */
vandebo@chromium.org421d6442011-07-20 17:39:01 +000032 explicit SkPDFStream(SkData* data);
33 /** Deprecated constructor. */
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000034 explicit SkPDFStream(SkStream* stream);
vandebo@chromium.org421d6442011-07-20 17:39:01 +000035 /** Create a PDF stream with the same content and dictionary entries
36 * as the passed one.
37 */
38 explicit SkPDFStream(const SkPDFStream& pdfStream);
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000039 virtual ~SkPDFStream();
40
41 // The SkPDFObject interface.
42 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
43 bool indirect);
44 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
45
vandebo@chromium.org421d6442011-07-20 17:39:01 +000046protected:
vandebo@chromium.org421d6442011-07-20 17:39:01 +000047 enum State {
48 kUnused_State, //!< The stream hasn't been requested yet.
49 kNoCompression_State, //!< The stream's been requested in an
50 // uncompressed form.
51 kCompressed_State, //!< The stream's already been compressed.
52 };
edisonn@google.comd9dfa182013-04-24 13:01:01 +000053
54 /* Create a PDF stream with no data. The setData method must be called to
55 * set the data.
56 */
57 SkPDFStream();
58
59 // Populate the stream dictionary. This method returns false if
60 // fSubstitute should be used.
61 virtual bool populate(SkPDFCatalog* catalog);
62
63 void setSubstitute(SkPDFStream* stream) {
64 fSubstitute.reset(stream);
65 }
66
67 SkPDFStream* getSubstitute() {
68 return fSubstitute.get();
69 }
70
71 void setData(SkStream* stream);
72
73 SkStream* getData() {
74 return fData.get();
75 }
76
77 void setState(State state) {
78 fState = state;
79 }
80
81 State getState() {
82 return fState;
83 }
84
85private:
vandebo@chromium.org421d6442011-07-20 17:39:01 +000086 // Indicates what form (or if) the stream has been requested.
87 State fState;
edisonn@google.comd9dfa182013-04-24 13:01:01 +000088
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000089 // TODO(vandebo): Use SkData (after removing deprecated constructor).
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +000090 SkAutoTUnref<SkStream> fData;
91 SkAutoTUnref<SkPDFStream> fSubstitute;
vandebo@chromium.orgd90c1412011-02-24 21:50:04 +000092
93 typedef SkPDFDict INHERITED;
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000094};
95
96#endif