[Libreoffice-commits] core.git: include/vcl solenv/clang-format vcl/inc vcl/source xmlsecurity/inc xmlsecurity/qa xmlsecurity/source xmlsecurity/workben

Miklos Vajna vmiklos at collabora.co.uk
Wed Mar 21 13:29:38 UTC 2018


 include/vcl/filter/pdfdocument.hxx            |   37 
 solenv/clang-format/blacklist                 |    8 
 vcl/inc/pdfread.hxx                           |    2 
 vcl/source/filter/ipdf/pdfdocument.cxx        | 1037 ++++++++++++--------------
 vcl/source/filter/ipdf/pdfread.cxx            |   49 -
 xmlsecurity/inc/pdfio/pdfdocument.hxx         |    5 
 xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx |  139 ++-
 xmlsecurity/source/pdfio/pdfdocument.cxx      |   20 
 xmlsecurity/workben/pdfverify.cxx             |   28 
 9 files changed, 680 insertions(+), 645 deletions(-)

New commits:
commit 17407f808ed0ca5d65a98da186f7e2ab60dc641b
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Wed Mar 21 13:23:58 2018 +0100

    Turn on clang-format for these files
    
    I (tried to) keep these files consistent locally with astyle in the past,
    switching to clang-format makes sure that the recent problem with introducing
    inconsistencies in these files doesn't happen again.
    
    (On the flip side, it's great to see that now others also touch this
    PDF/pdfium code. :-) )
    
    Change-Id: I6065eab77c584197a82fe48e7d3e81b445106efd
    Reviewed-on: https://gerrit.libreoffice.org/51701
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/include/vcl/filter/pdfdocument.hxx b/include/vcl/filter/pdfdocument.hxx
index dfc13534bff8..8fd58dec647a 100644
--- a/include/vcl/filter/pdfdocument.hxx
+++ b/include/vcl/filter/pdfdocument.hxx
@@ -25,7 +25,6 @@ namespace vcl
 {
 namespace filter
 {
-
 class PDFTrailerElement;
 class PDFHexStringElement;
 class PDFReferenceElement;
@@ -67,9 +66,9 @@ class VCL_DLLPUBLIC PDFObjectElement : public PDFElement
     /// The stream of this object, used when this is an object stream.
     PDFStreamElement* m_pStreamElement;
     /// Objects of an object stream.
-    std::vector< std::unique_ptr<PDFObjectElement> > m_aStoredElements;
+    std::vector<std::unique_ptr<PDFObjectElement>> m_aStoredElements;
     /// Elements of an object in an object stream.
-    std::vector< std::unique_ptr<PDFElement> > m_aElements;
+    std::vector<std::unique_ptr<PDFElement>> m_aElements;
     /// Uncompressed buffer of an object in an object stream.
     std::unique_ptr<SvMemoryStream> m_pStreamBuffer;
     /// List of all reference elements inside this object's dictionary and
@@ -105,7 +104,7 @@ public:
     PDFArrayElement* GetArray() const;
     /// Parse objects stored in this object stream.
     void ParseStoredObjects();
-    std::vector< std::unique_ptr<PDFElement> >& GetStoredElements();
+    std::vector<std::unique_ptr<PDFElement>>& GetStoredElements();
     SvMemoryStream* GetStreamBuffer() const;
     void SetStreamBuffer(std::unique_ptr<SvMemoryStream>& pStreamBuffer);
     PDFDocument& GetDocument();
@@ -117,6 +116,7 @@ class VCL_DLLPUBLIC PDFArrayElement : public PDFElement
     std::vector<PDFElement*> m_aElements;
     /// The object that contains this array.
     PDFObjectElement* m_pObject;
+
 public:
     PDFArrayElement(PDFObjectElement* pObject);
     bool Read(SvStream& rStream) override;
@@ -136,7 +136,8 @@ class VCL_DLLPUBLIC PDFReferenceElement : public PDFElement
     PDFNumberElement& m_rObject;
 
 public:
-    PDFReferenceElement(PDFDocument& rDoc, PDFNumberElement& rObject, PDFNumberElement const& rGeneration);
+    PDFReferenceElement(PDFDocument& rDoc, PDFNumberElement& rObject,
+                        PDFNumberElement const& rGeneration);
     bool Read(SvStream& rStream) override;
     /// Assuming the reference points to a number object, return its value.
     double LookupNumber(SvStream& rStream) const;
@@ -171,6 +172,7 @@ class VCL_DLLPUBLIC PDFNameElement : public PDFElement
     sal_uInt64 m_nLocation = 0;
     /// Length till the next token start.
     sal_uInt64 m_nLength = 0;
+
 public:
     PDFNameElement();
     bool Read(SvStream& rStream) override;
@@ -195,8 +197,10 @@ public:
     PDFDictionaryElement();
     bool Read(SvStream& rStream) override;
 
-    static size_t Parse(const std::vector< std::unique_ptr<PDFElement> >& rElements, PDFElement* pThis, std::map<OString, PDFElement*>& rDictionary);
-    static PDFElement* Lookup(const std::map<OString, PDFElement*>& rDictionary, const OString& rKey);
+    static size_t Parse(const std::vector<std::unique_ptr<PDFElement>>& rElements,
+                        PDFElement* pThis, std::map<OString, PDFElement*>& rDictionary);
+    static PDFElement* Lookup(const std::map<OString, PDFElement*>& rDictionary,
+                              const OString& rKey);
     void SetKeyOffset(const OString& rKey, sal_uInt64 nOffset);
     sal_uInt64 GetKeyOffset(const OString& rKey) const;
     void SetKeyValueLength(const OString& rKey, sal_uInt64 nLength);
@@ -252,6 +256,7 @@ struct XRefEntry
 class VCL_DLLPUBLIC PDFHexStringElement : public PDFElement
 {
     OString m_aValue;
+
 public:
     bool Read(SvStream& rStream) override;
     const OString& GetValue() const;
@@ -261,6 +266,7 @@ public:
 class VCL_DLLPUBLIC PDFLiteralStringElement : public PDFElement
 {
     OString m_aValue;
+
 public:
     bool Read(SvStream& rStream) override;
     const OString& GetValue() const;
@@ -293,7 +299,7 @@ public:
 class VCL_DLLPUBLIC PDFDocument
 {
     /// This vector owns all elements.
-    std::vector< std::unique_ptr<PDFElement> > m_aElements;
+    std::vector<std::unique_ptr<PDFElement>> m_aElements;
     /// Object ID <-> object offset map.
     std::map<size_t, XRefEntry> m_aXRef;
     /// Object offset <-> Object pointer map.
@@ -317,11 +323,13 @@ class VCL_DLLPUBLIC PDFDocument
     /// Suggest a minimal, yet free signature ID to use for the next signature.
     sal_uInt32 GetNextSignature();
     /// Write the signature object as part of signing.
-    sal_Int32 WriteSignatureObject(const OUString& rDescription, bool bAdES, sal_uInt64& rLastByteRangeOffset, sal_Int64& rContentOffset);
+    sal_Int32 WriteSignatureObject(const OUString& rDescription, bool bAdES,
+                                   sal_uInt64& rLastByteRangeOffset, sal_Int64& rContentOffset);
     /// Write the appearance object as part of signing.
     sal_Int32 WriteAppearanceObject();
     /// Write the annot object as part of signing.
-    sal_Int32 WriteAnnotObject(PDFObjectElement const& rFirstPage, sal_Int32 nSignatureId, sal_Int32 nAppearanceId);
+    sal_Int32 WriteAnnotObject(PDFObjectElement const& rFirstPage, sal_Int32 nSignatureId,
+                               sal_Int32 nAppearanceId);
     /// Write the updated Page object as part of signing.
     bool WritePageObject(PDFObjectElement& rFirstPage, sal_Int32 nAnnotId);
     /// Write the updated Catalog object as part of signing.
@@ -345,7 +353,7 @@ public:
     /// Instead of all whitespace, just skip CR and NL characters.
     static void SkipLineBreaks(SvStream& rStream);
     size_t GetObjectOffset(size_t nIndex) const;
-    const std::vector< std::unique_ptr<PDFElement> >& GetElements();
+    const std::vector<std::unique_ptr<PDFElement>>& GetElements();
     std::vector<PDFObjectElement*> GetPages();
     /// Remember the end location of an EOF token.
     void PushBackEOF(size_t nOffset);
@@ -354,7 +362,9 @@ public:
     /// Access to the input document, even after the input stream is gone.
     SvMemoryStream& GetEditBuffer();
     /// Tokenize elements from current offset.
-    bool Tokenize(SvStream& rStream, TokenizeMode eMode, std::vector< std::unique_ptr<PDFElement> >& rElements, PDFObjectElement* pObjectElement);
+    bool Tokenize(SvStream& rStream, TokenizeMode eMode,
+                  std::vector<std::unique_ptr<PDFElement>>& rElements,
+                  PDFObjectElement* pObjectElement);
     /// Register an object (owned directly or indirectly by m_aElements) as a provider for a given ID.
     void SetIDObject(size_t nID, PDFObjectElement* pObject);
     //@}
@@ -364,7 +374,8 @@ public:
     /// Read elements from the start of the stream till its end.
     bool Read(SvStream& rStream);
     /// Sign the read document with xCertificate in the edit buffer.
-    bool Sign(const css::uno::Reference<css::security::XCertificate>& xCertificate, const OUString& rDescription, bool bAdES);
+    bool Sign(const css::uno::Reference<css::security::XCertificate>& xCertificate,
+              const OUString& rDescription, bool bAdES);
     /// Serializes the contents of the edit buffer.
     bool Write(SvStream& rStream);
     /// Get a list of signatures embedded into this document.
diff --git a/solenv/clang-format/blacklist b/solenv/clang-format/blacklist
index 90af1918c0af..29b995cbdc69 100644
--- a/solenv/clang-format/blacklist
+++ b/solenv/clang-format/blacklist
@@ -8009,7 +8009,6 @@ include/vcl/evntpost.hxx
 include/vcl/exceptiontypes.hxx
 include/vcl/extoutdevdata.hxx
 include/vcl/field.hxx
-include/vcl/filter/pdfdocument.hxx
 include/vcl/fixed.hxx
 include/vcl/fixedhyper.hxx
 include/vcl/floatwin.hxx
@@ -17652,7 +17651,6 @@ vcl/inc/outdev.h
 vcl/inc/outdevstatestack.hxx
 vcl/inc/pch/precompiled_vcl.cxx
 vcl/inc/pch/precompiled_vcl.hxx
-vcl/inc/pdfread.hxx
 vcl/inc/print.h
 vcl/inc/printdlg.hxx
 vcl/inc/printerinfomanager.hxx
@@ -18098,8 +18096,6 @@ vcl/source/filter/igif/decode.cxx
 vcl/source/filter/igif/decode.hxx
 vcl/source/filter/igif/gifread.cxx
 vcl/source/filter/igif/gifread.hxx
-vcl/source/filter/ipdf/pdfdocument.cxx
-vcl/source/filter/ipdf/pdfread.cxx
 vcl/source/filter/ixbm/xbmread.cxx
 vcl/source/filter/ixbm/xbmread.hxx
 vcl/source/filter/ixpm/rgbtable.hxx
@@ -19669,7 +19665,6 @@ xmlsecurity/inc/pch/precompiled_xsec_gpg.cxx
 xmlsecurity/inc/pch/precompiled_xsec_gpg.hxx
 xmlsecurity/inc/pch/precompiled_xsec_xmlsec.cxx
 xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx
-xmlsecurity/inc/pdfio/pdfdocument.hxx
 xmlsecurity/inc/resourcemanager.hxx
 xmlsecurity/inc/xmlsec-wrapper.h
 xmlsecurity/inc/xmlsec/errorcallback.hxx
@@ -19685,7 +19680,6 @@ xmlsecurity/inc/xsecfwdllapi.h
 xmlsecurity/inc/xsecgpgdllapi.h
 xmlsecurity/inc/xsecxmlsecdllapi.h
 xmlsecurity/qa/certext/SanCertExt.cxx
-xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
 xmlsecurity/qa/unit/signing/signing.cxx
 xmlsecurity/qa/unit/xmlsecurity-dialogs-test.cxx
 xmlsecurity/source/component/certificatecontainer.cxx
@@ -19736,7 +19730,6 @@ xmlsecurity/source/helper/xsecparser.cxx
 xmlsecurity/source/helper/xsecparser.hxx
 xmlsecurity/source/helper/xsecsign.cxx
 xmlsecurity/source/helper/xsecverify.cxx
-xmlsecurity/source/pdfio/pdfdocument.cxx
 xmlsecurity/source/xmlsec/biginteger.cxx
 xmlsecurity/source/xmlsec/certificateextension_certextn.cxx
 xmlsecurity/source/xmlsec/certificateextension_certextn.hxx
@@ -19789,4 +19782,3 @@ xmlsecurity/source/xmlsec/xmlsec_init.cxx
 xmlsecurity/source/xmlsec/xmlstreamio.cxx
 xmlsecurity/source/xmlsec/xsec_xmlsec.cxx
 xmlsecurity/source/xmlsec/xsec_xmlsec.hxx
-xmlsecurity/workben/pdfverify.cxx
diff --git a/vcl/inc/pdfread.hxx b/vcl/inc/pdfread.hxx
index a206fa986014..62305fde5d53 100644
--- a/vcl/inc/pdfread.hxx
+++ b/vcl/inc/pdfread.hxx
@@ -18,14 +18,12 @@ class Graphic;
 
 namespace vcl
 {
-
 /// Imports a PDF stream into rGraphic as a GDIMetaFile.
 VCL_DLLPUBLIC bool ImportPDF(SvStream& rStream, Bitmap& rBitmap,
                              css::uno::Sequence<sal_Int8>& rPdfData,
                              sal_uInt64 nPos = STREAM_SEEK_TO_BEGIN,
                              sal_uInt64 nSize = STREAM_SEEK_TO_END);
 VCL_DLLPUBLIC bool ImportPDF(SvStream& rStream, Graphic& rGraphic);
-
 }
 
 #endif // INCLUDED_VCL_SOURCE_FILTER_IPDF_PDFREAD_HXX
diff --git a/vcl/source/filter/ipdf/pdfdocument.cxx b/vcl/source/filter/ipdf/pdfdocument.cxx
index 98b6a2d8a596..28c49e53101d 100644
--- a/vcl/source/filter/ipdf/pdfdocument.cxx
+++ b/vcl/source/filter/ipdf/pdfdocument.cxx
@@ -33,7 +33,6 @@ namespace vcl
 {
 namespace filter
 {
-
 const int MAX_SIGNATURE_CONTENT_LENGTH = 50000;
 
 class PDFTrailerElement;
@@ -56,6 +55,7 @@ class PDFEndDictionaryElement : public PDFElement
 {
     /// Offset before the '>>' token.
     sal_uInt64 m_nLocation = 0;
+
 public:
     PDFEndDictionaryElement();
     bool Read(SvStream& rStream) override;
@@ -81,6 +81,7 @@ class PDFEndArrayElement : public PDFElement
 {
     /// Location before the ']' token.
     sal_uInt64 m_nOffset = 0;
+
 public:
     PDFEndArrayElement();
     bool Read(SvStream& rStream) override;
@@ -132,7 +133,8 @@ bool PDFDocument::RemoveSignature(size_t nPosition)
 
     if (aSignatures.size() != m_aEOFs.size() - 1)
     {
-        SAL_WARN("vcl.filter", "PDFDocument::RemoveSignature: no 1:1 mapping between signatures and incremental updates");
+        SAL_WARN("vcl.filter", "PDFDocument::RemoveSignature: no 1:1 mapping between signatures "
+                               "and incremental updates");
         return false;
     }
 
@@ -165,7 +167,9 @@ sal_uInt32 PDFDocument::GetNextSignature()
     return nRet + 1;
 }
 
-sal_Int32 PDFDocument::WriteSignatureObject(const OUString& rDescription, bool bAdES, sal_uInt64& rLastByteRangeOffset, sal_Int64& rContentOffset)
+sal_Int32 PDFDocument::WriteSignatureObject(const OUString& rDescription, bool bAdES,
+                                            sal_uInt64& rLastByteRangeOffset,
+                                            sal_Int64& rContentOffset)
 {
     // Write signature object.
     sal_Int32 nSignatureId = m_aXRef.size();
@@ -240,7 +244,8 @@ sal_Int32 PDFDocument::WriteAppearanceObject()
     return nAppearanceId;
 }
 
-sal_Int32 PDFDocument::WriteAnnotObject(PDFObjectElement const& rFirstPage, sal_Int32 nSignatureId, sal_Int32 nAppearanceId)
+sal_Int32 PDFDocument::WriteAnnotObject(PDFObjectElement const& rFirstPage, sal_Int32 nSignatureId,
+                                        sal_Int32 nAppearanceId)
 {
     // Decide what identifier to use for the new signature.
     sal_uInt32 nNextSignature = GetNextSignature();
@@ -341,7 +346,9 @@ bool PDFDocument::WritePageObject(PDFObjectElement& rFirstPage, sal_Int32 nAnnot
         if (!pAnnotsArray)
         {
             // No Annots key, just write the key with a single reference.
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + rFirstPage.GetDictionaryOffset(), rFirstPage.GetDictionaryLength());
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + rFirstPage.GetDictionaryOffset(),
+                                     rFirstPage.GetDictionaryLength());
             m_aEditBuffer.WriteCharPtr("/Annots[");
             m_aEditBuffer.WriteUInt32AsString(nAnnotId);
             m_aEditBuffer.WriteCharPtr(" 0 R]");
@@ -352,16 +359,23 @@ bool PDFDocument::WritePageObject(PDFObjectElement& rFirstPage, sal_Int32 nAnnot
             PDFDictionaryElement* pDictionary = rFirstPage.GetDictionary();
 
             // Offset right before the end of the Annots array.
-            sal_uInt64 nAnnotsEndOffset = pDictionary->GetKeyOffset("Annots") + pDictionary->GetKeyValueLength("Annots") - 1;
+            sal_uInt64 nAnnotsEndOffset = pDictionary->GetKeyOffset("Annots")
+                                          + pDictionary->GetKeyValueLength("Annots") - 1;
             // Length of beginning of the dictionary -> Annots end.
             sal_uInt64 nAnnotsBeforeEndLength = nAnnotsEndOffset - rFirstPage.GetDictionaryOffset();
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + rFirstPage.GetDictionaryOffset(), nAnnotsBeforeEndLength);
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + rFirstPage.GetDictionaryOffset(),
+                                     nAnnotsBeforeEndLength);
             m_aEditBuffer.WriteCharPtr(" ");
             m_aEditBuffer.WriteUInt32AsString(nAnnotId);
             m_aEditBuffer.WriteCharPtr(" 0 R");
             // Length of Annots end -> end of the dictionary.
-            sal_uInt64 nAnnotsAfterEndLength = rFirstPage.GetDictionaryOffset() + rFirstPage.GetDictionaryLength() - nAnnotsEndOffset;
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + nAnnotsEndOffset, nAnnotsAfterEndLength);
+            sal_uInt64 nAnnotsAfterEndLength = rFirstPage.GetDictionaryOffset()
+                                               + rFirstPage.GetDictionaryLength()
+                                               - nAnnotsEndOffset;
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + nAnnotsEndOffset,
+                                     nAnnotsAfterEndLength);
         }
         m_aEditBuffer.WriteCharPtr(">>");
         m_aEditBuffer.WriteCharPtr("\nendobj\n\n");
@@ -424,7 +438,8 @@ bool PDFDocument::WriteCatalogObject(sal_Int32 nAnnotId, PDFReferenceElement*& p
 
         if (!pAcroFormObject->Lookup("Fields"))
         {
-            SAL_WARN("vcl.filter", "PDFDocument::Sign: AcroForm object without required Fields key");
+            SAL_WARN("vcl.filter",
+                     "PDFDocument::Sign: AcroForm object without required Fields key");
             return false;
         }
 
@@ -436,7 +451,9 @@ bool PDFDocument::WriteCatalogObject(sal_Int32 nAnnotId, PDFReferenceElement*& p
         }
 
         // Offset right before the end of the Fields array.
-        sal_uInt64 nFieldsEndOffset = pAcroFormDictionary->GetKeyOffset("Fields") + pAcroFormDictionary->GetKeyValueLength("Fields") - strlen("]");
+        sal_uInt64 nFieldsEndOffset = pAcroFormDictionary->GetKeyOffset("Fields")
+                                      + pAcroFormDictionary->GetKeyValueLength("Fields")
+                                      - strlen("]");
         // Length of beginning of the object dictionary -> Fields end.
         sal_uInt64 nFieldsBeforeEndLength = nFieldsEndOffset;
         if (pStreamBuffer)
@@ -445,7 +462,9 @@ bool PDFDocument::WriteCatalogObject(sal_Int32 nAnnotId, PDFReferenceElement*& p
         {
             nFieldsBeforeEndLength -= pAcroFormObject->GetDictionaryOffset();
             m_aEditBuffer.WriteCharPtr("<<");
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + pAcroFormObject->GetDictionaryOffset(), nFieldsBeforeEndLength);
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + pAcroFormObject->GetDictionaryOffset(),
+                                     nFieldsBeforeEndLength);
         }
 
         // Append our reference at the end of the Fields array.
@@ -457,12 +476,18 @@ bool PDFDocument::WriteCatalogObject(sal_Int32 nAnnotId, PDFReferenceElement*& p
         if (pStreamBuffer)
         {
             sal_uInt64 nFieldsAfterEndLength = pStreamBuffer->GetSize() - nFieldsEndOffset;
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(pStreamBuffer->GetData()) + nFieldsEndOffset, nFieldsAfterEndLength);
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(pStreamBuffer->GetData())
+                                         + nFieldsEndOffset,
+                                     nFieldsAfterEndLength);
         }
         else
         {
-            sal_uInt64 nFieldsAfterEndLength = pAcroFormObject->GetDictionaryOffset() + pAcroFormObject->GetDictionaryLength() - nFieldsEndOffset;
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + nFieldsEndOffset, nFieldsAfterEndLength);
+            sal_uInt64 nFieldsAfterEndLength = pAcroFormObject->GetDictionaryOffset()
+                                               + pAcroFormObject->GetDictionaryLength()
+                                               - nFieldsEndOffset;
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + nFieldsEndOffset,
+                                     nFieldsAfterEndLength);
             m_aEditBuffer.WriteCharPtr(">>");
         }
 
@@ -480,7 +505,9 @@ bool PDFDocument::WriteCatalogObject(sal_Int32 nAnnotId, PDFReferenceElement*& p
         if (!pAcroFormDictionary)
         {
             // No AcroForm key, assume no signatures.
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + pCatalog->GetDictionaryOffset(), pCatalog->GetDictionaryLength());
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + pCatalog->GetDictionaryOffset(),
+                                     pCatalog->GetDictionaryLength());
             m_aEditBuffer.WriteCharPtr("/AcroForm<</Fields[\n");
             m_aEditBuffer.WriteUInt32AsString(nAnnotId);
             m_aEditBuffer.WriteCharPtr(" 0 R\n]/SigFlags 3>>\n");
@@ -503,16 +530,22 @@ bool PDFDocument::WriteCatalogObject(sal_Int32 nAnnotId, PDFReferenceElement*& p
             }
 
             // Offset right before the end of the Fields array.
-            sal_uInt64 nFieldsEndOffset = pAcroFormDictionary->GetKeyOffset("Fields") + pAcroFormDictionary->GetKeyValueLength("Fields") - 1;
+            sal_uInt64 nFieldsEndOffset = pAcroFormDictionary->GetKeyOffset("Fields")
+                                          + pAcroFormDictionary->GetKeyValueLength("Fields") - 1;
             // Length of beginning of the Catalog dictionary -> Fields end.
             sal_uInt64 nFieldsBeforeEndLength = nFieldsEndOffset - pCatalog->GetDictionaryOffset();
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + pCatalog->GetDictionaryOffset(), nFieldsBeforeEndLength);
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + pCatalog->GetDictionaryOffset(),
+                                     nFieldsBeforeEndLength);
             m_aEditBuffer.WriteCharPtr(" ");
             m_aEditBuffer.WriteUInt32AsString(nAnnotId);
             m_aEditBuffer.WriteCharPtr(" 0 R");
             // Length of Fields end -> end of the Catalog dictionary.
-            sal_uInt64 nFieldsAfterEndLength = pCatalog->GetDictionaryOffset() + pCatalog->GetDictionaryLength() - nFieldsEndOffset;
-            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData()) + nFieldsEndOffset, nFieldsAfterEndLength);
+            sal_uInt64 nFieldsAfterEndLength = pCatalog->GetDictionaryOffset()
+                                               + pCatalog->GetDictionaryLength() - nFieldsEndOffset;
+            m_aEditBuffer.WriteBytes(static_cast<const char*>(m_aEditBuffer.GetData())
+                                         + nFieldsEndOffset,
+                                     nFieldsAfterEndLength);
         }
         m_aEditBuffer.WriteCharPtr(">>\nendobj\n\n");
     }
@@ -559,15 +592,15 @@ void PDFDocument::WriteXRef(sal_uInt64 nXRefOffset, PDFReferenceElement const* p
             unsigned char nType = 0;
             switch (rEntry.m_eType)
             {
-            case XRefEntryType::FREE:
-                nType = 0;
-                break;
-            case XRefEntryType::NOT_COMPRESSED:
-                nType = 1;
-                break;
-            case XRefEntryType::COMPRESSED:
-                nType = 2;
-                break;
+                case XRefEntryType::FREE:
+                    nType = 0;
+                    break;
+                case XRefEntryType::NOT_COMPRESSED:
+                    nType = 1;
+                    break;
+                case XRefEntryType::COMPRESSED:
+                    nType = 2;
+                    break;
             }
             aOrigLine[nPos++] = nType;
 
@@ -598,7 +631,8 @@ void PDFDocument::WriteXRef(sal_uInt64 nXRefOffset, PDFReferenceElement const* p
         }
 
         m_aEditBuffer.WriteUInt32AsString(nXRefStreamId);
-        m_aEditBuffer.WriteCharPtr(" 0 obj\n<</DecodeParms<</Columns 5/Predictor 12>>/Filter/FlateDecode");
+        m_aEditBuffer.WriteCharPtr(
+            " 0 obj\n<</DecodeParms<</Columns 5/Predictor 12>>/Filter/FlateDecode");
 
         // ID.
         auto pID = dynamic_cast<PDFArrayElement*>(m_pXRefStream->Lookup("ID"));
@@ -751,14 +785,16 @@ void PDFDocument::WriteXRef(sal_uInt64 nXRefOffset, PDFReferenceElement const* p
     }
 }
 
-bool PDFDocument::Sign(const uno::Reference<security::XCertificate>& xCertificate, const OUString& rDescription, bool bAdES)
+bool PDFDocument::Sign(const uno::Reference<security::XCertificate>& xCertificate,
+                       const OUString& rDescription, bool bAdES)
 {
     m_aEditBuffer.Seek(STREAM_SEEK_TO_END);
     m_aEditBuffer.WriteCharPtr("\n");
 
     sal_uInt64 nSignatureLastByteRangeOffset = 0;
     sal_Int64 nSignatureContentOffset = 0;
-    sal_Int32 nSignatureId = WriteSignatureObject(rDescription, bAdES, nSignatureLastByteRangeOffset, nSignatureContentOffset);
+    sal_Int32 nSignatureId = WriteSignatureObject(
+        rDescription, bAdES, nSignatureLastByteRangeOffset, nSignatureContentOffset);
 
     sal_Int32 nAppearanceId = WriteAppearanceObject();
 
@@ -796,7 +832,8 @@ bool PDFDocument::Sign(const uno::Reference<security::XCertificate>& xCertificat
     // Finalize the signature, now that we know the total file size.
     // Calculate the length of the last byte range.
     sal_uInt64 nFileEnd = m_aEditBuffer.Tell();
-    sal_Int64 nLastByteRangeLength = nFileEnd - (nSignatureContentOffset + MAX_SIGNATURE_CONTENT_LENGTH + 1);
+    sal_Int64 nLastByteRangeLength
+        = nFileEnd - (nSignatureContentOffset + MAX_SIGNATURE_CONTENT_LENGTH + 1);
     // Write the length to the buffer.
     m_aEditBuffer.Seek(nSignatureLastByteRangeOffset);
     OStringBuffer aByteRangeBuffer;
@@ -847,7 +884,9 @@ bool PDFDocument::Write(SvStream& rStream)
     return rStream.good();
 }
 
-bool PDFDocument::Tokenize(SvStream& rStream, TokenizeMode eMode, std::vector< std::unique_ptr<PDFElement> >& rElements, PDFObjectElement* pObjectElement)
+bool PDFDocument::Tokenize(SvStream& rStream, TokenizeMode eMode,
+                           std::vector<std::unique_ptr<PDFElement>>& rElements,
+                           PDFObjectElement* pObjectElement)
 {
     // Last seen object token.
     PDFObjectElement* pObject = pObjectElement;
@@ -873,322 +912,346 @@ bool PDFDocument::Tokenize(SvStream& rStream, TokenizeMode eMode, std::vector< s
 
         switch (ch)
         {
-        case '%':
-        {
-            auto pComment = new PDFCommentElement(*this);
-            rElements.push_back(std::unique_ptr<PDFElement>(pComment));
-            rStream.SeekRel(-1);
-            if (!rElements.back()->Read(rStream))
-            {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFCommentElement::Read() failed");
-                return false;
-            }
-            if (eMode == TokenizeMode::EOF_TOKEN && !m_aEOFs.empty() && m_aEOFs.back() == rStream.Tell())
-            {
-                // Found EOF and partial parsing requested, we're done.
-                return true;
-            }
-            break;
-        }
-        case '<':
-        {
-            // Dictionary or hex string.
-            rStream.ReadChar(ch);
-            rStream.SeekRel(-2);
-            if (ch == '<')
-            {
-                rElements.push_back(std::unique_ptr<PDFElement>(new PDFDictionaryElement()));
-                ++nDictionaryDepth;
-            }
-            else
-                rElements.push_back(std::unique_ptr<PDFElement>(new PDFHexStringElement));
-            if (!rElements.back()->Read(rStream))
-            {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFDictionaryElement::Read() failed");
-                return false;
-            }
-            break;
-        }
-        case '>':
-        {
-            rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndDictionaryElement()));
-            --nDictionaryDepth;
-            rStream.SeekRel(-1);
-            if (!rElements.back()->Read(rStream))
-            {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFEndDictionaryElement::Read() failed");
-                return false;
-            }
-            break;
-        }
-        case '[':
-        {
-            auto pArr = new PDFArrayElement(pObject);
-            rElements.push_back(std::unique_ptr<PDFElement>(pArr));
-            if (nDictionaryDepth == 0 && nArrayDepth == 0)
+            case '%':
             {
-                // The array is attached directly, inform the object.
-                pArray = pArr;
-                if (pObject)
+                auto pComment = new PDFCommentElement(*this);
+                rElements.push_back(std::unique_ptr<PDFElement>(pComment));
+                rStream.SeekRel(-1);
+                if (!rElements.back()->Read(rStream))
                 {
-                    pObject->SetArray(pArray);
-                    pObject->SetArrayOffset(rStream.Tell());
+                    SAL_WARN("vcl.filter",
+                             "PDFDocument::Tokenize: PDFCommentElement::Read() failed");
+                    return false;
                 }
+                if (eMode == TokenizeMode::EOF_TOKEN && !m_aEOFs.empty()
+                    && m_aEOFs.back() == rStream.Tell())
+                {
+                    // Found EOF and partial parsing requested, we're done.
+                    return true;
+                }
+                break;
             }
-            ++nArrayDepth;
-            rStream.SeekRel(-1);
-            if (!rElements.back()->Read(rStream))
+            case '<':
             {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFArrayElement::Read() failed");
-                return false;
-            }
-            break;
-        }
-        case ']':
-        {
-            rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndArrayElement()));
-            --nArrayDepth;
-            if (nArrayDepth == 0)
-                pArray = nullptr;
-            rStream.SeekRel(-1);
-            if (nDictionaryDepth == 0 && nArrayDepth == 0)
-            {
-                if (pObject)
+                // Dictionary or hex string.
+                rStream.ReadChar(ch);
+                rStream.SeekRel(-2);
+                if (ch == '<')
                 {
-                    pObject->SetArrayLength(rStream.Tell() - pObject->GetArrayOffset());
+                    rElements.push_back(std::unique_ptr<PDFElement>(new PDFDictionaryElement()));
+                    ++nDictionaryDepth;
+                }
+                else
+                    rElements.push_back(std::unique_ptr<PDFElement>(new PDFHexStringElement));
+                if (!rElements.back()->Read(rStream))
+                {
+                    SAL_WARN("vcl.filter",
+                             "PDFDocument::Tokenize: PDFDictionaryElement::Read() failed");
+                    return false;
                 }
+                break;
             }
-            if (!rElements.back()->Read(rStream))
+            case '>':
             {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFEndArrayElement::Read() failed");
-                return false;
+                rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndDictionaryElement()));
+                --nDictionaryDepth;
+                rStream.SeekRel(-1);
+                if (!rElements.back()->Read(rStream))
+                {
+                    SAL_WARN("vcl.filter",
+                             "PDFDocument::Tokenize: PDFEndDictionaryElement::Read() failed");
+                    return false;
+                }
+                break;
             }
-            break;
-        }
-        case '/':
-        {
-            auto pNameElement = new PDFNameElement();
-            rElements.push_back(std::unique_ptr<PDFElement>(pNameElement));
-            rStream.SeekRel(-1);
-            if (!pNameElement->Read(rStream))
+            case '[':
             {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFNameElement::Read() failed");
-                return false;
+                auto pArr = new PDFArrayElement(pObject);
+                rElements.push_back(std::unique_ptr<PDFElement>(pArr));
+                if (nDictionaryDepth == 0 && nArrayDepth == 0)
+                {
+                    // The array is attached directly, inform the object.
+                    pArray = pArr;
+                    if (pObject)
+                    {
+                        pObject->SetArray(pArray);
+                        pObject->SetArrayOffset(rStream.Tell());
+                    }
+                }
+                ++nArrayDepth;
+                rStream.SeekRel(-1);
+                if (!rElements.back()->Read(rStream))
+                {
+                    SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFArrayElement::Read() failed");
+                    return false;
+                }
+                break;
             }
-            if (pObject && pObjectKey && pObjectKey->GetValue() == "Type" && pNameElement->GetValue() == "ObjStm")
-                pObjectStream = pObject;
-            else
-                pObjectKey = pNameElement;
-            break;
-        }
-        case '(':
-        {
-            rElements.push_back(std::unique_ptr<PDFElement>(new PDFLiteralStringElement));
-            rStream.SeekRel(-1);
-            if (!rElements.back()->Read(rStream))
+            case ']':
             {
-                SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFLiteralStringElement::Read() failed");
-                return false;
+                rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndArrayElement()));
+                --nArrayDepth;
+                if (nArrayDepth == 0)
+                    pArray = nullptr;
+                rStream.SeekRel(-1);
+                if (nDictionaryDepth == 0 && nArrayDepth == 0)
+                {
+                    if (pObject)
+                    {
+                        pObject->SetArrayLength(rStream.Tell() - pObject->GetArrayOffset());
+                    }
+                }
+                if (!rElements.back()->Read(rStream))
+                {
+                    SAL_WARN("vcl.filter",
+                             "PDFDocument::Tokenize: PDFEndArrayElement::Read() failed");
+                    return false;
+                }
+                break;
             }
-            break;
-        }
-        default:
-        {
-            if (rtl::isAsciiDigit(static_cast<unsigned char>(ch)) || ch == '-')
+            case '/':
             {
-                // Numbering object: an integer or a real.
-                auto pNumberElement = new PDFNumberElement();
-                rElements.push_back(std::unique_ptr<PDFElement>(pNumberElement));
+                auto pNameElement = new PDFNameElement();
+                rElements.push_back(std::unique_ptr<PDFElement>(pNameElement));
                 rStream.SeekRel(-1);
-                if (!pNumberElement->Read(rStream))
+                if (!pNameElement->Read(rStream))
                 {
-                    SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFNumberElement::Read() failed");
+                    SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFNameElement::Read() failed");
                     return false;
                 }
-                if (bInStartXRef)
+                if (pObject && pObjectKey && pObjectKey->GetValue() == "Type"
+                    && pNameElement->GetValue() == "ObjStm")
+                    pObjectStream = pObject;
+                else
+                    pObjectKey = pNameElement;
+                break;
+            }
+            case '(':
+            {
+                rElements.push_back(std::unique_ptr<PDFElement>(new PDFLiteralStringElement));
+                rStream.SeekRel(-1);
+                if (!rElements.back()->Read(rStream))
                 {
-                    bInStartXRef = false;
-                    m_aStartXRefs.push_back(pNumberElement->GetValue());
-
-                    auto it = m_aOffsetObjects.find(pNumberElement->GetValue());
-                    if (it != m_aOffsetObjects.end())
-                        m_pXRefStream = it->second;
+                    SAL_WARN("vcl.filter",
+                             "PDFDocument::Tokenize: PDFLiteralStringElement::Read() failed");
+                    return false;
                 }
-                else if (bInObject && !nDictionaryDepth && !nArrayDepth && pObject)
-                    // Number element inside an object, but outside a
-                    // dictionary / array: remember it.
-                    pObject->SetNumberElement(pNumberElement);
+                break;
             }
-            else if (rtl::isAsciiAlpha(static_cast<unsigned char>(ch)))
+            default:
             {
-                // Possible keyword, like "obj".
-                rStream.SeekRel(-1);
-                OString aKeyword = ReadKeyword(rStream);
-
-                bool bObj = aKeyword == "obj";
-                if (bObj || aKeyword == "R")
+                if (rtl::isAsciiDigit(static_cast<unsigned char>(ch)) || ch == '-')
                 {
-                    size_t nElements = rElements.size();
-                    if (nElements < 2)
+                    // Numbering object: an integer or a real.
+                    auto pNumberElement = new PDFNumberElement();
+                    rElements.push_back(std::unique_ptr<PDFElement>(pNumberElement));
+                    rStream.SeekRel(-1);
+                    if (!pNumberElement->Read(rStream))
                     {
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: expected at least two tokens before 'obj' or 'R' keyword");
+                        SAL_WARN("vcl.filter",
+                                 "PDFDocument::Tokenize: PDFNumberElement::Read() failed");
                         return false;
                     }
-
-                    auto pObjectNumber = dynamic_cast<PDFNumberElement*>(rElements[nElements - 2].get());
-                    auto pGenerationNumber = dynamic_cast<PDFNumberElement*>(rElements[nElements - 1].get());
-                    if (!pObjectNumber || !pGenerationNumber)
+                    if (bInStartXRef)
                     {
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: missing object or generation number before 'obj' or 'R' keyword");
-                        return false;
-                    }
+                        bInStartXRef = false;
+                        m_aStartXRefs.push_back(pNumberElement->GetValue());
 
-                    if (bObj)
-                    {
-                        pObject = new PDFObjectElement(*this, pObjectNumber->GetValue(), pGenerationNumber->GetValue());
-                        rElements.push_back(std::unique_ptr<PDFElement>(pObject));
-                        m_aOffsetObjects[pObjectNumber->GetLocation()] = pObject;
-                        m_aIDObjects[pObjectNumber->GetValue()] = pObject;
-                        bInObject = true;
-                    }
-                    else
-                    {
-                        auto pReference = new PDFReferenceElement(*this, *pObjectNumber, *pGenerationNumber);
-                        rElements.push_back(std::unique_ptr<PDFElement>(pReference));
-                        if (pArray)
-                            // Reference is part of a direct (non-dictionary) array, inform the array.
-                            pArray->PushBack(rElements.back().get());
-                        if (bInObject && nDictionaryDepth > 0 && pObject)
-                            // Inform the object about a new in-dictionary reference.
-                            pObject->AddDictionaryReference(pReference);
-                    }
-                    if (!rElements.back()->Read(rStream))
-                    {
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFElement::Read() failed");
-                        return false;
+                        auto it = m_aOffsetObjects.find(pNumberElement->GetValue());
+                        if (it != m_aOffsetObjects.end())
+                            m_pXRefStream = it->second;
                     }
+                    else if (bInObject && !nDictionaryDepth && !nArrayDepth && pObject)
+                        // Number element inside an object, but outside a
+                        // dictionary / array: remember it.
+                        pObject->SetNumberElement(pNumberElement);
                 }
-                else if (aKeyword == "stream")
+                else if (rtl::isAsciiAlpha(static_cast<unsigned char>(ch)))
                 {
-                    // Look up the length of the stream from the parent object's dictionary.
-                    size_t nLength = 0;
-                    for (size_t nElement = 0; nElement < rElements.size(); ++nElement)
+                    // Possible keyword, like "obj".
+                    rStream.SeekRel(-1);
+                    OString aKeyword = ReadKeyword(rStream);
+
+                    bool bObj = aKeyword == "obj";
+                    if (bObj || aKeyword == "R")
                     {
-                        // Iterate in reverse order.
-                        size_t nIndex = rElements.size() - nElement - 1;
-                        PDFElement* pElement = rElements[nIndex].get();
-                        auto pObj = dynamic_cast<PDFObjectElement*>(pElement);
-                        if (!pObj)
-                            continue;
-
-                        PDFElement* pLookup = pObj->Lookup("Length");
-                        auto pReference = dynamic_cast<PDFReferenceElement*>(pLookup);
-                        if (pReference)
+                        size_t nElements = rElements.size();
+                        if (nElements < 2)
                         {
-                            // Length is provided as a reference.
-                            nLength = pReference->LookupNumber(rStream);
-                            break;
+                            SAL_WARN("vcl.filter", "PDFDocument::Tokenize: expected at least two "
+                                                   "tokens before 'obj' or 'R' keyword");
+                            return false;
                         }
 
-                        auto pNumber = dynamic_cast<PDFNumberElement*>(pLookup);
-                        if (pNumber)
+                        auto pObjectNumber
+                            = dynamic_cast<PDFNumberElement*>(rElements[nElements - 2].get());
+                        auto pGenerationNumber
+                            = dynamic_cast<PDFNumberElement*>(rElements[nElements - 1].get());
+                        if (!pObjectNumber || !pGenerationNumber)
                         {
-                            // Length is provided directly.
-                            nLength = pNumber->GetValue();
-                            break;
+                            SAL_WARN("vcl.filter", "PDFDocument::Tokenize: missing object or "
+                                                   "generation number before 'obj' or 'R' keyword");
+                            return false;
                         }
 
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: found no Length key for stream keyword");
-                        return false;
+                        if (bObj)
+                        {
+                            pObject = new PDFObjectElement(*this, pObjectNumber->GetValue(),
+                                                           pGenerationNumber->GetValue());
+                            rElements.push_back(std::unique_ptr<PDFElement>(pObject));
+                            m_aOffsetObjects[pObjectNumber->GetLocation()] = pObject;
+                            m_aIDObjects[pObjectNumber->GetValue()] = pObject;
+                            bInObject = true;
+                        }
+                        else
+                        {
+                            auto pReference = new PDFReferenceElement(*this, *pObjectNumber,
+                                                                      *pGenerationNumber);
+                            rElements.push_back(std::unique_ptr<PDFElement>(pReference));
+                            if (pArray)
+                                // Reference is part of a direct (non-dictionary) array, inform the array.
+                                pArray->PushBack(rElements.back().get());
+                            if (bInObject && nDictionaryDepth > 0 && pObject)
+                                // Inform the object about a new in-dictionary reference.
+                                pObject->AddDictionaryReference(pReference);
+                        }
+                        if (!rElements.back()->Read(rStream))
+                        {
+                            SAL_WARN("vcl.filter",
+                                     "PDFDocument::Tokenize: PDFElement::Read() failed");
+                            return false;
+                        }
                     }
-
-                    PDFDocument::SkipLineBreaks(rStream);
-                    auto pStreamElement = new PDFStreamElement(nLength);
-                    if (pObject)
-                        pObject->SetStream(pStreamElement);
-                    rElements.push_back(std::unique_ptr<PDFElement>(pStreamElement));
-                    if (!rElements.back()->Read(rStream))
+                    else if (aKeyword == "stream")
                     {
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFStreamElement::Read() failed");
-                        return false;
+                        // Look up the length of the stream from the parent object's dictionary.
+                        size_t nLength = 0;
+                        for (size_t nElement = 0; nElement < rElements.size(); ++nElement)
+                        {
+                            // Iterate in reverse order.
+                            size_t nIndex = rElements.size() - nElement - 1;
+                            PDFElement* pElement = rElements[nIndex].get();
+                            auto pObj = dynamic_cast<PDFObjectElement*>(pElement);
+                            if (!pObj)
+                                continue;
+
+                            PDFElement* pLookup = pObj->Lookup("Length");
+                            auto pReference = dynamic_cast<PDFReferenceElement*>(pLookup);
+                            if (pReference)
+                            {
+                                // Length is provided as a reference.
+                                nLength = pReference->LookupNumber(rStream);
+                                break;
+                            }
+
+                            auto pNumber = dynamic_cast<PDFNumberElement*>(pLookup);
+                            if (pNumber)
+                            {
+                                // Length is provided directly.
+                                nLength = pNumber->GetValue();
+                                break;
+                            }
+
+                            SAL_WARN(
+                                "vcl.filter",
+                                "PDFDocument::Tokenize: found no Length key for stream keyword");
+                            return false;
+                        }
+
+                        PDFDocument::SkipLineBreaks(rStream);
+                        auto pStreamElement = new PDFStreamElement(nLength);
+                        if (pObject)
+                            pObject->SetStream(pStreamElement);
+                        rElements.push_back(std::unique_ptr<PDFElement>(pStreamElement));
+                        if (!rElements.back()->Read(rStream))
+                        {
+                            SAL_WARN("vcl.filter",
+                                     "PDFDocument::Tokenize: PDFStreamElement::Read() failed");
+                            return false;
+                        }
                     }
-                }
-                else if (aKeyword == "endstream")
-                {
-                    rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndStreamElement));
-                    if (!rElements.back()->Read(rStream))
+                    else if (aKeyword == "endstream")
                     {
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFEndStreamElement::Read() failed");
-                        return false;
+                        rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndStreamElement));
+                        if (!rElements.back()->Read(rStream))
+                        {
+                            SAL_WARN("vcl.filter",
+                                     "PDFDocument::Tokenize: PDFEndStreamElement::Read() failed");
+                            return false;
+                        }
                     }
-                }
-                else if (aKeyword == "endobj")
-                {
-                    rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndObjectElement));
-                    if (!rElements.back()->Read(rStream))
+                    else if (aKeyword == "endobj")
                     {
-                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: PDFEndObjectElement::Read() failed");
-                        return false;
+                        rElements.push_back(std::unique_ptr<PDFElement>(new PDFEndObjectElement));
+                        if (!rElements.back()->Read(rStream))
+                        {
+                            SAL_WARN("vcl.filter",
+                                     "PDFDocument::Tokenize: PDFEndObjectElement::Read() failed");
+                            return false;
+                        }
+                        if (eMode == TokenizeMode::END_OF_OBJECT)
+                        {
+                            // Found endobj and only object parsing was requested, we're done.
+                            return true;
+                        }
+
+                        if (pObjectStream)
+                        {
+                            // We're at the end of an object stream, parse the stored objects.
+                            pObjectStream->ParseStoredObjects();
+                            pObjectStream = nullptr;
+                            pObjectKey = nullptr;
+                        }
+                        bInObject = false;
                     }
-                    if (eMode == TokenizeMode::END_OF_OBJECT)
+                    else if (aKeyword == "true" || aKeyword == "false")
+                        rElements.push_back(std::unique_ptr<PDFElement>(
+                            new PDFBooleanElement(aKeyword.toBoolean())));
+                    else if (aKeyword == "null")
+                        rElements.push_back(std::unique_ptr<PDFElement>(new PDFNullElement));
+                    else if (aKeyword == "xref")
+                        // Allow 'f' and 'n' keywords.
+                        bInXRef = true;
+                    else if (bInXRef && (aKeyword == "f" || aKeyword == "n"))
                     {
-                        // Found endobj and only object parsing was requested, we're done.
-                        return true;
                     }
-
-                    if (pObjectStream)
+                    else if (aKeyword == "trailer")
                     {
-                        // We're at the end of an object stream, parse the stored objects.
-                        pObjectStream->ParseStoredObjects();
-                        pObjectStream = nullptr;
-                        pObjectKey = nullptr;
-                    }
-                    bInObject = false;
-                }
-                else if (aKeyword == "true" || aKeyword == "false")
-                    rElements.push_back(std::unique_ptr<PDFElement>(new PDFBooleanElement(aKeyword.toBoolean())));
-                else if (aKeyword == "null")
-                    rElements.push_back(std::unique_ptr<PDFElement>(new PDFNullElement));
-                else if (aKeyword == "xref")
-                    // Allow 'f' and 'n' keywords.
-                    bInXRef = true;
-                else if (bInXRef && (aKeyword == "f" || aKeyword == "n"))
-                {
-                }
-                else if (aKeyword == "trailer")
-                {
-                    auto pTrailer = new PDFTrailerElement(*this);
+                        auto pTrailer = new PDFTrailerElement(*this);
 
-                    // Make it possible to find this trailer later by offset.
-                    pTrailer->Read(rStream);
-                    m_aOffsetTrailers[pTrailer->GetLocation()] = pTrailer;
+                        // Make it possible to find this trailer later by offset.
+                        pTrailer->Read(rStream);
+                        m_aOffsetTrailers[pTrailer->GetLocation()] = pTrailer;
 
-                    // When reading till the first EOF token only, remember
-                    // just the first trailer token.
-                    if (eMode != TokenizeMode::EOF_TOKEN || !m_pTrailer)
-                        m_pTrailer = pTrailer;
-                    rElements.push_back(std::unique_ptr<PDFElement>(pTrailer));
-                }
-                else if (aKeyword == "startxref")
-                {
-                    bInStartXRef = true;
+                        // When reading till the first EOF token only, remember
+                        // just the first trailer token.
+                        if (eMode != TokenizeMode::EOF_TOKEN || !m_pTrailer)
+                            m_pTrailer = pTrailer;
+                        rElements.push_back(std::unique_ptr<PDFElement>(pTrailer));
+                    }
+                    else if (aKeyword == "startxref")
+                    {
+                        bInStartXRef = true;
+                    }
+                    else
+                    {
+                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: unexpected '"
+                                                   << aKeyword << "' keyword at byte position "
+                                                   << rStream.Tell());
+                        return false;
+                    }
                 }
                 else
                 {
-                    SAL_WARN("vcl.filter", "PDFDocument::Tokenize: unexpected '" << aKeyword << "' keyword at byte position " << rStream.Tell());
-                    return false;
-                }
-            }
-            else
-            {
-                if (!rtl::isAsciiWhiteSpace(static_cast<unsigned char>(ch)))
-                {
-                    SAL_WARN("vcl.filter", "PDFDocument::Tokenize: unexpected character: " << ch << " at byte position " << rStream.Tell());
-                    return false;
+                    if (!rtl::isAsciiWhiteSpace(static_cast<unsigned char>(ch)))
+                    {
+                        SAL_WARN("vcl.filter", "PDFDocument::Tokenize: unexpected character: "
+                                                   << ch << " at byte position " << rStream.Tell());
+                        return false;
+                    }
                 }
+                break;
             }
-            break;
-        }
         }
     }
 
@@ -1206,7 +1269,8 @@ bool PDFDocument::Read(SvStream& rStream)
     std::vector<sal_Int8> aHeader(5);
     rStream.Seek(0);
     rStream.ReadBytes(aHeader.data(), aHeader.size());
-    if (aHeader[0] != '%' || aHeader[1] != 'P' || aHeader[2] != 'D' || aHeader[3] != 'F' || aHeader[4] != '-')
+    if (aHeader[0] != '%' || aHeader[1] != 'P' || aHeader[2] != 'D' || aHeader[3] != 'F'
+        || aHeader[4] != '-')
     {
         SAL_WARN("vcl.filter", "PDFDocument::Read: header mismatch");
         return false;
@@ -1332,7 +1396,8 @@ size_t PDFDocument::FindStartXRef(SvStream& rStream)
     rStream.SeekRel(itLastValid - aBuf.begin() + aPrefix.getLength());
     if (rStream.eof())
     {
-        SAL_WARN("vcl.filter", "PDFDocument::FindStartXRef: unexpected end of stream after startxref");
+        SAL_WARN("vcl.filter",
+                 "PDFDocument::FindStartXRef: unexpected end of stream after startxref");
         return 0;
     }
 
@@ -1415,7 +1480,8 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
 
     if (pFilter->GetValue() != "FlateDecode")
     {
-        SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: unexpected filter: " << pFilter->GetValue());
+        SAL_WARN("vcl.filter",
+                 "PDFDocument::ReadXRefStream: unexpected filter: " << pFilter->GetValue());
         return;
     }
 
@@ -1474,7 +1540,8 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
                 auto pFirstObject = dynamic_cast<PDFNumberElement*>(rIndexElements[i]);
                 if (!pFirstObject)
                 {
-                    SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: Index has no first object");
+                    SAL_WARN("vcl.filter",
+                             "PDFDocument::ReadXRefStream: Index has no first object");
                     return;
                 }
                 nFirstObject = pFirstObject->GetValue();
@@ -1484,7 +1551,8 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
             auto pNumberOfObjects = dynamic_cast<PDFNumberElement*>(rIndexElements[i]);
             if (!pNumberOfObjects)
             {
-                SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: Index has no number of objects");
+                SAL_WARN("vcl.filter",
+                         "PDFDocument::ReadXRefStream: Index has no number of objects");
                 return;
             }
             aFirstObjects.push_back(nFirstObject);
@@ -1517,7 +1585,8 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
 
     if (nPredictor > 1 && nLineLength - 1 != nColumns)
     {
-        SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: /DecodeParms/Columns is inconsistent with /W");
+        SAL_WARN("vcl.filter",
+                 "PDFDocument::ReadXRefStream: /DecodeParms/Columns is inconsistent with /W");
         return;
     }
 
@@ -1538,7 +1607,9 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
             aStream.ReadBytes(aOrigLine.data(), aOrigLine.size());
             if (nPredictor > 1 && aOrigLine[0] + 10 != nPredictor)
             {
-                SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: in-stream predictor is inconsistent with /DecodeParms/Predictor for object #" << nIndex);
+                SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: in-stream predictor is "
+                                       "inconsistent with /DecodeParms/Predictor for object #"
+                                           << nIndex);
                 return;
             }
 
@@ -1546,17 +1617,18 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
             {
                 switch (nPredictor)
                 {
-                case 1:
-                    // No prediction.
-                    break;
-                case 12:
-                    // PNG prediction: up (on all rows).
-                    aFilteredLine[i] = aFilteredLine[i] + aOrigLine[i];
-                    break;
-                default:
-                    SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: unexpected predictor: " << nPredictor);
-                    return;
-                    break;
+                    case 1:
+                        // No prediction.
+                        break;
+                    case 12:
+                        // PNG prediction: up (on all rows).
+                        aFilteredLine[i] = aFilteredLine[i] + aOrigLine[i];
+                        break;
+                    default:
+                        SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: unexpected predictor: "
+                                                   << nPredictor);
+                        return;
+                        break;
                 }
             }
 
@@ -1597,15 +1669,15 @@ void PDFDocument::ReadXRefStream(SvStream& rStream)
                     XRefEntry aEntry;
                     switch (nType)
                     {
-                    case 0:
-                        aEntry.m_eType = XRefEntryType::FREE;
-                        break;
-                    case 1:
-                        aEntry.m_eType = XRefEntryType::NOT_COMPRESSED;
-                        break;
-                    case 2:
-                        aEntry.m_eType = XRefEntryType::COMPRESSED;
-                        break;
+                        case 0:
+                            aEntry.m_eType = XRefEntryType::FREE;
+                            break;
+                        case 1:
+                            aEntry.m_eType = XRefEntryType::NOT_COMPRESSED;
+                            break;
+                        case 2:
+                            aEntry.m_eType = XRefEntryType::COMPRESSED;
+                            break;
                     }
                     aEntry.m_nOffset = nStreamOffset;
                     m_aXRef[nIndex] = aEntry;
@@ -1732,17 +1804,15 @@ size_t PDFDocument::GetObjectOffset(size_t nIndex) const
     auto it = m_aXRef.find(nIndex);
     if (it == m_aXRef.end() || it->second.m_eType == XRefEntryType::COMPRESSED)
     {
-        SAL_WARN("vcl.filter", "PDFDocument::GetObjectOffset: wanted to look up index #" << nIndex << ", but failed");
+        SAL_WARN("vcl.filter", "PDFDocument::GetObjectOffset: wanted to look up index #"
+                                   << nIndex << ", but failed");
         return 0;
     }
 
     return it->second.m_nOffset;
 }
 
-const std::vector< std::unique_ptr<PDFElement> >& PDFDocument::GetElements()
-{
-    return m_aElements;
-}
+const std::vector<std::unique_ptr<PDFElement>>& PDFDocument::GetElements() { return m_aElements; }
 
 /// Visits the page tree recursively, looking for page objects.
 static void visitPages(PDFObjectElement* pPages, std::vector<PDFObjectElement*>& rRet)
@@ -1780,7 +1850,6 @@ std::vector<PDFObjectElement*> PDFDocument::GetPages()
 
     PDFReferenceElement* pRoot = nullptr;
 
-
     PDFTrailerElement* pTrailer = nullptr;
     if (!m_aTrailerOffsets.empty())
     {
@@ -1812,7 +1881,8 @@ std::vector<PDFObjectElement*> PDFDocument::GetPages()
     PDFObjectElement* pPages = pCatalog->LookupObject("Pages");
     if (!pPages)
     {
-        SAL_WARN("vcl.filter", "PDFDocument::GetPages: catalog (obj " << pCatalog->GetObjectValue() << ") has no pages");
+        SAL_WARN("vcl.filter", "PDFDocument::GetPages: catalog (obj " << pCatalog->GetObjectValue()
+                                                                      << ") has no pages");
         return aRet;
     }
 
@@ -1821,10 +1891,7 @@ std::vector<PDFObjectElement*> PDFDocument::GetPages()
     return aRet;
 }
 
-void PDFDocument::PushBackEOF(size_t nOffset)
-{
-    m_aEOFs.push_back(nOffset);
-}
+void PDFDocument::PushBackEOF(size_t nOffset) { m_aEOFs.push_back(nOffset); }
 
 std::vector<PDFObjectElement*> PDFDocument::GetSignatureWidgets()
 {
@@ -1924,16 +1991,14 @@ bool PDFNumberElement::Read(SvStream& rStream)
     {
         return false;
     }
-    if (!rtl::isAsciiDigit(static_cast<unsigned char>(ch)) && ch != '-'
-            && ch != '.')
+    if (!rtl::isAsciiDigit(static_cast<unsigned char>(ch)) && ch != '-' && ch != '.')
     {
         rStream.SeekRel(-1);
         return false;
     }
     while (!rStream.eof())
     {
-        if (!rtl::isAsciiDigit(static_cast<unsigned char>(ch)) && ch != '-'
-                && ch != '.')
+        if (!rtl::isAsciiDigit(static_cast<unsigned char>(ch)) && ch != '-' && ch != '.')
         {
             rStream.SeekRel(-1);
             m_nLength = rStream.Tell() - m_nOffset;
@@ -1948,29 +2013,15 @@ bool PDFNumberElement::Read(SvStream& rStream)
     return false;
 }
 
-sal_uInt64 PDFNumberElement::GetLocation() const
-{
-    return m_nOffset;
-}
+sal_uInt64 PDFNumberElement::GetLocation() const { return m_nOffset; }
 
-sal_uInt64 PDFNumberElement::GetLength() const
-{
-    return m_nLength;
-}
+sal_uInt64 PDFNumberElement::GetLength() const { return m_nLength; }
 
-PDFBooleanElement::PDFBooleanElement(bool /*bValue*/)
-{
-}
+PDFBooleanElement::PDFBooleanElement(bool /*bValue*/) {}
 
-bool PDFBooleanElement::Read(SvStream& /*rStream*/)
-{
-    return true;
-}
+bool PDFBooleanElement::Read(SvStream& /*rStream*/) { return true; }
 
-bool PDFNullElement::Read(SvStream& /*rStream*/)
-{
-    return true;
-}
+bool PDFNullElement::Read(SvStream& /*rStream*/) { return true; }
 
 bool PDFHexStringElement::Read(SvStream& rStream)
 {
@@ -1989,7 +2040,8 @@ bool PDFHexStringElement::Read(SvStream& rStream)
         if (ch == '>')
         {
             m_aValue = aBuf.makeStringAndClear();
-            SAL_INFO("vcl.filter", "PDFHexStringElement::Read: m_aValue length is " << m_aValue.getLength());
+            SAL_INFO("vcl.filter",
+                     "PDFHexStringElement::Read: m_aValue length is " << m_aValue.getLength());
             return true;
         }
         aBuf.append(ch);
@@ -1999,10 +2051,7 @@ bool PDFHexStringElement::Read(SvStream& rStream)
     return false;
 }
 
-const OString& PDFHexStringElement::GetValue() const
-{
-    return m_aValue;
-}
+const OString& PDFHexStringElement::GetValue() const { return m_aValue; }
 
 bool PDFLiteralStringElement::Read(SvStream& rStream)
 {
@@ -2032,7 +2081,8 @@ bool PDFLiteralStringElement::Read(SvStream& rStream)
         {
             // ')' of the outermost '(' is reached.
             m_aValue = aBuf.makeStringAndClear();
-            SAL_INFO("vcl.filter", "PDFLiteralStringElement::Read: m_aValue is '" << m_aValue << "'");
+            SAL_INFO("vcl.filter",
+                     "PDFLiteralStringElement::Read: m_aValue is '" << m_aValue << "'");
             return true;
         }
         aBuf.append(ch);
@@ -2043,10 +2093,7 @@ bool PDFLiteralStringElement::Read(SvStream& rStream)
     return false;
 }
 
-const OString& PDFLiteralStringElement::GetValue() const
-{
-    return m_aValue;
-}
+const OString& PDFLiteralStringElement::GetValue() const { return m_aValue; }
 
 PDFTrailerElement::PDFTrailerElement(PDFDocument& rDoc)
     : m_rDoc(rDoc)
@@ -2067,40 +2114,36 @@ PDFElement* PDFTrailerElement::Lookup(const OString& rDictionaryKey)
     return PDFDictionaryElement::Lookup(m_aDictionary, rDictionaryKey);
 }
 
-sal_uInt64 PDFTrailerElement::GetLocation() const
-{
-    return m_nOffset;
-}
+sal_uInt64 PDFTrailerElement::GetLocation() const { return m_nOffset; }
 
-double PDFNumberElement::GetValue() const
-{
-    return m_fValue;
-}
+double PDFNumberElement::GetValue() const { return m_fValue; }
 
 PDFObjectElement::PDFObjectElement(PDFDocument& rDoc, double fObjectValue, double fGenerationValue)
-    : m_rDoc(rDoc),
-      m_fObjectValue(fObjectValue),
-      m_fGenerationValue(fGenerationValue),
-      m_pNumberElement(nullptr),
-      m_nDictionaryOffset(0),
-      m_nDictionaryLength(0),
-      m_pDictionaryElement(nullptr),
-      m_nArrayOffset(0),
-      m_nArrayLength(0),
-      m_pArrayElement(nullptr),
-      m_pStreamElement(nullptr)
+    : m_rDoc(rDoc)
+    , m_fObjectValue(fObjectValue)
+    , m_fGenerationValue(fGenerationValue)
+    , m_pNumberElement(nullptr)
+    , m_nDictionaryOffset(0)
+    , m_nDictionaryLength(0)
+    , m_pDictionaryElement(nullptr)
+    , m_nArrayOffset(0)
+    , m_nArrayLength(0)
+    , m_pArrayElement(nullptr)
+    , m_pStreamElement(nullptr)
 {
 }
 
 bool PDFObjectElement::Read(SvStream& /*rStream*/)
 {
-    SAL_INFO("vcl.filter", "PDFObjectElement::Read: " << m_fObjectValue << " " << m_fGenerationValue << " obj");
+    SAL_INFO("vcl.filter",
+             "PDFObjectElement::Read: " << m_fObjectValue << " " << m_fGenerationValue << " obj");
     return true;
 }
 
 PDFDictionaryElement::PDFDictionaryElement() = default;
 
-size_t PDFDictionaryElement::Parse(const std::vector< std::unique_ptr<PDFElement> >& rElements, PDFElement* pThis, std::map<OString, PDFElement*>& rDictionary)
+size_t PDFDictionaryElement::Parse(const std::vector<std::unique_ptr<PDFElement>>& rElements,
+                                   PDFElement* pThis, std::map<OString, PDFElement*>& rDictionary)
 {
     // The index of last parsed element, in case of nested dictionaries.
     size_t nRet = 0;
@@ -2168,7 +2211,8 @@ size_t PDFDictionaryElement::Parse(const std::vector< std::unique_ptr<PDFElement
             {
                 // Last dictionary end, track length and stop parsing.
                 if (pThisObject)
-                    pThisObject->SetDictionaryLength(pEndDictionary->GetLocation() - nDictionaryOffset);
+                    pThisObject->SetDictionaryLength(pEndDictionary->GetLocation()
+                                                     - nDictionaryOffset);
                 nRet = i;
                 break;
             }
@@ -2184,7 +2228,8 @@ size_t PDFDictionaryElement::Parse(const std::vector< std::unique_ptr<PDFElement
                 if (pThisDictionary)
                 {
                     pThisDictionary->SetKeyOffset(aName, nNameOffset);
-                    pThisDictionary->SetKeyValueLength(aName, pNumber->GetLocation() + pNumber->GetLength() - nNameOffset);
+                    pThisDictionary->SetKeyValueLength(
+                        aName, pNumber->GetLocation() + pNumber->GetLength() - nNameOffset);
                 }
                 aName.clear();
                 aNumbers.clear();
@@ -2211,7 +2256,8 @@ size_t PDFDictionaryElement::Parse(const std::vector< std::unique_ptr<PDFElement
                     if (pThisDictionary)
                     {
                         pThisDictionary->SetKeyOffset(aName, nNameOffset);
-                        pThisDictionary->SetKeyValueLength(aName, pName->GetLocation() + pName->GetLength() - nNameOffset);
+                        pThisDictionary->SetKeyValueLength(
+                            aName, pName->GetLocation() + pName->GetLength() - nNameOffset);
                     }
                     aName.clear();
                 }
@@ -2257,7 +2303,8 @@ size_t PDFDictionaryElement::Parse(const std::vector< std::unique_ptr<PDFElement
                 if (pThisDictionary)
                 {
                     pThisDictionary->SetKeyOffset(aName, nNameOffset);
-                    pThisDictionary->SetKeyValueLength(aName, pReference->GetOffset() - nNameOffset);
+                    pThisDictionary->SetKeyValueLength(aName,
+                                                       pReference->GetOffset() - nNameOffset);
                 }
                 aName.clear();
             }
@@ -2330,7 +2377,8 @@ size_t PDFDictionaryElement::Parse(const std::vector< std::unique_ptr<PDFElement
     return nRet;
 }
 
-PDFElement* PDFDictionaryElement::Lookup(const std::map<OString, PDFElement*>& rDictionary, const OString& rKey)
+PDFElement* PDFDictionaryElement::Lookup(const std::map<OString, PDFElement*>& rDictionary,
+                                         const OString& rKey)
 {
     auto it = rDictionary.find(rKey);
     if (it == rDictionary.end())
@@ -2341,10 +2389,13 @@ PDFElement* PDFDictionaryElement::Lookup(const std::map<OString, PDFElement*>& r
 
 PDFObjectElement* PDFDictionaryElement::LookupObject(const OString& rDictionaryKey)
 {
-    auto pKey = dynamic_cast<PDFReferenceElement*>(PDFDictionaryElement::Lookup(m_aItems, rDictionaryKey));
+    auto pKey = dynamic_cast<PDFReferenceElement*>(
+        PDFDictionaryElement::Lookup(m_aItems, rDictionaryKey));
     if (!pKey)
     {
-        SAL_WARN("vcl.filter", "PDFDictionaryElement::LookupObject: no such key with reference value: " << rDictionaryKey);
+        SAL_WARN("vcl.filter",
+                 "PDFDictionaryElement::LookupObject: no such key with reference value: "
+                     << rDictionaryKey);
         return nullptr;
     }
 
@@ -2376,17 +2427,15 @@ PDFObjectElement* PDFObjectElement::LookupObject(const OString& rDictionaryKey)
     auto pKey = dynamic_cast<PDFReferenceElement*>(Lookup(rDictionaryKey));
     if (!pKey)
     {
-        SAL_WARN("vcl.filter", "PDFObjectElement::LookupObject: no such key with reference value: " << rDictionaryKey);
+        SAL_WARN("vcl.filter", "PDFObjectElement::LookupObject: no such key with reference value: "
+                                   << rDictionaryKey);
         return nullptr;
     }
 
     return pKey->LookupObject();
 }
 
-double PDFObjectElement::GetObjectValue() const
-{
-    return m_fObjectValue;
-}
+double PDFObjectElement::GetObjectValue() const { return m_fObjectValue; }
 
 void PDFObjectElement::SetDictionaryOffset(sal_uInt64 nDictionaryOffset)
 {
@@ -2401,15 +2450,9 @@ sal_uInt64 PDFObjectElement::GetDictionaryOffset()
     return m_nDictionaryOffset;
 }
 
-void PDFObjectElement::SetArrayOffset(sal_uInt64 nArrayOffset)
-{
-    m_nArrayOffset = nArrayOffset;
-}
+void PDFObjectElement::SetArrayOffset(sal_uInt64 nArrayOffset) { m_nArrayOffset = nArrayOffset; }
 
-sal_uInt64 PDFObjectElement::GetArrayOffset()
-{
-    return m_nArrayOffset;
-}
+sal_uInt64 PDFObjectElement::GetArrayOffset() { return m_nArrayOffset; }
 
 void PDFDictionaryElement::SetKeyOffset(const OString& rKey, sal_uInt64 nOffset)
 {
@@ -2439,10 +2482,7 @@ sal_uInt64 PDFDictionaryElement::GetKeyValueLength(const OString& rKey) const
     return it->second;
 }
 
-const std::map<OString, PDFElement*>& PDFDictionaryElement::GetItems() const
-{
-    return m_aItems;
-}
+const std::map<OString, PDFElement*>& PDFDictionaryElement::GetItems() const { return m_aItems; }
 
 void PDFObjectElement::SetDictionaryLength(sal_uInt64 nDictionaryLength)
 {
@@ -2457,15 +2497,9 @@ sal_uInt64 PDFObjectElement::GetDictionaryLength()
     return m_nDictionaryLength;
 }
 
-void PDFObjectElement::SetArrayLength(sal_uInt64 nArrayLength)
-{
-    m_nArrayLength = nArrayLength;
-}
+void PDFObjectElement::SetArrayLength(sal_uInt64 nArrayLength) { m_nArrayLength = nArrayLength; }
 
-sal_uInt64 PDFObjectElement::GetArrayLength()
-{
-    return m_nArrayLength;
-}
+sal_uInt64 PDFObjectElement::GetArrayLength() { return m_nArrayLength; }
 
 PDFDictionaryElement* PDFObjectElement::GetDictionary()
 {
@@ -2484,10 +2518,7 @@ void PDFObjectElement::SetNumberElement(PDFNumberElement* pNumberElement)
     m_pNumberElement = pNumberElement;
 }
 
-PDFNumberElement* PDFObjectElement::GetNumberElement() const
-{
-    return m_pNumberElement;
-}
+PDFNumberElement* PDFObjectElement::GetNumberElement() const { return m_pNumberElement; }
 
 const std::vector<PDFReferenceElement*>& PDFObjectElement::GetDictionaryReferences() const
 {
@@ -2507,25 +2538,16 @@ const std::map<OString, PDFElement*>& PDFObjectElement::GetDictionaryItems()
     return m_aDictionary;
 }
 
-void PDFObjectElement::SetArray(PDFArrayElement* pArrayElement)
-{
-    m_pArrayElement = pArrayElement;
-}
+void PDFObjectElement::SetArray(PDFArrayElement* pArrayElement) { m_pArrayElement = pArrayElement; }
 
 void PDFObjectElement::SetStream(PDFStreamElement* pStreamElement)
 {
     m_pStreamElement = pStreamElement;
 }
 
-PDFStreamElement* PDFObjectElement::GetStream() const
-{
-    return m_pStreamElement;
-}
+PDFStreamElement* PDFObjectElement::GetStream() const { return m_pStreamElement; }
 
-PDFArrayElement* PDFObjectElement::GetArray() const
-{
-    return m_pArrayElement;
-}
+PDFArrayElement* PDFObjectElement::GetArray() const { return m_pArrayElement; }
 
 void PDFObjectElement::ParseStoredObjects()
 {
@@ -2541,7 +2563,8 @@ void PDFObjectElement::ParseStoredObjects()
         if (!pType)
             SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: missing unexpected type");
         else
-            SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: unexpected type: " << pType->GetValue());
+            SAL_WARN("vcl.filter",
+                     "PDFDocument::ReadXRefStream: unexpected type: " << pType->GetValue());
         return;
     }
 
@@ -2551,7 +2574,8 @@ void PDFObjectElement::ParseStoredObjects()
         if (!pFilter)
             SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: missing filter");
         else
-            SAL_WARN("vcl.filter", "PDFDocument::ReadXRefStream: unexpected filter: " << pFilter->GetValue());
+            SAL_WARN("vcl.filter",
+                     "PDFDocument::ReadXRefStream: unexpected filter: " << pFilter->GetValue());
         return;
     }
 
@@ -2606,7 +2630,8 @@ void PDFObjectElement::ParseStoredObjects()
         PDFNumberElement aObjNum;
         if (!aObjNum.Read(aStream))
         {
-            SAL_WARN("vcl.filter", "PDFObjectElement::ParseStoredObjects: failed to read object number");
+            SAL_WARN("vcl.filter",
+                     "PDFObjectElement::ParseStoredObjects: failed to read object number");
             return;
         }
         aObjNums.push_back(aObjNum.GetValue());
@@ -2616,7 +2641,8 @@ void PDFObjectElement::ParseStoredObjects()
         PDFNumberElement aByteOffset;
         if (!aByteOffset.Read(aStream))
         {
-            SAL_WARN("vcl.filter", "PDFObjectElement::ParseStoredObjects: failed to read byte offset");
+            SAL_WARN("vcl.filter",
+                     "PDFObjectElement::ParseStoredObjects: failed to read byte offset");
             return;
         }
         aOffsets.push_back(pFirst->GetValue() + aByteOffset.GetValue());
@@ -2645,7 +2671,8 @@ void PDFObjectElement::ParseStoredObjects()
         aStream.ReadBytes(aBuf.data(), aBuf.size());
         SvMemoryStream aStoredStream(aBuf.data(), aBuf.size(), StreamMode::READ);
 
-        m_rDoc.Tokenize(aStoredStream, TokenizeMode::STORED_OBJECT, pStored->GetStoredElements(), pStored);
+        m_rDoc.Tokenize(aStoredStream, TokenizeMode::STORED_OBJECT, pStored->GetStoredElements(),
+                        pStored);
         // This is how references know the object is stored inside this object stream.
         m_rDoc.SetIDObject(nObjNum, pStored);
 
@@ -2657,65 +2684,53 @@ void PDFObjectElement::ParseStoredObjects()
     }
 }
 
-std::vector< std::unique_ptr<PDFElement> >& PDFObjectElement::GetStoredElements()
+std::vector<std::unique_ptr<PDFElement>>& PDFObjectElement::GetStoredElements()
 {
     return m_aElements;
 }
 
-SvMemoryStream* PDFObjectElement::GetStreamBuffer() const
-{
-    return m_pStreamBuffer.get();
-}
+SvMemoryStream* PDFObjectElement::GetStreamBuffer() const { return m_pStreamBuffer.get(); }
 
 void PDFObjectElement::SetStreamBuffer(std::unique_ptr<SvMemoryStream>& pStreamBuffer)
 {
     m_pStreamBuffer = std::move(pStreamBuffer);
 }
 
-PDFDocument& PDFObjectElement::GetDocument()
-{
-    return m_rDoc;
-}
+PDFDocument& PDFObjectElement::GetDocument() { return m_rDoc; }
 
-PDFReferenceElement::PDFReferenceElement(PDFDocument& rDoc, PDFNumberElement& rObject, PDFNumberElement const& rGeneration)
-    : m_rDoc(rDoc),
-      m_fObjectValue(rObject.GetValue()),
-      m_fGenerationValue(rGeneration.GetValue()),
-      m_rObject(rObject)
+PDFReferenceElement::PDFReferenceElement(PDFDocument& rDoc, PDFNumberElement& rObject,
+                                         PDFNumberElement const& rGeneration)
+    : m_rDoc(rDoc)
+    , m_fObjectValue(rObject.GetValue())
+    , m_fGenerationValue(rGeneration.GetValue())
+    , m_rObject(rObject)
 {
 }
 
-PDFNumberElement& PDFReferenceElement::GetObjectElement() const
-{
-    return m_rObject;
-}
+PDFNumberElement& PDFReferenceElement::GetObjectElement() const { return m_rObject; }
 
 bool PDFReferenceElement::Read(SvStream& rStream)
 {
-    SAL_INFO("vcl.filter", "PDFReferenceElement::Read: " << m_fObjectValue << " " << m_fGenerationValue << " R");
+    SAL_INFO("vcl.filter",
+             "PDFReferenceElement::Read: " << m_fObjectValue << " " << m_fGenerationValue << " R");
     m_nOffset = rStream.Tell();
     return true;
 }
 
-sal_uInt64 PDFReferenceElement::GetOffset() const
-{
-    return m_nOffset;
-}
+sal_uInt64 PDFReferenceElement::GetOffset() const { return m_nOffset; }
 
 double PDFReferenceElement::LookupNumber(SvStream& rStream) const
 {
     size_t nOffset = m_rDoc.GetObjectOffset(m_fObjectValue);
     if (nOffset == 0)
     {
-        SAL_WARN("vcl.filter", "PDFReferenceElement::LookupNumber: found no offset for object #" << m_fObjectValue);
+        SAL_WARN("vcl.filter", "PDFReferenceElement::LookupNumber: found no offset for object #"
+                                   << m_fObjectValue);
         return 0;
     }
 
     sal_uInt64 nOrigPos = rStream.Tell();
-    comphelper::ScopeGuard g([&]()
-    {
-        rStream.Seek(nOrigPos);
-    });
+    comphelper::ScopeGuard g([&]() { rStream.Seek(nOrigPos); });
 
     rStream.Seek(nOffset);
     {
@@ -2724,7 +2739,8 @@ double PDFReferenceElement::LookupNumber(SvStream& rStream) const
         bool bRet = aNumber.Read(rStream);
         if (!bRet || aNumber.GetValue() != m_fObjectValue)
         {
-            SAL_WARN("vcl.filter", "PDFReferenceElement::LookupNumber: offset points to not matching object");
+            SAL_WARN("vcl.filter",
+                     "PDFReferenceElement::LookupNumber: offset points to not matching object");
             return 0;
         }
     }
@@ -2735,7 +2751,8 @@ double PDFReferenceElement::LookupNumber(SvStream& rStream) const
         bool bRet = aNumber.Read(rStream);
         if (!bRet || aNumber.GetValue() != m_fGenerationValue)
         {
-            SAL_WARN("vcl.filter", "PDFReferenceElement::LookupNumber: offset points to not matching generation");
+            SAL_WARN("vcl.filter",
+                     "PDFReferenceElement::LookupNumber: offset points to not matching generation");
             return 0;
         }
     }
@@ -2745,7 +2762,8 @@ double PDFReferenceElement::LookupNumber(SvStream& rStream) const
         OString aKeyword = PDFDocument::ReadKeyword(rStream);
         if (aKeyword != "obj")
         {
-            SAL_WARN("vcl.filter", "PDFReferenceElement::LookupNumber: offset doesn't point to an obj keyword");
+            SAL_WARN("vcl.filter",
+                     "PDFReferenceElement::LookupNumber: offset doesn't point to an obj keyword");
             return 0;
         }
     }
@@ -2754,7 +2772,8 @@ double PDFReferenceElement::LookupNumber(SvStream& rStream) const
     PDFNumberElement aNumber;
     if (!aNumber.Read(rStream))
     {
-        SAL_WARN("vcl.filter", "PDFReferenceElement::LookupNumber: failed to read referenced number");
+        SAL_WARN("vcl.filter",
+                 "PDFReferenceElement::LookupNumber: failed to read referenced number");
         return 0;
     }
 
@@ -2777,20 +2796,11 @@ PDFObjectElement* PDFDocument::LookupObject(size_t nObjectNumber)
     return nullptr;
 }
 
-SvMemoryStream& PDFDocument::GetEditBuffer()
-{
-    return m_aEditBuffer;
-}
+SvMemoryStream& PDFDocument::GetEditBuffer() { return m_aEditBuffer; }
 
-int PDFReferenceElement::GetObjectValue() const
-{
-    return m_fObjectValue;
-}
+int PDFReferenceElement::GetObjectValue() const { return m_fObjectValue; }
 
-int PDFReferenceElement::GetGenerationValue() const
-{
-    return m_fGenerationValue;
-}
+int PDFReferenceElement::GetGenerationValue() const { return m_fGenerationValue; }
 
 bool PDFDictionaryElement::Read(SvStream& rStream)
 {
@@ -2824,10 +2834,7 @@ bool PDFDictionaryElement::Read(SvStream& rStream)
 
 PDFEndDictionaryElement::PDFEndDictionaryElement() = default;
 
-sal_uInt64 PDFEndDictionaryElement::GetLocation() const
-{
-    return m_nLocation;
-}
+sal_uInt64 PDFEndDictionaryElement::GetLocation() const { return m_nLocation; }
 
 bool PDFEndDictionaryElement::Read(SvStream& rStream)
 {
@@ -2882,8 +2889,8 @@ bool PDFNameElement::Read(SvStream& rStream)
     rStream.ReadChar(ch);
     while (!rStream.eof())
     {
-        if (rtl::isAsciiWhiteSpace(static_cast<unsigned char>(ch)) || ch == '/'
-                || ch == '[' || ch == ']' || ch == '<' || ch == '>' || ch == '(')
+        if (rtl::isAsciiWhiteSpace(static_cast<unsigned char>(ch)) || ch == '/' || ch == '['
+            || ch == ']' || ch == '<' || ch == '>' || ch == '(')
         {
             rStream.SeekRel(-1);
             m_aValue = aBuf.makeStringAndClear();
@@ -2897,24 +2904,15 @@ bool PDFNameElement::Read(SvStream& rStream)
     return false;
 }
 
-const OString& PDFNameElement::GetValue() const
-{
-    return m_aValue;
-}
+const OString& PDFNameElement::GetValue() const { return m_aValue; }
 
-sal_uInt64 PDFNameElement::GetLocation() const
-{
-    return m_nLocation;
-}
+sal_uInt64 PDFNameElement::GetLocation() const { return m_nLocation; }
 
-sal_uInt64 PDFNameElement::GetLength() const
-{
-    return m_nLength;
-}
+sal_uInt64 PDFNameElement::GetLength() const { return m_nLength; }
 
 PDFStreamElement::PDFStreamElement(size_t nLength)
-    : m_nLength(nLength),
-      m_nOffset(0)
+    : m_nLength(nLength)
+    , m_nOffset(0)
 {
 }
 
@@ -2929,25 +2927,13 @@ bool PDFStreamElement::Read(SvStream& rStream)
     return rStream.good();
 }
 
-SvMemoryStream& PDFStreamElement::GetMemory()
-{
-    return m_aMemory;
-}
+SvMemoryStream& PDFStreamElement::GetMemory() { return m_aMemory; }
 
-sal_uInt64 PDFStreamElement::GetOffset() const
-{
-    return m_nOffset;
-}
+sal_uInt64 PDFStreamElement::GetOffset() const { return m_nOffset; }
 
-bool PDFEndStreamElement::Read(SvStream& /*rStream*/)
-{
-    return true;
-}
+bool PDFEndStreamElement::Read(SvStream& /*rStream*/) { return true; }
 
-bool PDFEndObjectElement::Read(SvStream& /*rStream*/)
-{
-    return true;
-}
+bool PDFEndObjectElement::Read(SvStream& /*rStream*/) { return true; }
 
 PDFArrayElement::PDFArrayElement(PDFObjectElement* pObject)
     : m_pObject(pObject)
@@ -2972,14 +2958,12 @@ bool PDFArrayElement::Read(SvStream& rStream)
 void PDFArrayElement::PushBack(PDFElement* pElement)
 {
     if (m_pObject)
-        SAL_INFO("vcl.filter", "PDFArrayElement::PushBack: object is " << m_pObject->GetObjectValue());
+        SAL_INFO("vcl.filter",
+                 "PDFArrayElement::PushBack: object is " << m_pObject->GetObjectValue());
     m_aElements.push_back(pElement);
 }
 
-const std::vector<PDFElement*>& PDFArrayElement::GetElements()
-{
-    return m_aElements;
-}
+const std::vector<PDFElement*>& PDFArrayElement::GetElements() { return m_aElements; }
 
 PDFEndArrayElement::PDFEndArrayElement() = default;
 
@@ -2999,10 +2983,7 @@ bool PDFEndArrayElement::Read(SvStream& rStream)
     return true;
 }
 
-sal_uInt64 PDFEndArrayElement::GetOffset() const
-{
-    return m_nOffset;
-}
+sal_uInt64 PDFEndArrayElement::GetOffset() const { return m_nOffset; }
 
 } // namespace filter
 } // namespace vcl
diff --git a/vcl/source/filter/ipdf/pdfread.cxx b/vcl/source/filter/ipdf/pdfread.cxx
index 1c1c330045fe..572a4c2f6831 100644
--- a/vcl/source/filter/ipdf/pdfread.cxx
+++ b/vcl/source/filter/ipdf/pdfread.cxx
@@ -25,7 +25,6 @@ using namespace com::sun::star;
 
 namespace
 {
-
 #if HAVE_FEATURE_PDFIUM
 
 /// Callback class to be used with FPDF_SaveWithVersion().
@@ -33,7 +32,8 @@ struct CompatibleWriter : public FPDF_FILEWRITE
 {
 public:
     CompatibleWriter();
-    static int WriteBlockCallback(FPDF_FILEWRITE* pFileWrite, const void* pData, unsigned long nSize);
+    static int WriteBlockCallback(FPDF_FILEWRITE* pFileWrite, const void* pData,
+                                  unsigned long nSize);
 
     SvMemoryStream m_aStream;
 };
@@ -44,7 +44,8 @@ CompatibleWriter::CompatibleWriter()
     FPDF_FILEWRITE::WriteBlock = CompatibleWriter::WriteBlockCallback;
 }
 
-int CompatibleWriter::WriteBlockCallback(FPDF_FILEWRITE* pFileWrite, const void* pData, unsigned long nSize)
+int CompatibleWriter::WriteBlockCallback(FPDF_FILEWRITE* pFileWrite, const void* pData,
+                                         unsigned long nSize)
 {
     auto pImpl = static_cast<CompatibleWriter*>(pFileWrite);
     pImpl->m_aStream.WriteBytes(pData, nSize);
@@ -52,15 +53,11 @@ int CompatibleWriter::WriteBlockCallback(FPDF_FILEWRITE* pFileWrite, const void*
 }
 
 /// Convert to inch, then assume 96 DPI.
-double pointToPixel(double fPoint)
-{
-    return fPoint / 72 * 96;
-}
+double pointToPixel(double fPoint) { return fPoint / 72 * 96; }
 
 /// Does PDF to bitmap conversion using pdfium.
-size_t generatePreview(SvStream& rStream, std::vector<Bitmap>& rBitmaps,
-                       sal_uInt64 nPos, sal_uInt64 nSize,
-                       const size_t nFirstPage = 0, int nPages = 1)
+size_t generatePreview(SvStream& rStream, std::vector<Bitmap>& rBitmaps, sal_uInt64 nPos,
+                       sal_uInt64 nSize, const size_t nFirstPage = 0, int nPages = 1)
 {
     FPDF_LIBRARY_CONFIG aConfig;
     aConfig.version = 2;
@@ -75,7 +72,8 @@ size_t generatePreview(SvStream& rStream, std::vector<Bitmap>& rBitmaps,
     aInBuffer.WriteStream(rStream, nSize);
 
     // Load the buffer using pdfium.
-    FPDF_DOCUMENT pPdfDocument = FPDF_LoadMemDocument(aInBuffer.GetData(), aInBuffer.GetSize(), /*password=*/nullptr);
+    FPDF_DOCUMENT pPdfDocument
+        = FPDF_LoadMemDocument(aInBuffer.GetData(), aInBuffer.GetSize(), /*password=*/nullptr);
     if (!pPdfDocument)
         return 0;
 
@@ -99,7 +97,8 @@ size_t generatePreview(SvStream& rStream, std::vector<Bitmap>& rBitmaps,
 
         const FPDF_DWORD nColor = FPDFPage_HasTransparency(pPdfPage) ? 0x00000000 : 0xFFFFFFFF;
         FPDFBitmap_FillRect(pPdfBitmap, 0, 0, nPageWidth, nPageHeight, nColor);
-        FPDF_RenderPageBitmap(pPdfBitmap, pPdfPage, /*start_x=*/0, /*start_y=*/0, nPageWidth, nPageHeight, /*rotate=*/0, /*flags=*/0);
+        FPDF_RenderPageBitmap(pPdfBitmap, pPdfPage, /*start_x=*/0, /*start_y=*/0, nPageWidth,
+                              nPageHeight, /*rotate=*/0, /*flags=*/0);
 
         // Save the buffer as a bitmap.
         Bitmap aBitmap(Size(nPageWidth, nPageHeight), 24);
@@ -139,7 +138,8 @@ bool isCompatible(SvStream& rInStream, sal_uInt64 nPos, sal_uInt64 nSize)
     if (nRead < 8)
         return false;
 
-    if (aFirstBytes[0] != '%' || aFirstBytes[1] != 'P' || aFirstBytes[2] != 'D' || aFirstBytes[3] != 'F' || aFirstBytes[4] != '-')
+    if (aFirstBytes[0] != '%' || aFirstBytes[1] != 'P' || aFirstBytes[2] != 'D'
+        || aFirstBytes[3] != 'F' || aFirstBytes[4] != '-')
         return false;
 
     sal_Int32 nMajor = OString(aFirstBytes[5]).toInt32();
@@ -149,8 +149,8 @@ bool isCompatible(SvStream& rInStream, sal_uInt64 nPos, sal_uInt64 nSize)
 
 /// Takes care of transparently downgrading the version of the PDF stream in
 /// case it's too new for our PDF export.
-bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream,
-                         sal_uInt64 nPos, sal_uInt64 nSize)
+bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream, sal_uInt64 nPos,
+                         sal_uInt64 nSize)
 {
     bool bCompatible = isCompatible(rInStream, nPos, nSize);
     rInStream.Seek(nPos);
@@ -172,7 +172,8 @@ bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream,
         aInBuffer.WriteStream(rInStream, nSize);
 
         // Load the buffer using pdfium.
-        FPDF_DOCUMENT pPdfDocument = FPDF_LoadMemDocument(aInBuffer.GetData(), aInBuffer.GetSize(), /*password=*/nullptr);
+        FPDF_DOCUMENT pPdfDocument
+            = FPDF_LoadMemDocument(aInBuffer.GetData(), aInBuffer.GetSize(), /*password=*/nullptr);
         if (!pPdfDocument)
             return false;
 
@@ -191,29 +192,25 @@ bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream,
     return rOutStream.good();
 }
 #else
-size_t generatePreview(SvStream&, std::vector<Bitmap>&,
-                     sal_uInt64 nPos, sal_uInt64 nSize,
-                     size_t nFirstPage = 0, int nLastPage = 0)
+size_t generatePreview(SvStream&, std::vector<Bitmap>&, sal_uInt64 nPos, sal_uInt64 nSize,
+                       size_t nFirstPage = 0, int nLastPage = 0)
 {
     return false;
 }
 
-bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream,
-                         sal_uInt64 nPos, sal_uInt64 nSize)
+bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream, sal_uInt64 nPos,
+                         sal_uInt64 nSize)
 {
     rInStream.Seek(nPos);
     rOutStream.WriteStream(rInStream, nSize);
     return rOutStream.good();
 }
 #endif // HAVE_FEATURE_PDFIUM
-
 }
 
 namespace vcl
 {
-
-bool ImportPDF(SvStream& rStream, Bitmap& rBitmap,
-               css::uno::Sequence<sal_Int8>& rPdfData,
+bool ImportPDF(SvStream& rStream, Bitmap& rBitmap, css::uno::Sequence<sal_Int8>& rPdfData,
                sal_uInt64 nPos, sal_uInt64 nSize)
 {
     // Get the preview of the first page.
@@ -236,7 +233,6 @@ bool ImportPDF(SvStream& rStream, Bitmap& rBitmap,
     return true;
 }
 
-
 bool ImportPDF(SvStream& rStream, Graphic& rGraphic)
 {
     uno::Sequence<sal_Int8> aPdfData;
@@ -246,7 +242,6 @@ bool ImportPDF(SvStream& rStream, Graphic& rGraphic)
     rGraphic.setPdfData(aPdfData);
     return bRet;
 }
-
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/xmlsecurity/inc/pdfio/pdfdocument.hxx b/xmlsecurity/inc/pdfio/pdfdocument.hxx
index bafff6894040..996bb1527bb8 100644
--- a/xmlsecurity/inc/pdfio/pdfdocument.hxx
+++ b/xmlsecurity/inc/pdfio/pdfdocument.hxx
@@ -27,13 +27,14 @@ namespace xmlsecurity
 {
 namespace pdfio
 {
-
 /**
  * @param rInformation The actual result.
  * @param bLast If this is the last signature in the file, so it covers the whole file physically.
  * @return If we can determinate a result.
  */
-XMLSECURITY_DLLPUBLIC bool ValidateSignature(SvStream& rStream, vcl::filter::PDFObjectElement* pSignature, SignatureInformation& rInformation, bool bLast);
+XMLSECURITY_DLLPUBLIC bool ValidateSignature(SvStream& rStream,
+                                             vcl::filter::PDFObjectElement* pSignature,
+                                             SignatureInformation& rInformation, bool bLast);
 
 } // namespace pdfio
 } // namespace xmlsecurity
diff --git a/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx b/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
index 8cf913279643..e0f0698703b8 100644
--- a/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
+++ b/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
@@ -47,7 +47,8 @@ class PDFSigningTest : public test::BootstrapFixture
      * Read a pdf and make sure that it has the expected number of valid
      * signatures.
      */
-    std::vector<SignatureInformation> verify(const OUString& rURL, size_t nCount, const OString& rExpectedSubFilter);
+    std::vector<SignatureInformation> verify(const OUString& rURL, size_t nCount,
+                                             const OString& rExpectedSubFilter);
 
 public:
     PDFSigningTest();
@@ -102,9 +103,7 @@ public:
     CPPUNIT_TEST_SUITE_END();
 };
 
-PDFSigningTest::PDFSigningTest()
-{
-}
+PDFSigningTest::PDFSigningTest() {}
 
 void PDFSigningTest::setUp()
 {
@@ -115,8 +114,8 @@ void PDFSigningTest::setUp()
 #ifndef _WIN32
     // Set up cert8.db and key3.db in workdir/CppunitTest/
     OUString aSourceDir = m_directories.getURLFromSrc(DATA_DIRECTORY);
-    OUString aTargetDir = m_directories.getURLFromWorkdir(
-                              "/CppunitTest/xmlsecurity_pdfsigning.test.user/");
+    OUString aTargetDir
+        = m_directories.getURLFromWorkdir("/CppunitTest/xmlsecurity_pdfsigning.test.user/");
     osl::File::copy(aSourceDir + "cert8.db", aTargetDir + "cert8.db");
     osl::File::copy(aSourceDir + "key3.db", aTargetDir + "key3.db");
     OUString aTargetPath;
@@ -125,10 +124,13 @@ void PDFSigningTest::setUp()
 #endif
 }
 
-std::vector<SignatureInformation> PDFSigningTest::verify(const OUString& rURL, size_t nCount, const OString& rExpectedSubFilter)
+std::vector<SignatureInformation> PDFSigningTest::verify(const OUString& rURL, size_t nCount,
+                                                         const OString& rExpectedSubFilter)
 {
-    uno::Reference<xml::crypto::XSEInitializer> xSEInitializer = xml::crypto::SEInitializer::create(mxComponentContext);
-    uno::Reference<xml::crypto::XXMLSecurityContext> xSecurityContext = xSEInitializer->createSecurityContext(OUString());
+    uno::Reference<xml::crypto::XSEInitializer> xSEInitializer
+        = xml::crypto::SEInitializer::create(mxComponentContext);
+    uno::Reference<xml::crypto::XXMLSecurityContext> xSecurityContext
+        = xSEInitializer->createSecurityContext(OUString());
     std::vector<SignatureInformation> aRet;
 
     SvFileStream aStream(rURL, StreamMode::READ);
@@ -140,14 +142,16 @@ std::vector<SignatureInformation> PDFSigningTest::verify(const OUString& rURL, s
     {
         SignatureInformation aInfo(i);
         bool bLast = i == aSignatures.size() - 1;
-        CPPUNIT_ASSERT(xmlsecurity::pdfio::ValidateSignature(aStream, aSignatures[i], aInfo, bLast));
+        CPPUNIT_ASSERT(
+            xmlsecurity::pdfio::ValidateSignature(aStream, aSignatures[i], aInfo, bLast));
         aRet.push_back(aInfo);
 
         if (!rExpectedSubFilter.isEmpty())
         {
             vcl::filter::PDFObjectElement* pValue = aSignatures[i]->LookupObject("V");
             CPPUNIT_ASSERT(pValue);
-            auto pSubFilter = dynamic_cast<vcl::filter::PDFNameElement*>(pValue->Lookup("SubFilter"));
+            auto pSubFilter
+                = dynamic_cast<vcl::filter::PDFNameElement*>(pValue->Lookup("SubFilter"));
             CPPUNIT_ASSERT(pSubFilter);
             CPPUNIT_ASSERT_EQUAL(rExpectedSubFilter, pSubFilter->GetValue());
         }
@@ -156,11 +160,14 @@ std::vector<SignatureInformation> PDFSigningTest::verify(const OUString& rURL, s
     return aRet;
 }
 
-bool PDFSigningTest::sign(const OUString& rInURL, const OUString& rOutURL, size_t nOriginalSignatureCount)
+bool PDFSigningTest::sign(const OUString& rInURL, const OUString& rOutURL,
+                          size_t nOriginalSignatureCount)
 {
     // Make sure that input has nOriginalSignatureCount signatures.
-    uno::Reference<xml::crypto::XSEInitializer> xSEInitializer = xml::crypto::SEInitializer::create(mxComponentContext);
-    uno::Reference<xml::crypto::XXMLSecurityContext> xSecurityContext = xSEInitializer->createSecurityContext(OUString());
+    uno::Reference<xml::crypto::XSEInitializer> xSEInitializer
+        = xml::crypto::SEInitializer::create(mxComponentContext);
+    uno::Reference<xml::crypto::XXMLSecurityContext> xSecurityContext
+        = xSEInitializer->createSecurityContext(OUString());
     vcl::filter::PDFDocument aDocument;
     {
         SvFileStream aStream(rInURL, StreamMode::READ);
@@ -172,8 +179,10 @@ bool PDFSigningTest::sign(const OUString& rInURL, const OUString& rOutURL, size_
     bool bSignSuccessful = false;
     // Sign it and write out the result.
     {
-        uno::Reference<xml::crypto::XSecurityEnvironment> xSecurityEnvironment = xSecurityContext->getSecurityEnvironment();
-        uno::Sequence<uno::Reference<security::XCertificate>> aCertificates = xSecurityEnvironment->getPersonalCertificates();
+        uno::Reference<xml::crypto::XSecurityEnvironment> xSecurityEnvironment
+            = xSecurityContext->getSecurityEnvironment();
+        uno::Sequence<uno::Reference<security::XCertificate>> aCertificates
+            = xSecurityEnvironment->getPersonalCertificates();
         DateTime now(DateTime::SYSTEM);
         for (auto& cert : aCertificates)
         {
@@ -183,7 +192,8 @@ bool PDFSigningTest::sign(const OUString& rInURL, const OUString& rOutURL, size_
             // Only try certificates that are already active and not expired
             if ((now > aNotValidAfter) || (now < aNotValidBefore))
             {
-                SAL_WARN("xmlsecurity.pdfio.test", "Skipping a certificate that is not yet valid or already not valid");
+                SAL_WARN("xmlsecurity.pdfio.test",
+                         "Skipping a certificate that is not yet valid or already not valid");
             }
             else
             {
@@ -194,7 +204,8 @@ bool PDFSigningTest::sign(const OUString& rInURL, const OUString& rOutURL, size_
                     DWORD dwErr = GetLastError();
                     if (HRESULT_FROM_WIN32(dwErr) == CRYPT_E_NO_KEY_PROPERTY)
                     {

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list