Skip to content
/ safely Public

C++ libraries to reduce stupid errors, and wrap annoying things with convenient syntax

Notifications You must be signed in to change notification settings

980f/safely

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The 'safely' library is C++ code for writing bug free code.
One of the critical classes for that is the Indexer template which takes a pointer and a length and makes it convenient to not access data outside that buffer.
Indexer's function naming needs work, most functions were named for first use but have in some cases been used quite differently than that first use.


Safely is divided into two main folders: things that are suitable for microcontrollers; things that interface to a full-up OS. The former contains functionality to avert common cpp poor programming practice, the latter contains functionality to avert common unix system programming poor practices. Another major criterion for which folder a class goes into is that none of the cpp utility classes use malloc either directly or indirectly, dynamic allocation is a bad idea in microcontroller applications.

The next facet of 'safely' is implementing change/event driven logic. On the system side the persistent storage mechanism uses sigc to invoke callbacks on change to persistent data. It is so convenient that I've been in the habit of creating persistent data structures with no backing storage just to use the callback system, and to add persistent storage to items just to have post-mortem debug of a process.

The persistance system (which may soon be broken out into its own folder) has as a core naming fragment 'Stor' (Store,Storable,Stored). That might seem a bit vague, or that it is naming the system for an under-the-hood aspect of it, but is very easy to type. Additionally other more common names for this class of feature are overused. The Stored system was initially built around a JSON persistence mechanism, but is not tied to that. All the JSON nature is outside of the Stor* classes. The persistent unit is a key-value pair, and one value type is a simple ordered collection of such key-value pairs. Note that null keys are allowed and in collection values, the index into the collection keeps the values unique. Stor* does not use hashtables for searching for a key as it was empirically found that linear searches were faster than computing hashes. The only case where that wasn't true was for the UI localization mechanism for which an external object was created to expedite searching (think RDMS index). The latter has not yet been field-tested as most UI screens had few enough text members, and the list of text was built by running the UI and as such the most frequently used items are at the head of the list. Someone later sorted the developed list of translation items for the ease of translation, but the performance hit was not felt by the users.

The worst weakness in the Storable base class is the non-const keys. That is a legacy of a bad use case that will be eliminated soon. That bad use case was using UI supplied text as keys, all such instances should use co-indexing between two sets of unkeyed values. The coindexing works as such: each StoredArray has callback lists for insertion events and deletion events. A common callback is one that adds or deletes an element in one array due to a similar change in another. There are convenience methods for making such hookups. In RDMS terms once you have set referential integrity deletes cascade, and insertions create new items not allowing there to be a null target to a reference. When an empty cell isn't the best choice for a coordinate insertion one creats a specific 'on insert' callback that will have available to it data from the object being inserted in the primary array for use in creating its coordinated object on the secondary array.

Glib is presently used in many of the change detection users. A major todo item is to isolate the Glib components. The prime functionality that is only doable via Glib at the moment is deferred execution of callbacks. It is hard for an application to control the order in which callbacks are inserted into the lists maintained within the guts of the sigc signalling library. Deferred executors schedule a callback to execute after sigc has iterated over a list of callbacks, allowing the deferred executor logic to prioritize activities (versus recreating that internal to this library). 

StorableIndexer: fast lookup for translation tables

These hook into the change detect for additions and deletions and upon such events update the index.
Is a friend class so that it can get pointers to the keys' raw text. 


About

C++ libraries to reduce stupid errors, and wrap annoying things with convenient syntax

Resources

Stars

Watchers

Forks

Packages

No packages published