OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PRINTING_PDF_PS_METAFILE_CAIRO_H_ | 5 #ifndef PRINTING_PDF_PS_METAFILE_CAIRO_H_ |
6 #define PRINTING_PDF_PS_METAFILE_CAIRO_H_ | 6 #define PRINTING_PDF_PS_METAFILE_CAIRO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/gtest_prod_util.h" | |
12 #include "printing/native_metafile_linux.h" | |
13 | 11 |
14 typedef struct _cairo_surface cairo_surface_t; | 12 typedef struct _cairo_surface cairo_surface_t; |
15 typedef struct _cairo cairo_t; | 13 typedef struct _cairo cairo_t; |
16 | 14 |
17 namespace base { | 15 namespace base { |
18 struct FileDescriptor; | 16 struct FileDescriptor; |
19 } | 17 } |
20 | 18 |
21 class FilePath; | 19 class FilePath; |
22 | 20 |
23 namespace printing { | 21 namespace printing { |
24 | 22 |
25 // This class uses Cairo graphics library to generate PostScript/PDF stream | 23 // This class uses Cairo graphics library to generate PostScript/PDF stream |
26 // and stores rendering results in a string buffer. | 24 // and stores rendering results in a string buffer. |
27 class PdfPsMetafile : public NativeMetafile { | 25 class PdfPsMetafile { |
28 public: | 26 public: |
29 virtual ~PdfPsMetafile(); | 27 PdfPsMetafile(); |
| 28 ~PdfPsMetafile(); |
30 | 29 |
31 // Initializes to a fresh new metafile. Returns true on success. | 30 // Initializes to a fresh new metafile. Returns true on success. |
32 // Note: Only call in the renderer to allocate rendering resources. | 31 // Note: Only call in the renderer to allocate rendering resources. |
33 virtual bool Init(); | 32 bool Init(); |
34 | 33 |
35 // Initializes a copy of metafile from PDF stream data. | 34 // Initializes a copy of metafile from PDF stream data. |
36 // Returns true on success. | 35 // Returns true on success. |
37 // |src_buffer| should point to the shared memory which stores PDF | 36 // |src_buffer| should point to the shared memory which stores PDF |
38 // contents generated in the renderer. | 37 // contents generated in the renderer. |
39 // Note: Only call in the browser to initialize |data_|. | 38 // Note: Only call in the browser to initialize |data_|. |
40 virtual bool Init(const void* src_buffer, uint32 src_buffer_size); | 39 bool Init(const void* src_buffer, uint32 src_buffer_size); |
41 | 40 |
42 // Sets raw PDF data for the document. This is used when a cairo drawing | 41 // Sets raw PDF data for the document. This is used when a cairo drawing |
43 // surface has already been created. This method will cause all subsequent | 42 // surface has already been created. This method will cause all subsequent |
44 // drawing on the surface to be discarded (in Close()). If Init() has not yet | 43 // drawing on the surface to be discarded (in Close()). If Init() has not yet |
45 // been called this method simply calls the second version of Init. | 44 // been called this method simply calls the second version of Init. |
46 virtual bool SetRawData(const void* src_buffer, uint32 src_buffer_size); | 45 bool SetRawData(const void* src_buffer, uint32 src_buffer_size); |
47 | 46 |
48 // Prepares a new cairo surface/context for rendering a new page. | 47 // Prepares a new cairo surface/context for rendering a new page. |
49 // The unit is in point (=1/72 in). | 48 // The unit is in point (=1/72 in). |
50 // Returns NULL when failed. | 49 // Returns NULL when failed. |
51 virtual cairo_t* StartPage(double width_in_points, | 50 cairo_t* StartPage(double width_in_points, |
52 double height_in_points, | 51 double height_in_points, |
53 double margin_top_in_points, | 52 double margin_top_in_points, |
54 double margin_right_in_points, | 53 double margin_right_in_points, |
55 double margin_bottom_in_points, | 54 double margin_bottom_in_points, |
56 double margin_left_in_points); | 55 double margin_left_in_points); |
57 | 56 |
58 // Destroys the surface and the context used in rendering current page. | 57 // Destroys the surface and the context used in rendering current page. |
59 // The results of current page will be appended into buffer |data_|. | 58 // The results of current page will be appended into buffer |data_|. |
60 // Returns true on success. | 59 // Returns true on success. |
61 virtual bool FinishPage(); | 60 bool FinishPage(); |
62 | 61 |
63 // Closes resulting PDF file. No further rendering is allowed. | 62 // Closes resulting PDF file. No further rendering is allowed. |
64 virtual void Close(); | 63 void Close(); |
65 | 64 |
66 // Returns size of PDF contents stored in buffer |data_|. | 65 // Returns size of PDF contents stored in buffer |data_|. |
67 // This function should ONLY be called after PDF file is closed. | 66 // This function should ONLY be called after PDF file is closed. |
68 virtual uint32 GetDataSize() const; | 67 uint32 GetDataSize() const; |
69 | 68 |
70 // Copies PDF contents stored in buffer |data_| into |dst_buffer|. | 69 // Copies PDF contents stored in buffer |data_| into |dst_buffer|. |
71 // This function should ONLY be called after PDF file is closed. | 70 // This function should ONLY be called after PDF file is closed. |
72 // Returns true only when success. | 71 // Returns true only when success. |
73 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const; | 72 bool GetData(void* dst_buffer, uint32 dst_buffer_size) const; |
74 | 73 |
75 // Saves PDF contents stored in buffer |data_| into the file | 74 // Saves PDF contents stored in buffer |data_| into the file |
76 // associated with |fd|. | 75 // associated with |fd|. |
77 // This function should ONLY be called after PDF file is closed. | 76 // This function should ONLY be called after PDF file is closed. |
78 virtual bool SaveTo(const base::FileDescriptor& fd) const; | 77 bool SaveTo(const base::FileDescriptor& fd) const; |
79 | 78 |
80 // The hardcoded margins, in points. These values are based on 72 dpi, | 79 // The hardcoded margins, in points. These values are based on 72 dpi, |
81 // with 0.25 margins on top, left, and right, and 0.56 on bottom. | 80 // with 0.25 margins on top, left, and right, and 0.56 on bottom. |
82 static const double kTopMarginInInch; | 81 static const double kTopMarginInInch; |
83 static const double kRightMarginInInch; | 82 static const double kRightMarginInInch; |
84 static const double kBottomMarginInInch; | 83 static const double kBottomMarginInInch; |
85 static const double kLeftMarginInInch; | 84 static const double kLeftMarginInInch; |
86 | 85 |
87 // Returns the PdfPsMetafile object that owns the given context. Returns NULL | 86 // Returns the PdfPsMetafile object that owns the given context. Returns NULL |
88 // if the context was not created by a PdfPsMetafile object. | 87 // if the context was not created by a PdfPsMetafile object. |
89 static PdfPsMetafile* FromCairoContext(cairo_t* context); | 88 static PdfPsMetafile* FromCairoContext(cairo_t* context); |
90 | 89 |
91 protected: | |
92 PdfPsMetafile(); | |
93 | |
94 private: | 90 private: |
95 friend class NativeMetafileFactory; | |
96 FRIEND_TEST_ALL_PREFIXES(PdfPsTest, Pdf); | |
97 | |
98 // Cleans up all resources. | 91 // Cleans up all resources. |
99 void CleanUpAll(); | 92 void CleanUpAll(); |
100 | 93 |
101 // Cairo surface and context for entire PDF file. | 94 // Cairo surface and context for entire PDF file. |
102 cairo_surface_t* surface_; | 95 cairo_surface_t* surface_; |
103 cairo_t* context_; | 96 cairo_t* context_; |
104 | 97 |
105 // Buffer stores PDF contents for entire PDF file. | 98 // Buffer stores PDF contents for entire PDF file. |
106 std::string data_; | 99 std::string data_; |
107 // Buffer stores raw PDF contents set by SetRawPageData. | 100 // Buffer stores raw PDF contents set by SetRawPageData. |
108 std::string raw_override_data_; | 101 std::string raw_override_data_; |
109 | 102 |
110 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile); | 103 DISALLOW_COPY_AND_ASSIGN(PdfPsMetafile); |
111 }; | 104 }; |
112 | 105 |
113 } // namespace printing | 106 } // namespace printing |
114 | 107 |
115 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_ | 108 #endif // PRINTING_PDF_PS_METAFILE_CAIRO_H_ |
OLD | NEW |