aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-09-06Add temporary debugging in HGInventoryBroker and ↵Justin Clark-Casey (justincc)1-3/+11
RemoveXInventoryServiceConnector This is for http://opensimulator.org/mantis/view.php?id=5669 If we can't retrieve an IUserManagement module we complain, and we also warn in the log when its manually set in XISC by HGInventoryBroker
2011-09-05Allow the HGInventoryBroker to set the UserManager when it instantiates a ↵Justin Clark-Casey (justincc)1-1/+6
RemoteXInventoryServiceConnector for a visiting HG user. Not doing this causes NREs whenever that user tries to access inventory when Hypergrid is turned on since the Remote connector does not have a scene (which is only used to fetch the UserManager) Aims to address http://opensimulator.org/mantis/view.php?id=5669
2011-04-25Made things consistent between LocalInventoryServiceConnector and ↵Diva Canto1-8/+26
RemoteXInventoryServiceConnector on GetFolderContent.
2010-10-31Removed a couple of very verbose debug messages.Diva Canto1-2/+2
2010-09-12Formatting cleanup.Jeff Ames1-1/+1
2010-09-04Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)1-25/+1
folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.
2010-08-24Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)1-0/+7
goes to the correct directory Also removes some mono compiler warnings
2010-08-23Add system lookup folder fix to the RemoveXInventoryServiceConnector as well ↵Justin Clark-Casey (justincc)1-0/+17
since this presumably suffers from the same problem.
2010-08-23Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)1-4/+1
This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
2010-08-13minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-3/+2
2010-06-11Revert "Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)1-11/+6
GetFolder(InventoryFolderBase folder)" This reverts commit 3525195bc9b5fdfd9799411edd452981ef1f4ebd.
2010-06-11Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)1-6/+11
GetFolder(InventoryFolderBase folder) This involves no wire changes since the methods often just construct an InventoryFolderBase under the hood. This is in line with other methods that alraedy allow requests via uuid
2010-04-30* XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto1-5/+3
* Removed a few buglets and added better exception handling.
2010-04-29Simplified RemoteXInventoryServiceConnector and HGBroker (2) by a lot.Diva Canto1-58/+32
2010-04-29Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto1-0/+5
mind. Unfinished.
2010-04-27XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto1-0/+2
testing.
2010-04-26RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto1-46/+26
default configs yet.
2010-01-12Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto1-8/+0
Appearance is now being passed with AgentCircuitData, as it should be.
2010-01-11OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto1-1/+1
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto1-19/+4
* HG is seriously broken here * Compiles. Untested.
2010-01-08Inching ahead... This compiles, but very likely does not run.Diva Canto1-1/+0
2009-09-29Minor bug fixes.Diva Canto1-1/+1
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-0/+12
folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+10
operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
2009-08-19Async purge so that the client thread doesn't wait.Diva Canto1-5/+5
2009-08-19A better purge of trash folder.Diva Canto1-4/+6
2009-08-18GetFolderItems implemented. It's not being called, but it might.Diva Canto1-1/+2
2009-08-14Returning UUID.Zero is scene and user profile service are null in ↵Diva Canto1-0/+8
GetSession. This doesn't fix the underlying problem of these things being null -- they shouldn't be.
2009-08-14Changed the way to get to the profile service. Changed GetSystemsFolder in ↵Diva Canto1-3/+5
HGBroker.
2009-08-14More debug messages.Diva Canto1-0/+7
2009-08-14Doing session lookup in the right way.Diva Canto1-4/+6
2009-08-14Additional debug messages, and bug fix in ↵Diva Canto1-1/+2
RemoteInventoryServiceConnector.cs, where the scene reference wasn't being set.
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-4/+6
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto1-2/+2
starting to get on my nerves.
2009-08-12* Added two new packet handler implementations for inventory ops. This is ↵Diva Canto1-23/+29
starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops. * Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service. * Added if (m_Enabled) upon RemoveRegion
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto1-20/+13
agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-0/+38
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto1-1/+1
2009-08-10Replace the Replaceable modules nameMelanie1-1/+1
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker1-0/+5
the ball rolling on replacable modules. No user functionality yet
2009-06-14Renamed Region/CoreModules/ServiceConnectors to ↵diva1-1/+1
Region/CoreModules/ServiceConnectorsOut. No functional changes.
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+1
2009-06-10Heart surgery no.2: the inventory service hooks. diva1-4/+12
Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
2009-06-08Added more functions to IInventoryService. Unsure about whether all of these ↵diva1-0/+25
are really necessary.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva1-0/+246
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.