aboutsummaryrefslogtreecommitdiffstats
path: root/util/datamanager.lua
Commit message (Collapse)AuthorAgeFilesLines
* util.datamanager: Shorter patternKim Alvefur2016-11-201-1/+1
|
* util.datamanager: Remove extraneous decoding of + to space, which we never ↵Kim Alvefur2016-11-201-1/+1
| | | | never encode to
* util.datamanager: Use the 'base' argument to tonumber() to indicate hexadecimalKim Alvefur2016-11-201-1/+1
|
* util.datamanager: Add annotations to ignore name clashes [luacheck]Kim Alvefur2016-09-241-5/+5
|
* util.datamanager: Rename variables to avoid name clashes [luacheck]Kim Alvefur2016-09-241-12/+12
|
* util.datamanager: Import tostring and type (fix global access)Kim Alvefur2016-05-221-0/+2
|
* util.datamanager: Explicit handling of each error condition (see #632)Kim Alvefur2016-02-271-14/+16
|
* Merge 0.9->0.10Kim Alvefur2016-02-251-0/+1
|\
| * util.datamanager: Unreference file handle after closing it to prevent trying ↵Kim Alvefur2016-02-251-0/+1
| | | | | | | | to close it again (fixes #632)
* | util.datamanager: Add append to public apiKim Alvefur2015-12-111-0/+1
| |
* | util.datamanager: Return extra location infoKim Alvefur2015-12-111-3/+3
| |
* | util.datamanager: Make sure only strings are passed as data to append()Kim Alvefur2015-12-111-0/+1
| |
* | util.datamanager: Add some comments about the append functionKim Alvefur2015-12-111-0/+3
| |
* | util.datamanager: Handle potential error from :write() callKim Alvefur2015-12-111-3/+3
| |
* | util.datamanager: Handle potential issues from fallocateKim Alvefur2015-12-111-1/+10
| |
* | util.datamanager: No shadowing of variable [luacheck]Kim Alvefur2015-12-111-1/+3
| |
* | util.datamanager: Skip past second check if first attemtp to open file succeedsKim Alvefur2015-12-111-3/+3
| |
* | util.datamanager: In append() collect status when closing file handle as it ↵Kim Alvefur2015-12-111-3/+9
| | | | | | | | may fail (eg the implied flush)
* | util.datamanager: Overwrite 'data' variable instead of shadownig it [luacheck]Kim Alvefur2015-12-111-1/+1
| |
* | util.datamanager: Factor out code for appending bytes to a fileKim Alvefur2015-12-111-10/+18
| |
* | util.*: Remove use of module() function, make all module functions local and ↵Kim Alvefur2015-02-211-16/+29
|/ | | | return them in a table at the end
* util.datamanager: Fix traceback from trying to purge when storage is empty ↵Kim Alvefur2015-05-131-1/+5
| | | | or otherwise unaccessible (fixes #496)
* util.datamanager: Fix traceback due to %s in log messageKim Alvefur2015-04-031-1/+1
|
* util.datamanager: Check that the global 'prosody' exists before using it ↵Kim Alvefur2015-02-201-1/+1
| | | | (fixes nil indexing in use outside of prosody)
* util.datamanager: Clear the cache of created directories on storage failure, ↵Matthew Wild2013-04-071-11/+19
| | | | and retry
* util.datamanager: expose path decode and encode functions.Marco Cirillo2013-04-071-0/+2
|
* util.datamanager: Don't escape the name of a storeKim Alvefur2012-12-161-1/+1
|
* util.datamanager: Remove unused variableKim Alvefur2012-12-141-1/+0
|
* util.datamanager: Remove dead code pathKim Alvefur2012-12-141-4/+1
|
* mod_storage_internal, datamanager: Add support for iterating over users with ↵Kim Alvefur2012-09-211-0/+19
| | | | data in a store
* storagemanager, datamanager, mod_storage_{internal,sql}: Replace ↵Kim Alvefur2012-09-171-21/+31
| | | | list_stores() with an iterator version
* util.datamanager: Make the util.pposix dependency optional.Waqas Hussain2012-09-121-20/+15
|
* util.datamanager: Ignore errors if the file is gone after removing itKim Alvefur2012-08-261-4/+13
|
* util.datamanager: Collect errors when deleting all stores of a user, but ↵Kim Alvefur2012-08-251-4/+6
| | | | ignore "no such file"
* Merge Waqas<>ZashMatthew Wild2012-07-311-0/+12
|\
| * util.datamanager: Don't use os.rename on non-POSIX. It doesn't overwrite ↵Waqas Hussain2012-08-011-0/+12
| | | | | | | | exisitng files on Windows.
* | util.datamanager: Try to open in read+write mode, then retry with write mode ↵Kim Alvefur2012-07-311-1/+4
|/ | | | if that fails (usually because it doesn't exist)
* util.datamanager: Add missing mode flag to seek callKim Alvefur2012-07-311-1/+1
|
* util.datamanager: Remove a few unused importsKim Alvefur2012-07-291-4/+3
|
* util.datamanager: Write to a temporary file and atomically move it into placeKim Alvefur2012-07-291-14/+33
|
* util.datamanager: Use pposix.fallocate() to make sure appends succeed. Also ↵Kim Alvefur2012-07-281-4/+27
| | | | add a fallback fallocate()
* util.datamanager: Add function for removing all data belonging to a userKim Alvefur2012-07-281-0/+14
|
* util.datamanager: Add function for listing storesKim Alvefur2012-07-281-0/+27
|
* Merge with FlorobMatthew Wild2012-07-281-9/+9
|\
| * Hopefully inert commit to clean up logging across a number of modules, ↵Matthew Wild2012-07-231-9/+9
| | | | | | | | removing all cases of concatenation when building log messages
* | Eliminate direct setfenv usageFlorian Zeitz2012-06-081-6/+7
|/
* util/datamanager: Use package.config to figure out directory seperatorJames Callahan2011-12-121-3/+3
|
* util.datamanager: Change from 'Failed to load' to 'Assuming empty' for data ↵Matthew Wild2011-01-111-2/+2
| | | | store files that do not seem to exist
* util.datamanager: Handle gracefully the lack of prosody.paths.dataMatthew Wild2011-01-111-1/+1
|
* util.datamanager: Use prosody.paths.data as the initial value for data_pathMatthew Wild2011-01-071-1/+2
|