blob: 6f7a08eb816104759d9264e981e1ef95cb50e131 [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:
47 /* Create a PDF stream with no data. The setData method must be called to
48 * set the data.
49 */
50 SkPDFStream();
51
52 void setData(SkStream* stream);
53
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000054private:
vandebo@chromium.org421d6442011-07-20 17:39:01 +000055 enum State {
56 kUnused_State, //!< The stream hasn't been requested yet.
57 kNoCompression_State, //!< The stream's been requested in an
58 // uncompressed form.
59 kCompressed_State, //!< The stream's already been compressed.
60 };
61 // Indicates what form (or if) the stream has been requested.
62 State fState;
63
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000064 // TODO(vandebo): Use SkData (after removing deprecated constructor).
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +000065 SkAutoTUnref<SkStream> fData;
66 SkAutoTUnref<SkPDFStream> fSubstitute;
vandebo@chromium.orgd90c1412011-02-24 21:50:04 +000067
68 typedef SkPDFDict INHERITED;
vandebo@chromium.org421d6442011-07-20 17:39:01 +000069
70 // Populate the stream dictionary. This method returns false if
71 // fSubstitute should be used.
72 bool populate(SkPDFCatalog* catalog);
vandebo@chromium.org8459d4e2010-09-24 22:25:30 +000073};
74
75#endif