Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move the JsonStore regular expressions to static variables to avoid | Mic Bowman | 2013-01-31 | 2 | -87/+190 |
| | | | | | recompiling on every operation. Added JsonList2Path script function to simplify array iteration. | ||||
* | Add JsonTestStore to determine if a JsonStore is associated with | Mic Bowman | 2013-01-30 | 2 | -0/+24 |
| | | | | a particular UUID. | ||||
* | Add JsonDestroyStore() basic regression test | Justin Clark-Casey (justincc) | 2013-01-30 | 1 | -0/+15 |
| | |||||
* | refactor: Make invocations of json store functions from the regression test ↵ | Justin Clark-Casey (justincc) | 2013-01-30 | 1 | -42/+17 |
| | | | | simpler | ||||
* | Add regression test for script func JsonRemoveValue() | Justin Clark-Casey (justincc) | 2013-01-30 | 1 | -0/+52 |
| | |||||
* | minor: change name of json script tests to JsonStoreScriptModuleTests ↵ | Justin Clark-Casey (justincc) | 2013-01-29 | 1 | -1/+1 |
| | | | | instead of copy/pasted LSL_ApiInventoryTests | ||||
* | Try ignoring json tests if they can't be run due to being on <=.net 3.5 | Justin Clark-Casey (justincc) | 2013-01-29 | 1 | -6/+17 |
| | |||||
* | Disable json tests for now - I see this is failing on jenkins because mono ↵ | Justin Clark-Casey (justincc) | 2013-01-25 | 2 | -32/+29 |
| | | | | | | 2.4.3 doesn't have Funcs >5 params, though mono 2.6 onwards does. Standardize logging in JsonStoreScriptModule and some minor code formatting. | ||||
* | See if getting the registering JsonReadNotecard with MethodInfo works around ↵ | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -2/+5 |
| | | | | an apparent issue with registering methods with more than 5 parameters on mono 2.4.3 | ||||
* | Increase logging by enabling during test setup rather than during individual ↵ | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -4/+6 |
| | | | | tests of for JsonStore | ||||
* | Enable logging in new json store tests to find out why they fail on jenkins ↵ | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -4/+4 |
| | | | | but not locally. | ||||
* | Add JsonTestPath() regression test | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -0/+17 |
| | |||||
* | Add regression test for JsonSetValue() | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -0/+23 |
| | |||||
* | Add basic JsonGetValue() regression test. | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -0/+17 |
| | |||||
* | Add basic JsonCreateStore() regression test | Justin Clark-Casey (justincc) | 2013-01-25 | 1 | -0/+86 |
| | |||||
* | Remove any mention of IRegionModule from region names and comments to aid | Melanie | 2012-11-12 | 2 | -2/+2 |
| | | | | grepping for remaining uses | ||||
* | Allow an incoming identifier to be specified for a JsonStore. | Mic Bowman | 2012-09-11 | 2 | -8/+8 |
| | |||||
* | Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵ | Justin Clark-Casey (justincc) | 2012-07-11 | 1 | -4/+3 |
| | | | | | | | constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM. | ||||
* | Add try/catch around Json script method registration to avoild some issues | Mic Bowman | 2012-04-25 | 1 | -15/+24 |
| | | | | | | with .NET 3.5 vs 4.0 differences. See http://opensimulator.org/mantis/view.php?id=5971 | ||||
* | clean up some more logging spam in the jsonstore modules | Mic Bowman | 2012-04-17 | 2 | -2/+4 |
| | |||||
* | Fix the Csharp 3.0 vs 4.0 problem in JsonStore initialization. | Mic Bowman | 2012-04-17 | 3 | -5/+7 |
| | | | | Cut down on the logging spam. | ||||
* | This commit adds a new optional region module, JsonStore, that provides ↵ | Mic Bowman | 2012-04-17 | 3 | -0/+1416 |
structured storage (dictionaries and arrays of string values) for scripts and region modules. In addition, there are operations on the storage that enable "real" distributed computation between scripts through operations similar to those of a tuple space. Scripts can share task queues, implement shared locks or semaphores, etc. The structured store is limited to the current region and is not currently persisted. However, script operations are defined to initialize a store from a notecard and to serialize the store to a notecard. Documentation will be posted to the opensim wiki soon. |