aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/InventoryServer/GridInventoryService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Assorted spring cleanings.Adam Frisby2008-05-011-2/+0
|
* * Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares2008-04-301-0/+5
| | | | | | | Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
* * Implement full grid mode Trash emptyJustin Clarke Casey2008-04-231-9/+15
| | | | | | | | | * Now, emptying the trash should remove folders and the items they contain as well as items which were not in a subfolder. * This will only work once both the region and grid servers have reached this revision. * You may also need to clear your cache before this will work * Refactoring to follow.
* * Implement proper emptying of trashcan on standaloneJustin Clarke Casey2008-04-231-0/+10
| | | | | | | * On standalone, folders (and their items) should now be persistently deleted on trash emptying, as well as immediate child items * An implementation for grid mode will follow.
* * Allow folder renaming to complete after an agent inventory has been ↵Justin Clarke Casey2008-04-221-1/+5
| | | | | | | | | received by a region from the inventory service * This replaces the old behaviour of failing straight away, which could cause lost updates if the inventory service was slow in responding * This is the first baby step to making all inventory requests behave this way, to reduce inventory lossage
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-6/+4
| | | | (this took a while to run).
* * Remove user profile from cache when they log out from a region.Justin Clarke Casey2008-04-201-1/+1
| | | | | | | * A much more significant fix is required to clean up the cache when a user moves out of a region, but really better handling of delayed inventory cache updates needs to be written first, and possibly better affinity to cut down agent inventory requests when the move is between two regions hosted on the same server.
* * Reduce publicly exposed fields on InventoryCollection, which was causing ↵Justin Clarke Casey2008-04-111-32/+27
| | | | | | | | | duplicate sets of inventory data to be sent over the grid * Won't actually fix anything, since we were handling the problem anyway * Also add more doc, fix up debugging messages, etc
* * Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey2008-04-111-2/+1
| | | | | | | | at once, rather than each individual * This is required in order to work towards eliminating some inventory race conditions and to better deal with situations where a grid inventory server is slow or not responding.
* * Minor: really just comment and subsequent indentation adjustment. ↵Justin Clarke Casey2008-04-101-0/+6
| | | | Preparation for handling inventory problems where the inventory server receives a request and never responds, or is late in responding
* * Refactor GetUsersInventory()Justin Clarke Casey2008-04-101-9/+33
|
* * Minor inventory message cleanup and documentationJustin Clarke Casey2008-04-101-1/+10
|
* further refactor and rename of InventoryFolderBase propertiesSean Dague2008-04-081-1/+1
| | | | | | to reflect what they really are.
* more refactoring, this time on InventoryFolderBaseSean Dague2008-04-071-7/+7
| | | | | | | | * wrap attributes in properties * clean up names a little bit * clean up name styles
* Refactor InventoryItemBase to do the following:Sean Dague2008-04-071-6/+6
| | | | | | | | * wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
* * Stop the grid inventory service sending all folder and item details twiceJustin Clarke Casey2008-03-301-23/+9
| | | | | | * This change will have no functional impact - we were already filtering out the dupes on the other end.
* * Refactor: Remove unused inventory methods, some of which weren't properly ↵Justin Clarke Casey2008-03-291-0/+11
| | | | implemented anyway.
* * Various 1.19.0.5 grid inventory request fixes. These will only take ↵Justin Clarke Casey2008-03-291-2/+16
| | | | | | | | | | | | affect once the region and the grid servers have upgraded to this revision * You may also need to clear your cache before seeing any effect. * These fixes may or may not affect inventory on the RC client. * These fixes should make non-root folders work better, stop inventory failure on first login, allow trash to be emptied and make texture picker in object edit view work properly * Fixes are 1) make initial root folder request wait for async inventory delivery, 2) deliver all folders in the initial login skeleton, not just the root child ones and 3) deal with situations where we receive child folders from the inventory service before their parent is received.
* Formatting cleanup.Jeff Ames2008-03-181-27/+26
|
* Converted logging to use log4net.Jeff Ames2008-02-051-11/+13
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Optimized usingslbsa712007-12-271-23/+22
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Remove a now unnecessary bit of inventory log verbosityJustin Clarke Casey2007-12-221-1/+2
|
* Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames2007-12-201-6/+6
| | | | Works with LibSL rev>1532
* * Make inventory operations sync rather than async. This is to alleviate ↵Justin Clarke Casey2007-12-151-5/+31
| | | | | | | | | race conditions such as that in mantis #190 * Make inventory messages more verbose. Hopefully they aren't now too verbose * This may resolve some grid instability but it's likely there's much more out there.
* Grid Inventory feature upgrade: renaming folders should now be correct, ↵Brian McBee2007-12-151-9/+50
| | | | | | | | subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
* Added some extra debug console output to Inventory Server and region OGS1 ↵MW2007-12-141-0/+2
| | | | inventory requests.
* * Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST ↵Teravus Ovares2007-12-141-4/+8
| | | | calls
* added copyright noticesJeff Ames2007-12-111-1/+29
|
* This small patch means that the inventoryserver for grid mode nowSean Dague2007-12-071-6/+3
| | | | | | | | retrieves items in the agent's root inventory folder. From Justin Casey (IBM)
* New Inventory folder should now be stored to the inventory server/database. ↵MW2007-12-021-0/+1
| | | | This also seems to fix the problem of Body parts not being persisted properly.
* On login, if a set of inventory folders doesn't exist for the user then a ↵MW2007-12-011-0/+1
| | | | new set is created in the inventory database. Most likely still better to use some other script to populate the inventory database instead of relaying on this.
* Initial working Grid Inventory server. Only been tested on a very small ↵MW2007-12-011-0/+104
grid, so likely to have problems on a larger grid with more people? To use , both the user server and Inventory server need to be running this latest revision. (older regions should be able to still be used, just the user won't have inventory on them). Also and HERE IS THE BIG BREAK ISSUE, currently, so that the initial inventory details for a user are added to the inventory db , you need to recreate the accounts using the user server "create user" feature. It should be quite easy to manual populate the inventory database instead but I someone else will need to look into that) Also I've only tested using SQLite as the database provider, there is a Mysql inventory provider but I don't know if it works (SQLite is set as default, so you will need to change it in the inventory server config.xml)