| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" | 7 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
| 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 if (!pFile->ReadBlock(buf, offset, kBufSize)) | 75 if (!pFile->ReadBlock(buf, offset, kBufSize)) |
| 76 return -1; | 76 return -1; |
| 77 | 77 |
| 78 if (memcmp(buf, "%PDF", 4) == 0) | 78 if (memcmp(buf, "%PDF", 4) == 0) |
| 79 return offset; | 79 return offset; |
| 80 } | 80 } |
| 81 return -1; | 81 return -1; |
| 82 } | 82 } |
| 83 | 83 |
| 84 int32_t GetDirectInteger(CPDF_Dictionary* pDict, const CFX_ByteStringC& key) { | 84 int32_t GetDirectInteger(CPDF_Dictionary* pDict, const CFX_ByteStringC& key) { |
| 85 CPDF_Number* pObj = ToNumber(pDict->GetElement(key)); | 85 CPDF_Number* pObj = ToNumber(pDict->GetObjectBy(key)); |
| 86 return pObj ? pObj->GetInteger() : 0; | 86 return pObj ? pObj->GetInteger() : 0; |
| 87 } | 87 } |
| 88 | 88 |
| 89 CFX_ByteString PDF_NameDecode(const CFX_ByteStringC& bstr) { | 89 CFX_ByteString PDF_NameDecode(const CFX_ByteStringC& bstr) { |
| 90 int size = bstr.GetLength(); | 90 int size = bstr.GetLength(); |
| 91 const FX_CHAR* pSrc = bstr.GetCStr(); | 91 const FX_CHAR* pSrc = bstr.GetCStr(); |
| 92 if (!FXSYS_memchr(pSrc, '#', size)) { | 92 if (!FXSYS_memchr(pSrc, '#', size)) { |
| 93 return bstr; | 93 return bstr; |
| 94 } | 94 } |
| 95 CFX_ByteString result; | 95 CFX_ByteString result; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 break; | 173 break; |
| 174 } | 174 } |
| 175 case CPDF_Object::REFERENCE: { | 175 case CPDF_Object::REFERENCE: { |
| 176 buf << " " << pObj->AsReference()->GetRefObjNum() << " 0 R "; | 176 buf << " " << pObj->AsReference()->GetRefObjNum() << " 0 R "; |
| 177 break; | 177 break; |
| 178 } | 178 } |
| 179 case CPDF_Object::ARRAY: { | 179 case CPDF_Object::ARRAY: { |
| 180 const CPDF_Array* p = pObj->AsArray(); | 180 const CPDF_Array* p = pObj->AsArray(); |
| 181 buf << "["; | 181 buf << "["; |
| 182 for (uint32_t i = 0; i < p->GetCount(); i++) { | 182 for (uint32_t i = 0; i < p->GetCount(); i++) { |
| 183 CPDF_Object* pElement = p->GetElement(i); | 183 CPDF_Object* pElement = p->GetObjectAt(i); |
| 184 if (pElement->GetObjNum()) { | 184 if (pElement->GetObjNum()) { |
| 185 buf << " " << pElement->GetObjNum() << " 0 R"; | 185 buf << " " << pElement->GetObjNum() << " 0 R"; |
| 186 } else { | 186 } else { |
| 187 buf << pElement; | 187 buf << pElement; |
| 188 } | 188 } |
| 189 } | 189 } |
| 190 buf << "]"; | 190 buf << "]"; |
| 191 break; | 191 break; |
| 192 } | 192 } |
| 193 case CPDF_Object::DICTIONARY: { | 193 case CPDF_Object::DICTIONARY: { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 214 buf.AppendBlock(acc.GetData(), acc.GetSize()); | 214 buf.AppendBlock(acc.GetData(), acc.GetSize()); |
| 215 buf << "\r\nendstream"; | 215 buf << "\r\nendstream"; |
| 216 break; | 216 break; |
| 217 } | 217 } |
| 218 default: | 218 default: |
| 219 ASSERT(FALSE); | 219 ASSERT(FALSE); |
| 220 break; | 220 break; |
| 221 } | 221 } |
| 222 return buf; | 222 return buf; |
| 223 } | 223 } |
| OLD | NEW |