aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
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.
2007-12-02Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW1-0/+1
rezzing them in another region.
2007-12-02Some refactoring , mainly on Inventory code. MW1-1/+1
2007-12-01Initial working Grid Inventory server. Only been tested on a very small ↵MW1-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)
2007-11-01* Diuerse beavtificatemslbsa711-5/+2
2007-10-30Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax1-3/+21
InevntoryServer
2007-10-30* Optimized usingslbsa711-12/+5
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-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.
2007-10-26* Added prototypical AvatarFactory module interface to load avatar parameterslbsa711-2/+2
* Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-0/+28
2007-10-05getting all our line endings consistant againSean Dague1-52/+52
2007-10-05== The "right name and place" commit ==lbsa711-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
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-58/+11
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-11/+58
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-24* Removed some more fields from CommunicationsLocallbsa711-1/+1
* added OnLoginToRegion to CommunicationsLocal
2007-09-24* So, ok, maybe a bit harsh to explode on grid inventory calls.lbsa711-7/+7
2007-09-24* Started major restructusing of comms to prepare for better grid and region ↵lbsa711-38/+52
functionality * Working towards one shared set of services * Killed off two projects with very little functionality
2007-09-17fixing me some line endingsSean Dague1-38/+38
2007-08-16Taking Prims (SceneObjectGroups) in and out of inventory should now work and ↵MW1-0/+5
if left in inventory will still be there after restarts. (as with the rest of inventory it will only fully work in standalone mode with account authentication turned on).
2007-08-14Start of inventory items, when you upload a texture the data will now be ↵MW1-0/+5
stored in the inventory database and you will still have that texture in inventory on later logins (Again only in standalone mode with authentication.) Also there might be some problems if you upload textures in other regions to the start one (due to us not updating the CAPS url properly).
2007-08-14More inventory work, should be able to now create new inventory folders and ↵MW1-0/+28
them be stored in database (so are there on next login). Again only works in standalone mode with Account/password authentication turned on. [Creating new inventory items should be working very soon.] The test is to make sure that it hasn't broke grid mode at all.