]>
git.tdb.fi Git - libs/datafile.git/log
Mikko Rasa [Mon, 1 Nov 2021 09:09:46 +0000 (11:09 +0200)]
Remove the obsolete LoadableTypeRegistry class
Mikko Rasa [Sun, 31 Oct 2021 22:50:40 +0000 (00:50 +0200)]
Use the override specifier to mark overridden virtual functions
Mikko Rasa [Sun, 31 Oct 2021 20:16:55 +0000 (22:16 +0200)]
Use variadic templates and forwarding references for better flexibility
Mikko Rasa [Sun, 31 Oct 2021 19:16:01 +0000 (21:16 +0200)]
Use default member initializers for constant initial values
Mikko Rasa [Sun, 31 Oct 2021 19:12:00 +0000 (21:12 +0200)]
Mark empty constructors and destructors as defaulted
Mikko Rasa [Sun, 31 Oct 2021 18:54:30 +0000 (20:54 +0200)]
Add missing includes
Mikko Rasa [Sun, 31 Oct 2021 18:53:33 +0000 (20:53 +0200)]
Use plain function pointer instead of std::function
The lambda ended up having no captures, so this works.
Mikko Rasa [Sun, 31 Oct 2021 18:53:07 +0000 (20:53 +0200)]
Explicitly convert regex match to boolean
Mikko Rasa [Sun, 31 Oct 2021 18:52:56 +0000 (20:52 +0200)]
Use nullptr instead of 0 for pointers
Mikko Rasa [Sun, 31 Oct 2021 18:39:47 +0000 (20:39 +0200)]
Make boolean conversion operators explicit
Mikko Rasa [Thu, 7 Oct 2021 12:54:23 +0000 (15:54 +0300)]
Tweak DynamicObjectLoader to make it extensible
Subclasses can now override te type handler and access the object without
clearing it, for example to perform some custom initialization after the
object has been created.
Mikko Rasa [Thu, 7 Oct 2021 12:47:09 +0000 (15:47 +0300)]
Remove unnecessary capture from a lambda
Mikko Rasa [Wed, 6 Oct 2021 21:33:30 +0000 (00:33 +0300)]
Also call finish on auxiliary loaders
Mikko Rasa [Wed, 6 Oct 2021 20:27:34 +0000 (23:27 +0300)]
Return the object from DynamicObjectLoader::store_object
This provides an easy way to both store the object and also use it.
Mikko Rasa [Wed, 6 Oct 2021 20:25:19 +0000 (23:25 +0300)]
Avoid inconsistent state in Collection if a notify function throws
Mikko Rasa [Tue, 5 Oct 2021 22:08:46 +0000 (01:08 +0300)]
Change remaining fixed-size integers to standard types
Mikko Rasa [Tue, 5 Oct 2021 22:00:48 +0000 (01:00 +0300)]
Add support for storing the loaded object in DynamicObjectLoader
This allows the object to be stored in the collection using its actual
type rather than the base class.
Mikko Rasa [Tue, 5 Oct 2021 21:03:35 +0000 (00:03 +0300)]
Redesign Collection's creator and notify mechanisms to be more generic
They now allow any functors, including lambdas.
Mikko Rasa [Tue, 5 Oct 2021 10:55:37 +0000 (13:55 +0300)]
Add a class for loading dynamically typed objects
Mikko Rasa [Tue, 31 Aug 2021 00:27:50 +0000 (03:27 +0300)]
Fix incorrect order of memcpy args
Mikko Rasa [Sun, 29 Aug 2021 22:54:20 +0000 (01:54 +0300)]
Remove unnecessary header
Mikko Rasa [Sun, 29 Aug 2021 22:52:34 +0000 (01:52 +0300)]
Force correct conversion of symbols
MSVC attempts to use the conversion operator in Symbol rather than
Value's constructor.
Mikko Rasa [Sun, 29 Aug 2021 18:29:32 +0000 (21:29 +0300)]
Use C++11 features to manipulate containers
Mikko Rasa [Sun, 29 Aug 2021 14:17:23 +0000 (17:17 +0300)]
Use metaprogramming constructs from std
Mikko Rasa [Sun, 29 Aug 2021 10:33:54 +0000 (13:33 +0300)]
Perform bit conversion using standard-sanctioned memcpy method
The compiler should be able to optimize it away.
Mikko Rasa [Sun, 29 Aug 2021 10:32:08 +0000 (13:32 +0300)]
Use <cstdint> in BinFloat
Mikko Rasa [Sun, 29 Aug 2021 10:29:29 +0000 (13:29 +0300)]
Require C++11 for building
Mikko Rasa [Sun, 29 Aug 2021 10:11:45 +0000 (13:11 +0300)]
Bump version for upcoming changes
Mikko Rasa [Sun, 25 Apr 2021 11:07:56 +0000 (14:07 +0300)]
Add a mechanism for collections to be notified when an item is added
Mikko Rasa [Fri, 23 Apr 2021 11:41:07 +0000 (14:41 +0300)]
Remove some long-deprecated things
Mikko Rasa [Sun, 18 Apr 2021 12:05:19 +0000 (15:05 +0300)]
Reserve enough storage for the output in base64_decode
Mikko Rasa [Mon, 12 Apr 2021 21:53:03 +0000 (00:53 +0300)]
Add support for base64-encoded strings in text format
They're much more efficient both space and decoding wise than using C
escapes to encode binary data.
Mikko Rasa [Mon, 12 Apr 2021 11:53:59 +0000 (14:53 +0300)]
Deprecate LoadableTypeRegistry
The general-purpose TypeRegistry in mspcore solves the same problems
better.
Mikko Rasa [Fri, 19 Feb 2021 23:10:34 +0000 (01:10 +0200)]
Report locations of errors through multiple levels of referenced files
Mikko Rasa [Sun, 17 Jan 2021 10:51:10 +0000 (12:51 +0200)]
Minor style/typo fixes
Mikko Rasa [Sun, 17 Jan 2021 10:50:10 +0000 (12:50 +0200)]
Make Loader::ActionMap delete the actions
This ensures actions in shared action maps are deleted as well
Mikko Rasa [Sun, 17 Jan 2021 10:45:49 +0000 (12:45 +0200)]
Turn Statement into a struct
Mikko Rasa [Sun, 17 Jan 2021 10:41:50 +0000 (12:41 +0200)]
Implement proper copy semantics
All classes are now either safe to copy or are marked noncopyable.
Mikko Rasa [Sun, 17 Jan 2021 10:42:22 +0000 (12:42 +0200)]
Make the File reference in PackSource::Object const
Mikko Rasa [Wed, 30 Dec 2020 16:41:38 +0000 (18:41 +0200)]
Fix an incorrect condition for throwing an exception
Null actions are allowed, so only throw if there was no match.
Mikko Rasa [Wed, 30 Dec 2020 16:40:48 +0000 (18:40 +0200)]
Add find functions to Collection
Mikko Rasa [Sun, 19 Apr 2020 14:30:36 +0000 (17:30 +0300)]
Support custom action maps in loader classes
This makes it possible to implement a persistent action map which is
only initialized once the first time a particular class is used.
Mikko Rasa [Sun, 19 Apr 2020 14:24:55 +0000 (17:24 +0300)]
Support loader functions with bound first argument
This allows more flexibility in defining dynamic keywords. Only
available with C++11.
Mikko Rasa [Sun, 19 Apr 2020 14:23:50 +0000 (17:23 +0300)]
Support N-ary loader functions if compiling in C++11 mode
Mikko Rasa [Sun, 19 Apr 2020 14:09:07 +0000 (17:09 +0300)]
Allow non-loadable types in collections
Custom collection classes may wish to provide objects of such types
through creator functions.
Mikko Rasa [Sun, 19 Apr 2020 13:24:11 +0000 (16:24 +0300)]
Update a SFINAE construct
Mikko Rasa [Sun, 19 Apr 2020 13:22:51 +0000 (16:22 +0300)]
Prefer vector over list
Mikko Rasa [Wed, 21 Aug 2019 22:06:52 +0000 (01:06 +0300)]
Throw an exception if trying to load a nonexistent file
Collection::open_raw returns a null pointer in this case so it must be
checked.
Mikko Rasa [Wed, 12 Jun 2019 16:43:28 +0000 (19:43 +0300)]
Add support for generating .cpp files for BuiltinSource
Mikko Rasa [Wed, 12 Jun 2019 16:42:25 +0000 (19:42 +0300)]
Use IO::BufferedFile in the packer component of datatool
Mikko Rasa [Wed, 12 Jun 2019 10:13:22 +0000 (13:13 +0300)]
Add a utility for registering types for loading
Somewhat ironically Collection can't use this because it has much more
complex requirements.
Mikko Rasa [Fri, 7 Jun 2019 17:27:17 +0000 (20:27 +0300)]
Allow modifying existing types in a collection
Mikko Rasa [Mon, 3 Jun 2019 11:54:16 +0000 (14:54 +0300)]
Annotate deprecated identifiers as such
Mikko Rasa [Mon, 3 Jun 2019 08:22:05 +0000 (11:22 +0300)]
Use a larger buffer size when transferring pack contents
Mikko Rasa [Mon, 3 Jun 2019 08:20:23 +0000 (11:20 +0300)]
Respect the TMPDIR environment variable when creating data packs
Mikko Rasa [Mon, 3 Jun 2019 08:16:18 +0000 (11:16 +0300)]
Prefer exact type match when looking for Loader actions
Previosuly the first matching action in alphabetical signature order was
taken, which causes a float overload to be chosen for an int value even
if an int overload was also available.
Mikko Rasa [Mon, 3 Jun 2019 08:15:11 +0000 (11:15 +0300)]
Add a test case for Loader overload resolution
Mikko Rasa [Mon, 3 Jun 2019 08:12:40 +0000 (11:12 +0300)]
Update Collection terminology
Mostly in test cases but there was one lingering reference to "future"
objects in the actual header as well.
Mikko Rasa [Mon, 3 Jun 2019 07:29:35 +0000 (10:29 +0300)]
Fix test cases so they compile again
Mikko Rasa [Fri, 24 May 2019 17:25:39 +0000 (20:25 +0300)]
Add more flexible versions of the load function
Firstly there's a variadic version of the basic load function. Secondly
and perhaps more importantly there are versions which can load an object
from a file stored in a collection. All of these are only implemented
for C++11 for now, since supporting the old version seems increasingly
irrelevant.
Mikko Rasa [Fri, 24 May 2019 17:04:36 +0000 (20:04 +0300)]
Move NeedsCollection into its own header and adjust for new Sfinae struct
Mikko Rasa [Wed, 21 Feb 2018 17:30:40 +0000 (19:30 +0200)]
Use automatic base detection when parsing integers
Mikko Rasa [Fri, 6 Jan 2017 02:54:59 +0000 (04:54 +0200)]
Add a missing include
Mikko Rasa [Tue, 15 Nov 2016 15:57:21 +0000 (17:57 +0200)]
Add a source class for builtin data
Mikko Rasa [Sat, 5 Nov 2016 07:47:56 +0000 (09:47 +0200)]
Provide access to the keyword of the current statement
Mikko Rasa [Sat, 29 Oct 2016 16:45:40 +0000 (19:45 +0300)]
Replace files from earlier packs with those from the newly added one
Mikko Rasa [Wed, 26 Oct 2016 21:12:46 +0000 (00:12 +0300)]
Prioritize matching suffixes when looking for a type
Mikko Rasa [Mon, 19 Sep 2016 14:00:06 +0000 (17:00 +0300)]
Merge remote-tracking branch 'origin/master'
Mikko Rasa [Mon, 19 Sep 2016 13:45:15 +0000 (16:45 +0300)]
Move all exception classes to except.h, for real this time
Mikko Rasa [Fri, 2 Sep 2016 12:34:48 +0000 (15:34 +0300)]
Implement a parser mode for JSON files
Mikko Rasa [Fri, 2 Sep 2016 12:34:15 +0000 (15:34 +0300)]
Move token-to-argument conversion to Statement
Mikko Rasa [Fri, 2 Sep 2016 11:44:08 +0000 (14:44 +0300)]
Some refactoring of TextParser logic
Mikko Rasa [Fri, 2 Sep 2016 11:41:49 +0000 (14:41 +0300)]
Move all exception classes to a common header
Mikko Rasa [Sun, 31 Jan 2016 15:37:38 +0000 (17:37 +0200)]
Don't use deprecated typedefs
Mikko Rasa [Mon, 7 Dec 2015 19:01:13 +0000 (21:01 +0200)]
Store offsets and sizes in PackSource as 64-bit ints
Mikko Rasa [Tue, 24 Nov 2015 20:19:06 +0000 (22:19 +0200)]
Add a getter for fallback in Collection
Mikko Rasa [Wed, 18 Nov 2015 20:45:18 +0000 (22:45 +0200)]
Use const sources in Collection
The CollectionSource interface is entirely const anyway.
Mikko Rasa [Sat, 14 Nov 2015 17:05:03 +0000 (19:05 +0200)]
Chain get_status to fallback collection if one is defined
Mikko Rasa [Fri, 13 Nov 2015 08:53:35 +0000 (10:53 +0200)]
Remove the loaded flag from PackSource files
It seems to be a relic from ancient times. It also causes problems in
certain situations where it's desirable to remove and reload items.
Mikko Rasa [Mon, 7 Sep 2015 09:26:58 +0000 (12:26 +0300)]
Add an unpack option to the data tool
Mikko Rasa [Sat, 7 Mar 2015 02:07:09 +0000 (04:07 +0200)]
Plug a memory leak
Mikko Rasa [Fri, 19 Dec 2014 03:34:44 +0000 (05:34 +0200)]
Accept int-to-float conversion in array signature
Mikko Rasa [Mon, 10 Nov 2014 17:47:56 +0000 (19:47 +0200)]
Add version of add_pack_io with filter
Mikko Rasa [Sun, 19 Oct 2014 17:33:05 +0000 (20:33 +0300)]
Support adding packs from IO::Seekable objects
This allows using any seekable objects as packs, such as Android assets.
Mikko Rasa [Sun, 19 Oct 2014 13:00:27 +0000 (16:00 +0300)]
Provide help for datatool's command line options
Also use add_argument instead of the deprecated get_args.
Mikko Rasa [Sun, 19 Oct 2014 08:58:00 +0000 (11:58 +0300)]
More resiliece against certain corner cases when direct loading
An empty binary file terminated with __end was causing problems as the
very first peek call would return null, causing Loader to fall back to
indirect loading. However, the __end was already processed by peek, so
the parse call would fail.
Mikko Rasa [Wed, 15 Oct 2014 18:22:07 +0000 (21:22 +0300)]
Make Loader a virtual base of ObjectLoader to permit diamond inheritance
Useful when creating loader classes through composition.
Mikko Rasa [Sun, 5 Oct 2014 18:21:51 +0000 (21:21 +0300)]
Fix a class/struct inconsistency
Mikko Rasa [Sun, 5 Oct 2014 11:54:14 +0000 (14:54 +0300)]
Require sigc++-2.0 since PackSource uses it
The signal connection may be refactored into libmspcore in the future,
but it's required here for now.
Mikko Rasa [Sun, 5 Oct 2014 01:50:48 +0000 (04:50 +0300)]
Add a flag to control replacement of DirectorySource entries
Mikko Rasa [Sun, 20 Apr 2014 09:53:33 +0000 (12:53 +0300)]
Use dynamic_cast to support Collection as virtual base class
Mikko Rasa [Thu, 19 Dec 2013 21:58:53 +0000 (23:58 +0200)]
Fix logic problems when ignoring a statement in the middle of direct load
Each recursive call to parse() was subtracting one from sub_remaining,
causing it to get out of sync with the actual statement hierarchy.
Mikko Rasa [Tue, 17 Dec 2013 01:01:06 +0000 (03:01 +0200)]
Detect eof from the parser, not input file
Some files have an embedded logical eof, so waiting for the end of the
physical file would (and did) cause an infinite loop.
Mikko Rasa [Sat, 12 Oct 2013 17:10:45 +0000 (20:10 +0300)]
Expose raw open functionality from Collection
There are several scenarios where streaming or asynchronous loading is
useful.
Mikko Rasa [Sat, 12 Oct 2013 15:55:33 +0000 (18:55 +0300)]
Invoke creators from get_list
Mikko Rasa [Sat, 12 Oct 2013 15:21:30 +0000 (18:21 +0300)]
Avoid duplicate names if an item is available from multiple sources
Mikko Rasa [Thu, 5 Sep 2013 14:53:35 +0000 (17:53 +0300)]
Export file metadata from PackSource
Mikko Rasa [Mon, 19 Aug 2013 14:00:11 +0000 (17:00 +0300)]
Don't forget to initialize the control statement flag
Mikko Rasa [Mon, 5 Aug 2013 11:56:26 +0000 (14:56 +0300)]
More efficient way of loading binary files
The Variant array for storing arguments in Statement is too slow. Bypass
it by passing args directly to the action in a sort of ad-hoc struct.
Mikko Rasa [Mon, 5 Aug 2013 09:32:43 +0000 (12:32 +0300)]
Move newline eating out of BinaryParser
It's really a feature of the mode change logic, not the binary mode
itself.