aboutsummaryrefslogtreecommitdiffstats
path: root/src/reader.c
AgeCommit message (Expand)AuthorFilesLines
2012-03-27Delete trailing whitespace.David Robillard1-1/+1
2012-03-18Add serd_reader_set_default_graph() for reading a file as a named graph.David Robillard1-1/+17
2012-03-08Fix compilation in VC++.David Robillard1-2/+2
2012-03-03Fix reading of empty files (e.g. /dev/null) test case.David Robillard1-7/+7
2012-02-29Handle files and strings that start with a UTF-8 Byte Order Mark (fix #814).David Robillard1-1/+15
2012-02-21Add prefix to generated node IDs as well, to avoid clashing when reading mult...David Robillard1-8/+13
2012-02-21Report read error if both "genid" and "docid" IDs are found in the same docum...David Robillard1-7/+13
2012-02-21Make -p actually work as advertised.David Robillard1-17/+13
2012-02-20Remove odd assertion.David Robillard1-2/+1
2012-02-20Trim some fat by taking advantage of ReadContext for statement emission.David Robillard1-16/+9
2012-02-20Fix collection parsing code to not leak stack space.David Robillard1-178/+148
2012-02-20Use iterative algorithm for collection parsing.David Robillard1-59/+52
2012-02-20Implement pretty-printing for collections.David Robillard1-50/+46
2012-02-01Fix jumps past variable initialization.David Robillard1-4/+6
2012-01-16Support compilation as C++ under MSVC++David Robillard1-5/+4
2012-01-16Update copyright dates.David Robillard1-1/+1
2012-01-14Lint.David Robillard1-4/+4
2012-01-06Remove unused parameter.David Robillard1-7/+7
2011-12-27Warn on invalid unicode character and replace (fix #796).David Robillard1-7/+13
2011-12-25Near 100% branch coverage.David Robillard1-20/+18
2011-12-25100% test coverage.David Robillard1-64/+32
2011-12-16Remove debug print.David Robillard1-1/+0
2011-12-15Remove peek_string, use exactly 1 page as a read buffer.David Robillard1-107/+83
2011-12-12More parser micro-optimization.David Robillard1-47/+48
2011-12-12Remove eat_byte correctness checks for known-correct bytes in optimized builds.David Robillard1-70/+77
2011-12-12Remove branch for EOF detection in eat_byte.David Robillard1-9/+4
2011-12-12Fix memory error introduced a few commits ago.David Robillard1-2/+5
2011-12-11Fix debug build without --stack-check.David Robillard1-0/+2
2011-12-11Move all #ifdef gunk to serd_internal.h.David Robillard1-18/+3
2011-12-11Use posix_fadvise to advise about sequential file access.David Robillard1-1/+8
2011-12-11Add SerdBulkSink for writing bulk output and corresponding serdi -B option.David Robillard1-13/+10
2011-12-11Fix string length calculation.David Robillard1-3/+2
2011-12-11Align read buffer to page boundary if posix_memalign is available.David Robillard1-1/+8
2011-12-11Shrink code.David Robillard1-5/+2
2011-12-11Simply reader by using a stack of SerdNode rather than weird internal types.David Robillard1-250/+204
2011-12-11Better invalid string character handling.David Robillard1-10/+40
2011-12-10Tolerate invalid characters in string literals by replacing with theDavid Robillard1-5/+28
2011-09-29Tidy.David Robillard1-3/+6
2011-08-21Gracefully handle NULL reader sinks.David Robillard1-11/+18
2011-08-20Avoid writing illegal Turtle names as a result of URI qualifying (fix #734).David Robillard1-3/+2
2011-06-19Fix abbreviation flags for blank nodes within lists (fix ticket #719).David Robillard1-2/+2
2011-05-24Add serd_uri_to_path to API.David Robillard1-26/+1
2011-05-24Don't call serd_strlen for append_string (which is only used on internal ASCI...David Robillard1-10/+7
2011-05-19Express inlining information via statement flags rather than node types.David Robillard1-39/+51
2011-05-18Add test to ensure blank node IDs don't clash with generated IDs.David Robillard1-29/+130
2011-05-12Fix out of bounds array indexing.David Robillard1-1/+1
2011-05-12Use conventional string lengths not including NULL terminatorDavid Robillard1-29/+29
2011-05-11Create SerdNodeFlags typedef for flags.David Robillard1-11/+11
2011-05-11Record whether strings contains quotes or newlines for smart selection of lon...David Robillard1-36/+47
2011-05-06Merge SerdEnv and SerdReadState.David Robillard1-106/+0