aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-10Et voila! - Old inventory code removed.Diva Canto1-343/+0
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-03-23Committing partial work on passing folders across instances. This may crash.Melanie Thielker1-0/+16
2009-03-21Add a QueryItem method to the inventory subsystem. Currently implemented forMelanie Thielker1-0/+16
MySQL only, stubs for the others. This allows updating the cache with a single item from the database.
2009-02-12* optimized usings.lbsa711-1/+1
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-9/+9
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-07-24* Separate out OGS1 calls used between services (rather than from region to ↵Justin Clarke Casey1-15/+1
services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey1-1/+1
than inter grid
2008-07-23* refactor: break out inter grid inventory services furtherJustin Clarke Casey1-1/+1
* more to follow
2008-07-22* refactor: move new inventory service call by user server to OGS1 with all ↵Justin Clarke Casey1-2/+3
the other service calls * will post to mailing list about moving this shortly
2008-06-28plumbing for multiple inventory servers. Mostly done on the region server side. MW1-0/+7
TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
2008-06-11Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke1-0/+20
to allow the InventoryServer to work with MSSQL..
2008-05-16Formatting cleanup.Jeff Ames1-42/+42
2008-05-14* Start recording initial complete avatar inventory retrieval failures from ↵Justin Clarke Casey1-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...)
2008-05-01* Refactor: Remove redundant userID from further up the inventory request chainJustin Clarke Casey1-20/+5
2008-05-01* Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey1-26/+28
almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
2008-05-01* Assorted spring cleanings.Adam Frisby1-1/+1
2008-04-30* Completely inconsequential inventory odds and ends (actual impact - only ↵Justin Clarke Casey1-1/+1
one log message changed)
2008-04-30* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares1-0/+15
Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
2008-04-23* Implement full grid mode Trash emptyJustin Clarke Casey1-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.
2008-04-23* Implement proper emptying of trashcan on standaloneJustin Clarke Casey1-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.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-8/+10
(this took a while to run).
2008-04-11* Reduce publicly exposed fields on InventoryCollection, which was causing ↵Justin Clarke Casey1-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
2008-04-11* Minor refactoring in OGS1InventoryServiceJustin Clarke Casey1-27/+20
2008-04-11* Eliminate a class of errors where an inventory request could be made ↵Justin Clarke Casey1-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
2008-04-11* Minor inventory code cleanup following on from last patchJustin Clarke Casey1-7/+0
2008-04-11* Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey1-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.
2008-04-10* Minor: get CreateNewUserInventory() to return true on successJustin Clarke Casey1-1/+2
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague1-2/+2
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-03-31* Set Svn Properties eol-style: |337Teravus Ovares1-1/+1
2008-03-29* Refactor: Remove unused inventory methods, some of which weren't properly ↵Justin Clarke Casey1-10/+0
implemented anyway.
2008-03-28* Send full inventory folder skeleton to standalone client logins rather ↵Justin Clarke Casey1-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.
2008-03-18* Stop grid inventory network failures crashing the client sessionJustin Clarke Casey1-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
2008-03-18Formatting cleanup.Jeff Ames1-26/+26
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-13Added a method to access a named folder in a users inventory, to the ↵MW1-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]
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-10/+10
2008-02-05Converted logging to use log4net.Jeff Ames1-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.
2008-02-05some small changes, like adding a couple of extra methods to ↵MW1-0/+10
IInventoryServices so that a check can be done to see if a inventory set exists for a certain user.
2007-12-27* Optimized usingslbsa711-12/+12
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-23Miscellaneous small tweaks and more logging messages to move towards ↵Justin Clarke Casey1-8/+32
resolving inventory problems
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-1/+1
Works with LibSL rev>1532
2007-12-15* Make inventory operations sync rather than async. This is to alleviate ↵Justin Clarke Casey1-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.
2007-12-15Grid Inventory feature upgrade: renaming folders should now be correct, ↵Brian McBee1-0/+10
subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
2007-12-14Another addition to Inventory debug output.MW1-1/+1
2007-12-14more inventory debugging output added to region server.MW1-1/+3
2007-12-14Added some extra debug console output to Inventory Server and region OGS1 ↵MW1-8/+10
inventory requests.
2007-12-14* Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST ↵Teravus Ovares1-3/+3
calls
2007-12-12* Start listening for client connections immediately after a region ↵Teravus Ovares1-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.