edisonn@google.com | cf2cfa1 | 2013-08-21 16:31:37 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkPdfUtils_DEFINED |
| 9 | #define SkPdfUtils_DEFINED |
edisonn@google.com | b857a0c | 2013-06-25 20:45:40 +0000 | [diff] [blame] | 10 | |
edisonn@google.com | 3aa3555 | 2013-08-14 18:26:20 +0000 | [diff] [blame] | 11 | #include "SkMatrix.h" |
| 12 | #include "SkRect.h" |
edisonn@google.com | 33f11b6 | 2013-08-14 21:35:27 +0000 | [diff] [blame] | 13 | #include "SkPdfConfig.h" |
edisonn@google.com | 063d707 | 2013-08-16 15:05:08 +0000 | [diff] [blame] | 14 | #include "SkString.h" |
edisonn@google.com | b857a0c | 2013-06-25 20:45:40 +0000 | [diff] [blame] | 15 | |
edisonn@google.com | b857a0c | 2013-06-25 20:45:40 +0000 | [diff] [blame] | 16 | class SkPdfArray; |
edisonn@google.com | 3aa3555 | 2013-08-14 18:26:20 +0000 | [diff] [blame] | 17 | class SkPdfContext; |
| 18 | class SkCanvas; |
| 19 | class SkPdfNativeObject; |
| 20 | |
| 21 | // TODO(edisonn): temporary code, to report how much of the PDF we actually think we rendered. |
| 22 | enum SkPdfResult { |
| 23 | kOK_SkPdfResult, |
| 24 | kPartial_SkPdfResult, |
| 25 | kNYI_SkPdfResult, |
| 26 | kIgnoreError_SkPdfResult, |
| 27 | kError_SkPdfResult, |
| 28 | kUnsupported_SkPdfResult, |
| 29 | |
| 30 | kCount_SkPdfResult |
| 31 | }; |
| 32 | |
| 33 | struct NotOwnedString { |
| 34 | const unsigned char* fBuffer; |
| 35 | size_t fBytes; |
| 36 | |
| 37 | static void init(NotOwnedString* str) { |
| 38 | str->fBuffer = NULL; |
| 39 | str->fBytes = 0; |
| 40 | } |
| 41 | |
| 42 | static void init(NotOwnedString* str, const char* sz) { |
| 43 | str->fBuffer = (const unsigned char*)sz; |
| 44 | str->fBytes = strlen(sz); |
| 45 | } |
| 46 | |
| 47 | bool equals(const char* sz) { |
| 48 | return strncmp((const char*)fBuffer, sz, fBytes) == 0 && fBytes == strlen(sz); |
| 49 | |
| 50 | } |
| 51 | }; |
edisonn@google.com | b857a0c | 2013-06-25 20:45:40 +0000 | [diff] [blame] | 52 | |
edisonn@google.com | 063d707 | 2013-08-16 15:05:08 +0000 | [diff] [blame] | 53 | // TODO(edisonn): hack to make code generation simpler. Alternatively we can update the |
| 54 | // generate_code.py not to rely on != operator |
| 55 | bool operator !=(const SkString& first, const char* second); |
| 56 | |
edisonn@google.com | b857a0c | 2013-06-25 20:45:40 +0000 | [diff] [blame] | 57 | SkMatrix SkMatrixFromPdfArray(SkPdfArray* pdfArray); |
| 58 | |
edisonn@google.com | 3aa3555 | 2013-08-14 18:26:20 +0000 | [diff] [blame] | 59 | SkPdfResult doType3Char(SkPdfContext* pdfContext, SkCanvas* canvas, const SkPdfNativeObject* skobj, SkRect bBox, SkMatrix matrix, double textSize); |
| 60 | |
| 61 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 62 | // |
| 63 | // TRACE functions |
| 64 | // |
| 65 | #ifdef PDF_TRACE |
| 66 | void SkTraceMatrix(const SkMatrix& matrix, const char* sz); |
| 67 | void SkTraceRect(const SkRect& rect, const char* sz); |
| 68 | #else |
| 69 | #define SkTraceMatrix(a,b) |
| 70 | #define SkTraceRect(a,b) |
| 71 | #endif |
edisonn@google.com | b857a0c | 2013-06-25 20:45:40 +0000 | [diff] [blame] | 72 | |
edisonn@google.com | cf2cfa1 | 2013-08-21 16:31:37 +0000 | [diff] [blame^] | 73 | #endif // SkPdfUtils_DEFINED |