Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 4,691
  • Compare
  • Branches 1
  • Tags 0
  • qpdf
  • libqpdf
  • QPDFParser.cc
04 Feb, 2024
1 commit
  • Format code
    7caa9ddf
    Jay Berkenbilt authored
    2024-02-04 16:12:01 -0500  
    Browse File »

17 Jan, 2024
1 commit
  • Tighten checks for invalid indirect references in QPDFParser
    ed43691b
    m-holger authored
    2024-01-17 13:15:13 +0000  
    Browse File »

03 Nov, 2023
8 commits
  • Add new method QPDFParser::fixMissingKeys
    1285f976
    m-holger authored
    2023-11-03 11:22:21 +0000  
    Browse File »
  • In QPDFParser::parse create dictionaries on the fly ...
    605b1429
    Also, don't search for /Contents name unless the result is used.
    m-holger authored
    2023-11-03 11:09:58 +0000  
    Browse File »
  • In QPDFParser::parse refactor parsing of indirect references
    0328d872
    m-holger authored
    2023-11-03 01:34:16 +0000  
    Browse File »
  • In QPDFParser::parseRemainder eliminate most temporary variables
    1548b8d8
    m-holger authored
    2023-11-03 01:34:10 +0000  
    Browse File »
  • In QPDFParser::parse eliminate most temporary variables
    4c8836d5
    m-holger authored
    2023-11-03 01:33:59 +0000  
    Browse File »
  • In QPDFParser remove state st_top
    c912af73
    m-holger authored
    2023-11-03 01:32:04 +0000  
    Browse File »
  • Remove redundant code in QPDFParser::parse and parseRemainder ...
    172cc613
    Also, fix test cases.
    m-holger authored
    2023-11-03 01:26:34 +0000  
    Browse File »
  • Add new method QPDFParser::parseRemainder ...
    5a1bf035
    The new method is temporarily an (almost) complete copy of parse, which is
    temporarily (almost) unchanged.
    m-holger authored
    2023-11-03 01:26:12 +0000  
    Browse File »

01 Nov, 2023
6 commits
  • In QPDFParser::parse merge state and object stacks
    db6ab9cb
    m-holger authored
    2023-11-01 15:45:17 +0000  
    Browse File »
  • In QPDFParser::parse refactor handling of array_open and dict_open tokens
    d904eab8
    m-holger authored
    2023-11-01 15:38:01 +0000  
    Browse File »
  • In QPDFParser::parse refactor handling of dict_close tokens
    90829228
    m-holger authored
    2023-11-01 15:27:52 +0000  
    Browse File »
  • In QPDFParser::parse refactor handling of array_close tokens
    12837f14
    m-holger authored
    2023-11-01 15:26:04 +0000  
    Browse File »
  • In QPDFParser::parse refactor eof handling
    26e0bf46
    m-holger authored
    2023-11-01 15:23:30 +0000  
    Browse File »
  • In QPDFParser::parse refactor handling of bad tokens
    37f7a734
    m-holger authored
    2023-11-01 15:21:08 +0000  
    Browse File »

27 Oct, 2023
1 commit
  • Avoid unnecessary string copies in QPDFParser::parse ...
    29cd8f4f
    Fixes #864. QPDFTokenizer::getValue originally had a std::string_view
    return type, which was changed to std::string without removing some
    unnecessary string creation.
    m-holger authored
    2023-10-27 14:16:51 +0100  
    Browse File »

09 Jun, 2023
1 commit
  • Code tidy - Clang-Tidy rule modernize-use-emplace
    7bc0f1d8
    m-holger authored
    2023-06-09 15:42:11 +0100  
    Browse File »

27 May, 2023
1 commit
  • Code tidy - reflow comments and strings
    698a70e6
    m-holger authored
    2023-05-27 10:54:19 +0100  
    Browse File »

21 May, 2023
1 commit
  • Rerun clang-format
    60965d5f
    Jay Berkenbilt authored
    2023-05-21 13:35:09 -0400  
    Browse File »

20 May, 2023
1 commit
  • Remove unused include directives
    7f043fe8
    m-holger authored
    2023-05-20 15:37:41 +0100  
    Browse File »

29 Mar, 2023
1 commit
  • Optimize QPDFParser for non-sparse QPDF_Arrays ...
    8fdc3f09
    Stop using nullptr to represent null objects.
    Count null array elements and trigger creation of sparse arrays if null count is
    greater than 100.
    m-holger authored
    2023-03-29 12:10:19 +0100  
    Browse File »

07 Jan, 2023
1 commit
  • Change QPDFParser::parse to use QPDFTokenizer::nextToken
    60538f19
    m-holger authored
    2023-01-07 15:24:51 -0500  
    Browse File »

31 Dec, 2022
10 commits
  • Refactor dictionary processing loop in QPDFParser::parse
    3f567ae0
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Tune parsing of dictionaries in QPDFParser::parse ...
    d67a54ae
    Use move semantics for dictionary creation.
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Remove redundant parameter qpdf from QPDFParser::warn
    84650412
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Change QPDFParser::setDescription to take a shared_ptr<QPDFObject> parameter
    b19e06fd
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Avoid inserting direct null objects into olist
    83910224
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Change olist variable in QPDFParser::parse to vector<shared_ptr<QPDFObject>>
    9da50ca3
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Change object variable in QPDFParser::parse to shared_ptr<QPDFObject>
    e91e642c
    m-holger authored
    2022-12-31 14:37:35 -0500  
    Browse File »
  • Delay adding offsets to object descriptions until necessary
    0ef2def8
    m-holger authored
    2022-12-31 10:23:59 -0500  
    Browse File »
  • Make QPDFValue::object_description a shared pointer
    e684d816
    m-holger authored
    2022-12-31 10:23:59 -0500  
    Browse File »
  • Refactor QPDFParser::setDescriptionFromInput and rename to setDescription ...
    d03ca882
    Set parsed offset at the same time as setting description.
    m-holger authored
    2022-12-31 10:23:59 -0500  
    Browse File »

15 Dec, 2022
1 commit
  • Fix check for direct nulls in QPDFParser::parse
    2693a082
    m-holger authored
    2022-12-15 13:07:42 -0500  
    Browse File »

26 Nov, 2022
1 commit
  • Refactor QPDF::fixDanglingReferences
    3f632458
    m-holger authored
    2022-11-26 16:26:42 -0500  
    Browse File »

21 Sep, 2022
1 commit
  • Replace calls to QUtil::int_to_string with std::to_string
    2e686948
    m-holger authored
    2022-09-21 15:57:14 -0400  
    Browse File »

01 Sep, 2022
1 commit
  • Remove QPDFObjectHandle::newIndirect ...
    356b582c
    Modify QPDFParser::parse to call QPDF::getObject instead.
    m-holger authored
    2022-09-01 16:59:01 +0100  
    Browse File »

31 Aug, 2022
1 commit
  • Add ChangeLog for previous contribution ...
    7b3134ef
    Also remove no-longer-needed #include
    Jay Berkenbilt authored
    2022-08-31 15:06:37 -0400  
    Browse File »

30 Aug, 2022
2 commits
  • Optimise QPDFParser::parse for #311 problem ...
    70d985f9
    Avoid creating new null objects that later will be discarded and made
    implicit.
    
    Part of #729
    m-holger authored
    2022-08-30 13:32:54 +0100  
    Browse File »
  • Avoid setting descriptions / offsets for direct nulls in QPDFParser::parse ...
    97a7ad1d
    Part of #729
    m-holger authored
    2022-08-30 13:07:48 +0100  
    Browse File »