Commit graph

801 commits

Author SHA1 Message Date
Kiith-Sa d6617f327f More nothrow/formatting fixes (by John Colvin). 2012-12-27 21:50:09 +01:00
Kiith-Sa f33918748a Replaced 'in' by 'const' in exception, scanner. 2012-12-27 21:21:56 +01:00
Kiith-Sa 163b3c9d54 std.string.format compatibility fixes (by John Colvin) 2012-12-27 21:21:18 +01:00
Kiith-Sa 6018fc49ea @safe/nothrow changes (by John Colvin) 2012-12-27 20:56:15 +01:00
Kiith-Sa b6ecb80f4b Fixed a minor output formatting bug. 2012-12-27 20:11:57 +01:00
Kiith-Sa 5f2cc8791d .gitignore update. 2012-12-27 20:11:38 +01:00
Kiith-Sa 4b3bf5fccc Minor formatting fixes. 2012-12-27 20:11:26 +01:00
Kiith-Sa f4dc3690f4 Fixed CDC for LDMD2. 2012-12-17 21:09:33 +01:00
John-Colvin 2b1abda154 Fix remaining format errors 2012-12-11 16:06:20 +00:00
John-Colvin 397ac65baa modified: dyaml/exception.d
modified:   dyaml/representer.d
2012-12-11 15:32:25 +00:00
John-Colvin 75e2e7f80a modified: dyaml/constructor.d
modified:   test/src/common.d
2012-12-04 15:34:29 +00:00
John-Colvin 94adb4241e modified: dyaml/constructor.d
modified:   dyaml/node.d
	modified:   test/src/common.d
2012-12-04 13:50:59 +00:00
John-Colvin 1412466e93 modified: dyaml/constructor.d
modified:   dyaml/dumper.d
	modified:   dyaml/emitter.d
	modified:   dyaml/exception.d
	modified:   dyaml/node.d
	modified:   dyaml/parser.d
	modified:   dyaml/representer.d
	modified:   dyaml/scanner.d
	modified:   dyaml/zerostring.d
2012-12-04 12:02:33 +00:00
kiith-sa 499ce02178 Merge branch 'master' of github.com:kiith-sa/D-YAML 2012-11-02 14:33:09 +01:00
kiith-sa f93e3cf032 Minor debug message fixes. 2012-11-02 14:32:09 +01:00
kiith-sa 4ccd938a43 Utility function to create a loader from string (avoids API-break in future). 2012-11-02 14:31:50 +01:00
kiith-sa f493ad540e Updated .gitignore. 2012-11-02 14:30:56 +01:00
Ferdinand Majerech 4d737be931 Fixed a bug that broke mappings longer than 65536 lines. 2012-09-26 11:51:47 +02:00
kiith-sa c7e97b6113 User defined constructors now can construct all default types (e.g. float). 2012-09-22 22:45:37 +02:00
kiith-sa edf3e2a799 Using std.typecons.Flag where possible, and more in->const. 2012-09-14 01:21:01 +02:00
kiith-sa 19d88d156a Simplified some Emitter code. 2012-09-14 01:16:05 +02:00
kiith-sa 58fc17197b Replaced some incorrect 'in' uses with 'const'. 2012-09-13 21:37:28 +02:00
kiith-sa 4f78702a57 Added pure/@safe/nothrow where possible. 2012-09-09 01:42:13 +02:00
kiith-sa 37a661b034 Fixed compilation with DMD 2.058.
There are some hacks to allow toHash() methods
to be const nothrow @safe, these are due to
Phobos problems (e.g. Variant.toHash() is not const nor nothrow).
2012-08-30 15:38:51 +02:00
Ferdinand Majerech c690d56d9f Added a property to determine if the node is null. 2012-04-07 03:59:54 +02:00
Ferdinand Majerech 5aacfe79b2 Improved an error message when there's no constructor for a tag. 2012-04-01 16:57:21 +02:00
Ferdinand Majerech fdceb1bdcb Fixed a bug on Ubuntu 10.04 2012-03-23 19:57:57 +01:00
Ferdinand Majerech 206499a399 Fixed CDC on Windows 2012-03-20 06:29:25 +01:00
Ferdinand Majerech 1a1783a228 Fixed a compilation bug on 32bit. 2012-03-19 14:31:11 +01:00
Ferdinand Majerech d64de6a312 Merged implementations of Node.remove() and Node.removeAt(). 2012-03-01 17:43:42 +01:00
Ferdinand Majerech 2505c0b3af Improved Node exception messages. 2012-03-01 15:23:53 +01:00
Ferdinand Majerech 2448c69f55 Added containsKey() to check if a mapping has specified key. 2012-03-01 13:17:32 +01:00
Ferdinand Majerech ebc6e64c2b API BREAKING:
Node opEquals(), opIndex(), opIndexAssign(), remove(), removeAt()
no longer automatically convert to string. This was changed
to prevent the API from getting too non-obvious, and to
remove the need for too many special cases in the code.
The API documentation was changed accordingly.
opApply()  still automatically converts to string.

Added a contains() method to Node.

Clarified YAML null values in the documentation.

Improved unittests.

Fixed a bug that caused opIndex() and opIndexAssign() to only
work with exactly the same type as stored in the node
(e.g. real, but not double, for floating-point values)

Fixed some potential bugs.

Minor documentation fixes.
2012-03-01 11:44:05 +01:00
Ferdinand Majerech 7673281ae4 CDC fixes for Windows. 2012-01-24 11:23:06 +01:00
Ferdinand Majerech 242960e927 Updated DMD links. 2012-01-23 18:40:05 +01:00
Ferdinand Majerech aad93aa42e Updated changelog for 0.4 . 2012-01-23 16:57:40 +01:00
Ferdinand Majerech 3e1b01f097 Updated version numbers to 0.4 . 2012-01-23 16:20:52 +01:00
Ferdinand Majerech 9596806644 Red-Black Trees are now used for duplicate detection, and planned
to be used for unordered map storage. This is because AAs still
don't work correctly and even if they did, require the user to
define both toHash and opCmp/opEquals for every YAML
struct/class. Now only opCmp needs to be defined.
Documentation/tutorials/examples have been updated accordingly.
2012-01-23 15:57:26 +01:00
Ferdinand Majerech 07eadc9403 Fixed a bug with parsing null values caused by std.regex changes,
and a minor ZeroString fix.
2012-01-23 01:19:49 +01:00
Ferdinand Majerech 06e3a6db3b CDC improvements and an a fix in AutoDDoc. 2012-01-23 01:16:57 +01:00
Ferdinand Majerech d46a3ac5c2 Fixed a bug that caused an out of range error when a key in a
mapping could not be found.
2012-01-22 17:03:32 +01:00
Ferdinand Majerech 04af9bf240 Fixed some compilation bugs on 32bit. 2012-01-22 10:37:44 +01:00
Ferdinand Majerech 01c0ea6cd6 Merge pull request #1 from stefanhepp/master
Added a fix for a compile error with the latest dmd version
2012-01-20 01:37:19 -08:00
Stefan Hepp bb54e6db41 Fix for compile error with dmd 2.057 2012-01-19 17:51:42 +01:00
Ferdinand Majerech 10dbb55ed8 Minor documentation and API fixes. 2011-11-18 12:28:29 +01:00
Ferdinand Majerech fbc962623d Simplified the Constructor API. 2011-11-17 23:53:24 +01:00
Ferdinand Majerech ab154480fb Final commit before tha 0.3 release. 2011-11-16 20:41:21 +01:00
Ferdinand Majerech 2c9d464389 Reader was reimplemented.
After experiments with loading the whole file at once, and
with decoding and parsing in separate thread, lazy reader
turned to be the fastest/least memory intensive solution.
Characters are now decoded in small batches.
This improved parsing speed by ~20%.

No global state anymore. Anchors are now zero terminated strings
and TagDirectives are a simple array. Event structure was changed
to prevent size increase.
Minor fixes and improvements.
2011-11-16 03:10:29 +01:00
Ferdinand Majerech f95f0d14c8 Const correctness and minor bugfixes all over the code. 2011-10-30 20:24:43 +01:00
Ferdinand Majerech 8208e817de Updated Node for much more constness (unfortunately, quite some
code duplication as well). No longer need a custom Variant.
2011-10-30 18:12:02 +01:00