aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2008-05-161-42/+42
|
* * Start recording initial complete avatar inventory retrieval failures from ↵Justin Clarke Casey2008-05-141-1/+5
| | | | | | | | | | the region server * In theory, this should be a somewhat useless statistic since the user server will already have tried to use the inventory service to retrieve the avatar's skeleton. If this fails, login is halted completely. * Nonetheless I'm recording it anyway just to see whether it happens (yes, I'm too lazy to scan the logs...)
* * Refactor: Remove redundant userID from further up the inventory request chainJustin Clarke Casey2008-05-011-20/+5
|
* * Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey2008-05-011-26/+28
| | | | | | | | almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
* * Assorted spring cleanings.Adam Frisby2008-05-011-1/+1
|
* * Completely inconsequential inventory odds and ends (actual impact - only ↵Justin Clarke Casey2008-04-301-1/+1
| | | | one log message changed)
* * Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares2008-04-301-0/+15
| | | | | | | 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-2/+36
| | | | | | | | | * 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.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-8/+10
| | | | (this took a while to run).
* * Reduce publicly exposed fields on InventoryCollection, which was causing ↵Justin Clarke Casey2008-04-111-2/+8
| | | | | | | | | 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
* * Minor refactoring in OGS1InventoryServiceJustin Clarke Casey2008-04-111-27/+20
|
* * Eliminate a class of errors where an inventory request could be made ↵Justin Clarke Casey2008-04-111-1/+2
| | | | | | | | | before the region had completely received the inventory for the user. * A much larger race condition where the inventory request could be made before the region gets any data at all will also be fixed in the near future. * This change also fixes a regression from two patches ago where items stopped appearing in standalone inventory
* * Minor inventory code cleanup following on from last patchJustin Clarke Casey2008-04-111-7/+0
|
* * Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey2008-04-111-14/+26
| | | | | | | | 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: get CreateNewUserInventory() to return true on successJustin Clarke Casey2008-04-101-1/+2
|
* more refactoring, this time on InventoryFolderBaseSean Dague2008-04-071-2/+2
| | | | | | | | * wrap attributes in properties * clean up names a little bit * clean up name styles
* * Set Svn Properties eol-style: |337Teravus Ovares2008-03-311-1/+1
|
* * Refactor: Remove unused inventory methods, some of which weren't properly ↵Justin Clarke Casey2008-03-291-10/+0
| | | | implemented anyway.
* * Send full inventory folder skeleton to standalone client logins rather ↵Justin Clarke Casey2008-03-281-0/+8
| | | | | | | | | than just the root child folders * This may resolve some current problems with non root child folders on standalone installations. * A fix for the same problem in grid mode will come soon.
* * Stop grid inventory network failures crashing the client sessionJustin Clarke Casey2008-03-181-13/+46
| | | | | | * Now the operation will just fail and post a message to the log instead, which may be mysterious to the client but isn't so brutal
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Added a method to access a named folder in a users inventory, to the ↵MW2008-02-131-0/+5
| | | | inventory Database interfaces. This could be useful for adding a item to a users inventory from say a web front end application or some other third party application. [note the method is only currently implemented in the sqlite provider]
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-101-10/+10
|
* 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.
* some small changes, like adding a couple of extra methods to ↵MW2008-02-051-0/+10
| | | | IInventoryServices so that a check can be done to see if a inventory set exists for a certain user.
* * Optimized usingslbsa712007-12-271-12/+12
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Miscellaneous small tweaks and more logging messages to move towards ↵Justin Clarke Casey2007-12-231-8/+32
| | | | resolving inventory problems
* Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames2007-12-201-1/+1
| | | | Works with LibSL rev>1532
* * Make inventory operations sync rather than async. This is to alleviate ↵Justin Clarke Casey2007-12-151-28/+9
| | | | | | | | | 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-0/+10
| | | | | | | | subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
* Another addition to Inventory debug output.MW2007-12-141-1/+1
|
* more inventory debugging output added to region server.MW2007-12-141-1/+3
|
* Added some extra debug console output to Inventory Server and region OGS1 ↵MW2007-12-141-8/+10
| | | | inventory requests.
* * Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST ↵Teravus Ovares2007-12-141-3/+3
| | | | calls
* * Start listening for client connections immediately after a region ↵Teravus Ovares2007-12-121-0/+1
| | | | | | | | initializes during initial instance startup. (as opposed to waiting for 'all of the regions' to initialize first) * Removed hackish timer based client notification about regions up (no longer needed) * Added a comment about an inventory based login failure that causes me lots of greif testing and debugging. Comment includes *why* it's failing.
* Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW2007-12-021-0/+1
| | | | rezzing them in another region.
* Some refactoring , mainly on Inventory code. MW2007-12-021-1/+1
|
* Initial working Grid Inventory server. Only been tested on a very small ↵MW2007-12-011-14/+96
| | | | | | | 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)
* * Diuerse beavtificatemslbsa712007-11-011-5/+2
|
* Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax2007-10-301-3/+21
| | | | InevntoryServer
* * Optimized usingslbsa712007-10-301-12/+5
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-1/+1
| | | | | | | Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-261-2/+2
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-0/+28
|
* getting all our line endings consistant againSean Dague2007-10-051-52/+52
|
* == The "right name and place" commit ==lbsa712007-10-051-1/+1
| | | | | | | | | * Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
* Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa712007-09-271-58/+11
| | | | Tleiades patch 444 and 445.
* * Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa712007-09-271-11/+58
| | | | | | | * updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)