aboutsummaryrefslogtreecommitdiffstats
path: root/util/datamanager.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
|
* util.datamanager: Return an error string when pcall fails on a loaded list file.Waqas Hussain2010-12-101-1/+1
|
* util.datamanager: When failing to load a list file, and the file exists, log ↵Waqas Hussain2010-12-101-2/+9
| | | | an error, and return nil, error.
* util.datamanager: Return an error string when failing to save.Waqas Hussain2010-05-231-1/+1
|
* util.datamanager: When failing to load a file, and the file exists, return ↵Waqas Hussain2010-05-221-4/+12
| | | | nil, error.
* Merge 0.6->0.7Matthew Wild2010-03-221-2/+2
|\
| * Update copyright headers for 2010Matthew Wild2010-03-221-2/+2
| |
* | Backed out changeset cb1f9266130b: better way to achieve this to be ↵Matthew Wild2010-02-131-43/+0
| | | | | | | | committed Real Soon Now.
* | util.datamanager: Added support for hooks to override behavior.Waqas Hussain2010-02-111-0/+43
| |
* | util.datamanager: Use pposix.mkdir if availableMatthew Wild2010-01-101-3/+9
| |
* | util.datamanager: Store data stores with no host in '_global' folderMatthew Wild2009-12-061-1/+1
|/
* util.datamanager: Replace popen(mkdir) with lfs.mkdir, keeping the ↵Matthew Wild2009-11-231-2/+2
| | | | just-in-time creation until we have the new datamanager API
* datamanager: Fixed logging errors on deletion of datastores not owned by a ↵Waqas Hussain2009-09-061-2/+2
| | | | user@host
* Remove version number from copyright headersMatthew Wild2009-07-101-1/+1
|
* datamanager: Fixed incorrect callback result checkingWaqas Hussain2009-07-021-4/+4
|
* util.datamanager: Allow multiple data storage callbacks, and allow them to ↵Matthew Wild2009-06-221-4/+33
| | | | modify parameters