Commit Graph

  • 80db86e771 Added the license.txt file describing the MIT license. Jesse Beder 2008-09-03 04:37:06 +00:00
  • b16f958660 Fixed struct vs. class disparity. Jesse Beder 2008-08-07 03:37:16 +00:00
  • ec2ecad197 Added CMake scripts for other platforms\nFixed some bugs that gcc complained about\nFixed CR/LF vs LF bug Jesse Beder 2008-08-07 03:30:56 +00:00
  • 813817f1ab Jesse Beder 2008-07-31 19:41:11 +00:00
  • d45bb667b6 Small changes in the iterator code. Changed the public interface of Scanner to resemble an STL container. Jesse Beder 2008-07-23 04:38:18 +00:00
  • cc87c83b01 Switched the Iterator implementation to a dedicated helper class (to hide the specific implementation, since it's pretty messy and may change). Jesse Beder 2008-07-21 02:54:39 +00:00
  • 09d7ab365f Replaced the queue of Token pointers with values. We were getting memory leaks (as told by the CRT detectors, which I also added), and there's really no reason (as long as we're careful) to use pointers there. Jesse Beder 2008-07-20 05:02:01 +00:00
  • 2eab1e025e Moved the testing source to the yaml-reader folder. Jesse Beder 2008-07-14 05:18:25 +00:00
  • 2e2c489e29 Set the yaml-reader project to link to the yamlcpp library. Jesse Beder 2008-07-14 05:08:46 +00:00
  • f3a2c8497a Added a static library project 'yamlcpp' to the solution. Jesse Beder 2008-07-14 05:03:38 +00:00
  • 771cc6fa25 Renamed the solution yamlcpp. Jesse Beder 2008-07-14 04:51:47 +00:00
  • ef630abeee Jesse Beder 2008-07-14 04:37:58 +00:00
  • cadc04ce47 Moved all code to src/ and include/ directories. Jesse Beder 2008-07-14 04:33:30 +00:00
  • 4cfa233888 Switched from moving the cursor forward (in Regex) to ignoring (this handles newlines properly). Updated some of the character-in-scalar rules. Jesse Beder 2008-07-10 00:23:25 +00:00
  • 03e6b5b991 Centralized the error messages to one location. Jesse Beder 2008-07-08 20:31:48 +00:00
  • c0c55fe50b Removed the (unused) 'required' flag from simple keys (the parser should take care of this, not the scanner). Jesse Beder 2008-07-08 18:34:26 +00:00
  • a8a0fb41cb Added some exceptions for directives. Jesse Beder 2008-07-08 06:06:24 +00:00
  • 6c2946bf58 Combined the myriad ScannerExceptions and ParserExceptions to a single ParserException class that has a message and a line/column position in the file where the error occurred. Jesse Beder 2008-07-08 05:48:38 +00:00
  • 115cf601e9 Added a (recursive) ordering, so we have a canonical output that we can compare. Jesse Beder 2008-07-06 00:06:36 +00:00
  • 2a0ddc8cb2 Wrote some tests, but they don't work because it doesn't output maps in a canonical form. Jesse Beder 2008-07-05 19:00:58 +00:00
  • dacc631968 Rewrote the output so that it emits correct YAML. Fixed a bug in the last newline of a block folded scalar. Jesse Beder 2008-07-05 05:28:23 +00:00
  • d98007b0be Jesse Beder 2008-07-04 22:57:52 +00:00
  • ed488e5197 Removed the document class (since it's really just a root node, and that's it). Jesse Beder 2008-07-04 22:56:43 +00:00
  • 2be40919de Specialized the overloaded [] operator for int/unsigned, and added a size() function, so that you can iterate through a sequence node like a vector. Jesse Beder 2008-07-02 21:41:54 +00:00
  • 2ccbfeff47 Added some parser exceptions. Jesse Beder 2008-07-02 05:00:32 +00:00
  • 901d16a96f Overloaded the iterator's -> operator. Jesse Beder 2008-07-02 01:32:19 +00:00
  • d56b54b34f Added an iterator class that can iterate through both sequence and map nodes. Jesse Beder 2008-07-02 01:22:39 +00:00
  • f7358701f2 Fixed opening newline bug for block scalars. Jesse Beder 2008-07-01 06:34:55 +00:00
  • 4c5a488f68 Tags, anchors, and aliases are all parsed now. Jesse Beder 2008-07-01 06:28:10 +00:00
  • 8180a85a3b Added parsing of anchors, aliases, and tags (still no semantics yet). Fixed a silly bug in the simple key pushing (queues are FIFO!). Jesse Beder 2008-07-01 01:17:10 +00:00
  • 121c2e577f Finished parsing of basic data types (scalar, sequence, map). Jesse Beder 2008-06-30 23:57:58 +00:00
  • c1966ba3fc Renamed the stream member functions get() and eat(). Jesse Beder 2008-06-30 22:34:10 +00:00
  • 852e5b63e5 Instead of deriving different tokens from a base Token class, we now use an enumerated TOKEN_TYPE to distinguish types. This is so we don't have to cast all the time when parsing the resulting token stream. Also, removed start/end stream tokens. Jesse Beder 2008-06-30 21:47:21 +00:00
  • b6a0ef207b Started the parser. Jesse Beder 2008-06-30 06:51:22 +00:00
  • ed6c294749 Added a peek token command (for the parser to use). Jesse Beder 2008-06-30 06:21:12 +00:00
  • 07d4cac48f Added directives and tags. Jesse Beder 2008-06-30 04:22:41 +00:00
  • 2b8628922f Moved the three scalar token scanning functions back to scantoken.cpp, so scanscalar.cpp now only has the main scalar scanning function. Renamed ScanScalarInfo to ScanScalarParams. Jesse Beder 2008-06-30 01:38:32 +00:00
  • 0683cbf859 Mostly finished refactoring the scalar scanning. Jesse Beder 2008-06-30 01:31:23 +00:00
  • 5f8252ee6f Moved scalar scanning-related parameters to a struct. Renamed the valid/possible tokens to a single variable status with enums valid, invalid, and unverified. Jesse Beder 2008-06-29 17:39:33 +00:00
  • ff99f85a6d Moved the input stream, together with line/column info, into its own class, which allowed some other stuff just to pass the stream, and not have to be a member of Scanner. Jesse Beder 2008-06-29 06:32:13 +00:00
  • 0d5a97bffe Refactored common scalar scanning code (from plain, quoted, and block) to one function. Jesse Beder 2008-06-29 05:45:41 +00:00
  • 6c193d6fbd Moved the scalar-related functions to their own file. Jesse Beder 2008-06-29 03:11:25 +00:00
  • d076252dff Jesse Beder 2008-06-29 00:33:34 +00:00
  • 2e27c5d9c3 Small refactoring. Jesse Beder 2008-06-28 22:05:51 +00:00
  • 72b443375c Jesse Beder 2008-06-28 20:09:49 +00:00
  • 43ea59a4ed Added folded and literal scalars. Jesse Beder 2008-06-28 20:08:21 +00:00
  • 01ef70a6f9 Fixed complex keys. Jesse Beder 2008-06-28 17:32:10 +00:00
  • c63ebbd878 Moved the simple key validation to before each token scan (plus at newlines of scalars). Jesse Beder 2008-06-28 16:46:37 +00:00
  • 11706abbb7 Added simple keys. There's a bug (and question): should we test simple keys' validity BEFORE stuff or AFTER stuff? Jesse Beder 2008-06-28 06:36:59 +00:00
  • 49a75b2d78 Added quoted scalars (with escaping). Refactored some common whitespace-parsing code in scanning both scalars. Implemented the flow collection tokens. Jesse Beder 2008-06-27 23:11:46 +00:00
  • a224c7818b Small plain scalar scanning fixes. Jesse Beder 2008-06-27 20:54:43 +00:00
  • 8fca02fb2a Split off the specific regular expressions, and the specialized token-scanning functions, into their own files. Jesse Beder 2008-06-27 19:13:03 +00:00
  • de29068110 Added stream input to the regular expressions, greatly simplifying the usage (in particular, we no longer have to specify the number of characters to be checked). Jesse Beder 2008-06-27 19:07:30 +00:00
  • 4e435b1321 Wrote a simplified regular expression parser to make life easier (it only does single matches; i.e., no one-or-more matches, etc.). Fixed some of the whitespace/line break matching. Jesse Beder 2008-06-27 08:20:41 +00:00
  • 873dbc2421 The plain scalar scanner is almost done (and it scans a simple list correctly). Also messed around with multiple character peeking on the input, and got something working. Jesse Beder 2008-06-27 00:18:52 +00:00
  • 31f7db5a0d More simple scalar scanning. Jesse Beder 2008-06-26 22:00:39 +00:00
  • a3961d047f Continued working on scanner. We're now using exceptions for errors, and scanning/pushing tokens is exception-safe (using a set of "limbo tokens"). Jesse Beder 2008-06-26 19:30:11 +00:00
  • 8ae7b48188 Started the scanner. Jesse Beder 2008-06-26 09:05:28 +00:00
  • bcbca461de Beginning of first attempt to parse. Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism. Jesse Beder 2008-06-26 06:49:50 +00:00
  • 4ed7f62431 Preliminary setup - basic data structures are there. Jesse Beder 2008-06-25 23:00:18 +00:00
  • e22eea26b1 Jesse Beder 2008-06-25 22:46:18 +00:00
  • 110a7f06a8 Jesse Beder 2008-06-25 22:45:08 +00:00
  • bb55b0ba91 Jesse Beder 2008-06-25 22:44:44 +00:00