Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | util.datamanager: Fix missing pack format when reading first index entry | Kim Alvefur | 2023-11-30 | 1 | -1/+1 |
| | | | | Thanks MattJ | ||||
* | util.datamanager: Load first item into index earlier | Kim Alvefur | 2023-11-27 | 1 | -1/+2 |
| | | | | Should get rid of fseek() call | ||||
* | util.datamanager: Clean up list index files on purge (i.e. user deletion) | Kim Alvefur | 2023-11-02 | 1 | -0/+2 |
| | |||||
* | util.datamanager: Always reset index after list shift | Kim Alvefur | 2023-07-22 | 1 | -39/+4 |
| | | | | | | Shifting the index does not work reliably yet, better to rebuild it from scratch. Since there is minimal parsing involved in that, it should be more efficient anyway. | ||||
* | util.datamanager: Add way to close indexed list store | Kim Alvefur | 2023-07-21 | 1 | -1/+9 |
| | |||||
* | util.datamanager: Close file handle when done using it | Kim Alvefur | 2023-07-21 | 1 | -0/+1 |
| | | | | | It gets closed eventually but at high load they could potentially lead to reaching FD limits faster. | ||||
* | util.datamanager: Disable blockwise removal | Kim Alvefur | 2023-07-21 | 1 | -1/+4 |
| | | | | In desperate need of tests | ||||
* | util.datamanager: Disable block alignment | Kim Alvefur | 2023-07-21 | 1 | -0/+2 |
| | | | | | Until we have more test coverage. Somehow the index becomes incorrect after inserting padding, unclear why. | ||||
* | util.datamanager: Pad list writes to avoid crossing block boundaries | Kim Alvefur | 2023-06-07 | 1 | -0/+7 |
| | | | | | | | | | | | By padding items so that they do not cross block boundaries, it becomes eaiser to delete whole blocks with fallocate() without cutting items in half, improving efficiency of such operations. Since list stores are used for message archives, where the most common deletion operation would be of the oldest entires, at the top of the file. With this, all blocks that contain items to be removed could be deleted without needing to read, delete and write out the whole file. | ||||
* | util.datamanager: Efficiently remove whole blocks to shift lists | Kim Alvefur | 2023-07-12 | 1 | -0/+40 |
| | | | | | Using the new pposix.remove_blocks() it should be very performant to delete whole sections of a file, given a supporting file system. | ||||
* | util.datamanager: Add way to efficiently remove first items in a list | Kim Alvefur | 2023-07-12 | 1 | -0/+92 |
| | | | | | Copying data without parsing it should be more performant than parsing it serializing back. | ||||
* | util.datamanager: Fix indexing first item if not at the very start | Kim Alvefur | 2023-07-10 | 1 | -2/+2 |
| | | | | | | | | If the first item does not start at position 0 then the index function produces a phantom first entry covering position zero until where the real first item starts. When using the index, this would make it either appear as the first item was missing or cause an off-by-one issue with remaining items. | ||||
* | util.datamanager: Reduce log level of left over debug messages to debug ↵ | Kim Alvefur | 2023-07-12 | 1 | -2/+2 |
| | | | | | | (thanks Trung) These were mostly 'warn' to make them stand out from the debug noise | ||||
* | util.datamanager: Fix missing separator in log line | Kim Alvefur | 2023-07-10 | 1 | -1/+1 |
| | |||||
* | util.datamanager: Halve size of list index | Kim Alvefur | 2021-05-14 | 1 | -11/+15 |
| | | | | | Instead of storing (start, length) tuples, store the offset to the end of items and derive length using the previous entry. | ||||
* | util.datamanager: Add O(1) list indexing with on-disk index | Kim Alvefur | 2021-05-11 | 1 | -0/+191 |
| | | | | | | | | | | | | Index file contains offsets and lengths of each item() which allows seeking directly to each item and reading it without parsing the entire file. Also allows tricks like binary search, assuming items have some defined order. We take advantage of the 1-based indexing in tables to store a magic header in the 0 position, so that table index 1 ends up at file index 1. | ||||
* | util: Prefix module imports with prosody namespace | Kim Alvefur | 2023-03-17 | 1 | -4/+4 |
| | |||||
* | spelling: non-existing mistakes (thanks timeless)0.12.0 | Kim Alvefur | 2022-03-07 | 1 | -2/+2 |
| | |||||
* | Spelling: Fix various spelling mistakes (thanks timeless) | Kim Alvefur | 2022-03-07 | 1 | -2/+2 |
| | | | | | | Words, sometimes I wonder how they even work Maybe I missed something. | ||||
* | util.datamanager: Support iterating over any file extension | Kim Alvefur | 2021-02-07 | 1 | -4/+3 |
| | | | | | | | | The 'typ' argument to all other functions is the actual file extension, but not here for some reason. May need this for iterating over the .bin files created by mod_http_file_share in the future. | ||||
* | util.datamanager: Fix not passing variables as format string to logger ↵ | Kim Alvefur | 2021-01-16 | 1 | -1/+1 |
| | | | | | | | (thanks semgrep) Passing error messages as format string could lead to errors, although not a problem anymore since util.format sanitizes this. | ||||
* | Merge 0.11->trunk | Kim Alvefur | 2020-02-24 | 1 | -1/+1 |
|\ | |||||
| * | util.datamanager: Fix iterating over "users" (thanks marc0s) | Kim Alvefur | 2020-02-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | The 'store' path componend used to be unescaped until 756a2a00e7e7 added escaping to address issues with characters like '/' used in PEP, but with a special case for '_' which was already in common use in 'store' path components. Missed adding this escaping here. | ||||
* | | util.datamanager: Ignore unused 'errno' variable [luacheck] | Kim Alvefur | 2019-12-23 | 1 | -1/+2 |
| | | |||||
* | | Fix various spelling mistakes [codespell] | Kim Alvefur | 2019-05-03 | 1 | -1/+1 |
|/ | |||||
* | vairious: Add annotation when an empty environment is set [luacheck] | Kim Alvefur | 2018-02-28 | 1 | -0/+1 |
| | |||||
* | util.datamanager: Encode the 'store' path component, preserving underscores | Kim Alvefur | 2017-10-08 | 1 | -1/+8 |
| | |||||
* | util.datamanager: Use already known index instead of measuring length each ↵ | Kim Alvefur | 2017-04-17 | 1 | -2/+2 |
| | | | | iteration | ||||
* | util.datamanager: Log where the error came from | Kim Alvefur | 2017-03-28 | 1 | -3/+4 |
| | |||||
* | util.datamanager: Rearrange locals | Kim Alvefur | 2017-03-28 | 1 | -3/+2 |
| | |||||
* | util.datamanager: Use pposix.atomic_append | Kim Alvefur | 2017-02-28 | 1 | -23/+17 |
| | |||||
* | util.datamanager: Remove check for file non-existence since ENOENT tells us ↵ | Kim Alvefur | 2017-03-22 | 1 | -18/+4 |
| | | | | that already | ||||
* | util.datamanager: Split long line [luacheck] | Kim Alvefur | 2017-03-22 | 1 | -1/+3 |
| | |||||
* | util.datamanager: Expose atomic_store as store_raw | Kim Alvefur | 2017-03-01 | 1 | -0/+1 |
| | |||||
* | util.datamanager: Use atomic store function when writing the first entry of ↵ | Kim Alvefur | 2017-03-01 | 1 | -4/+1 |
| | | | | a list | ||||
* | util.datamanager: Import value of ENOENT from util.pposix (if available) | Kim Alvefur | 2017-03-01 | 1 | -0/+1 |
| | |||||
* | util.datamanager: Ignore ENOENT (no such file) when loading data | Kim Alvefur | 2017-03-01 | 1 | -4/+13 |
| | |||||
* | util.datamanager: Shorter pattern | Kim Alvefur | 2016-11-20 | 1 | -1/+1 |
| | |||||
* | util.datamanager: Remove extraneous decoding of + to space, which we never ↵ | Kim Alvefur | 2016-11-20 | 1 | -1/+1 |
| | | | | never encode to | ||||
* | util.datamanager: Use the 'base' argument to tonumber() to indicate hexadecimal | Kim Alvefur | 2016-11-20 | 1 | -1/+1 |
| | |||||
* | util.datamanager: Add annotations to ignore name clashes [luacheck] | Kim Alvefur | 2016-09-24 | 1 | -5/+5 |
| | |||||
* | util.datamanager: Rename variables to avoid name clashes [luacheck] | Kim Alvefur | 2016-09-24 | 1 | -12/+12 |
| | |||||
* | util.datamanager: Import tostring and type (fix global access) | Kim Alvefur | 2016-05-22 | 1 | -0/+2 |
| | |||||
* | util.datamanager: Explicit handling of each error condition (see #632) | Kim Alvefur | 2016-02-27 | 1 | -14/+16 |
| | |||||
* | Merge 0.9->0.10 | Kim Alvefur | 2016-02-25 | 1 | -0/+1 |
|\ | |||||
| * | util.datamanager: Unreference file handle after closing it to prevent trying ↵ | Kim Alvefur | 2016-02-25 | 1 | -0/+1 |
| | | | | | | | | to close it again (fixes #632) | ||||
* | | util.datamanager: Add append to public api | Kim Alvefur | 2015-12-11 | 1 | -0/+1 |
| | | |||||
* | | util.datamanager: Return extra location info | Kim Alvefur | 2015-12-11 | 1 | -3/+3 |
| | | |||||
* | | util.datamanager: Make sure only strings are passed as data to append() | Kim Alvefur | 2015-12-11 | 1 | -0/+1 |
| | | |||||
* | | util.datamanager: Add some comments about the append function | Kim Alvefur | 2015-12-11 | 1 | -0/+3 |
| | |