Age | Commit message (Collapse) | Author |
|
|
|
* add commit notification.
* fix relative VAR references that traverse up to root level.
|
|
|
|
|
|
* reimplement process management to fix breakage caused by commit 792d6aa0dd0ecfd45c9b5ab57c6c0cb71a9b8da6.
|
|
(cherry picked from commit 1b2a0fd1ae1e6dfc18e4f75f73cd7befb47cf538)
|
|
* rename needs to mark the new tag value "changed".
|
|
|
|
|
|
* fix paths issue in edit mode.
|
|
* part of the config backend cleanup/optimization work.
* improves the performance of "load" (w/o commit) by ~55% and "show" by ~15%.
|
|
|
|
* activate/deactivate is pending redesign, so the old code no longer applies.
* conceptually activate/deactivate should be transparent to commit so removing the old code.
|
|
|
|
* this improves backend performance by ~15% in, e.g., "load" (w/o commit) and "show".
* this is only temporary and eventually caching should be done at higher level for better performance, and that will require config path abstraction.
|
|
|
|
|
|
|
|
* change shell API to only use "edit level" when needed.
* add factory functions for cstore creation to simplify code.
(cherry picked from commit 2208bfef1004295d3227492c6a3e9d7b36903db5)
|
|
|
|
* extend output/assert mechanism and simplify code.
* when handling internal error, automatically detect perl context and croak if the library is used from perl.
|
|
* for unionfs cstore implementation, enforce file size limit on both read and write and raise limit to 256 KB.
|
|
|
|
* add "commands diff" functionality to config input/output infrastructure.
* consolidate similar logic in "commands diff" and "show diff".
* add loadFile functionality to cstore using "commands diff".
* export loadFile through shell API.
|
|
* don't throw away "unsaved" state when doing "discard".
|
|
|
|
* also show non-existing nodes for "edit" completion.
|
|
* change showCfg to use new code.
* remove old files.
|
|
|
|
* separate data from algorithm.
* prepare for unified input/output framework.
|
|
* enforce session for API functions requiring it.
|
|
* disallow deactivate on leaf nodes. revisit after "default value"-related issues are resolved.
|
|
* set help string only if available.
* use "builtin" explicitly.
|
|
* fix ".*" filtering.
|
|
|
|
|
|
|
|
* replace the original ConfigOutput perl module.
* simplify logic and fix bugs in original code.
|
|
|
|
|
|
* unify node sorting implementation into the backend library.
* allow future implementation of per-node, customized sorting policy.
|
|
* remove public status modifier as high-level operations no longer need it.
* add more information to clarify changed status handling in library.
* mark changed status at appropriate places in library.
|
|
* need to move changed status handling into the library.
|
|
|
|
|
|
* original backend implementation uses unionfs-specific "changes only" dir to determine "changed" status. this breaks when it involves deactivated nodes.
* new library design uses explicit per-node "changed" marker. however, since previously "commit" only handles a root "changed" marker, the new library could not implement this scheme and used a workaround instead.
* now add API functions for "commit" to properly clean up "changed" markers.
* modify "commit" to use these API functions and remove the workaround from the new library.
|
|
|
|
|
|
|
|
* would have been a problem if template tree becomes more than 2^32 levels deep or if value strings longer than 2^32 characters are allowed.
|