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 "public/fpdf_dataavail.h" | 7 #include "public/fpdf_dataavail.h" |
8 | 8 |
9 #include "core/include/fpdfapi/cpdf_document.h" | 9 #include "core/include/fpdfapi/cpdf_document.h" |
10 #include "core/include/fpdfapi/ipdf_data_avail.h" | 10 #include "core/include/fpdfapi/ipdf_data_avail.h" |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 pAvail->m_FileRead.Set(file); | 107 pAvail->m_FileRead.Set(file); |
108 pAvail->m_pDataAvail = | 108 pAvail->m_pDataAvail = |
109 IPDF_DataAvail::Create(&pAvail->m_FileAvail, &pAvail->m_FileRead); | 109 IPDF_DataAvail::Create(&pAvail->m_FileAvail, &pAvail->m_FileRead); |
110 return pAvail; | 110 return pAvail; |
111 } | 111 } |
112 | 112 |
113 DLLEXPORT void STDCALL FPDFAvail_Destroy(FPDF_AVAIL avail) { | 113 DLLEXPORT void STDCALL FPDFAvail_Destroy(FPDF_AVAIL avail) { |
114 delete (CFPDF_DataAvail*)avail; | 114 delete (CFPDF_DataAvail*)avail; |
115 } | 115 } |
116 | 116 |
117 DLLEXPORT int STDCALL | 117 DLLEXPORT int STDCALL FPDFAvail_IsDocAvail(FPDF_AVAIL avail, |
118 FPDFAvail_IsDocAvail(FPDF_AVAIL avail, FX_DOWNLOADHINTS* hints) { | 118 FX_DOWNLOADHINTS* hints) { |
119 if (!avail || !hints) | 119 if (!avail || !hints) |
120 return PDF_DATA_ERROR; | 120 return PDF_DATA_ERROR; |
121 CFPDF_DownloadHintsWrap hints_wrap(hints); | 121 CFPDF_DownloadHintsWrap hints_wrap(hints); |
122 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsDocAvail(&hints_wrap); | 122 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsDocAvail(&hints_wrap); |
123 } | 123 } |
124 | 124 |
125 DLLEXPORT FPDF_DOCUMENT STDCALL | 125 DLLEXPORT FPDF_DOCUMENT STDCALL |
126 FPDFAvail_GetDocument(FPDF_AVAIL avail, FPDF_BYTESTRING password) { | 126 FPDFAvail_GetDocument(FPDF_AVAIL avail, FPDF_BYTESTRING password) { |
127 CFPDF_DataAvail* pDataAvail = static_cast<CFPDF_DataAvail*>(avail); | 127 CFPDF_DataAvail* pDataAvail = static_cast<CFPDF_DataAvail*>(avail); |
128 if (!pDataAvail) | 128 if (!pDataAvail) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 return PDF_FORM_ERROR; | 163 return PDF_FORM_ERROR; |
164 CFPDF_DownloadHintsWrap hints_wrap(hints); | 164 CFPDF_DownloadHintsWrap hints_wrap(hints); |
165 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsFormAvail(&hints_wrap); | 165 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsFormAvail(&hints_wrap); |
166 } | 166 } |
167 | 167 |
168 DLLEXPORT int STDCALL FPDFAvail_IsLinearized(FPDF_AVAIL avail) { | 168 DLLEXPORT int STDCALL FPDFAvail_IsLinearized(FPDF_AVAIL avail) { |
169 if (!avail) | 169 if (!avail) |
170 return PDF_LINEARIZATION_UNKNOWN; | 170 return PDF_LINEARIZATION_UNKNOWN; |
171 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsLinearizedPDF(); | 171 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsLinearizedPDF(); |
172 } | 172 } |
OLD | NEW |