aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/HGInventoryBroker.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Manual change as per patch in mantis #7212. (the patch failed to apply, but ↵Diva Canto2014-06-161-1/+1
| | | | the fix was good) Thanks FreakyTech.
* Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵Oren Hurvitz2014-04-231-23/+0
| | | | because it's Obsolete.
* refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)2013-11-151-1/+1
| | | | Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
* Strengthen some assumptions.Diva Canto2013-06-051-0/+5
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-131-0/+2
|
* Finish the implementation of GetUserInventory, even though it's still not used.Diva Canto2012-04-061-5/+38
|
* More on inventory transfer hold ups:Diva Canto2012-03-091-2/+18
| | | | | | - Added an inventory cache for caching root and system folders - Synchronized the remote inventory connector, so that all the remote inventory calls are serialized This will not make much difference in the hold ups. We'd have to move the FireAndForget high up to AddInventoryItem, but that opens up a can of worms regarding the notification of the recipient... the recipient would be notified of the offer before the items are effectively in his inventory, which could lead to surprises.
* Added UserManagementModule.IsLocalGridUser(UUID) to be used throughout ↵Diva Canto2011-12-291-2/+2
| | | | region Scenes and Modules. Changed existing modules to use it instead of assuming that foreign = null account.
* When a region is added to the HG Inventory Broker, also pass this through to ↵Justin Clark-Casey (justincc)2011-09-071-3/+24
| | | | | | | | the embedded local inventory connector to prevent an NRE when that connector tries to lookup the UserManager through the scene. This is to address http://opensimulator.org/mantis/view.php?id=5669 However, if this failure was happening I'm kind of surprised that local HG inventory was working at all..... We probably weren't seeing these exceptions previously because we weren't logging them when the reached the top of a FireAndForget thread.
* Add temporary debugging in HGInventoryBroker and ↵Justin Clark-Casey (justincc)2011-09-061-14/+22
| | | | | | | 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
* Allow the HGInventoryBroker to set the UserManager when it instantiates a ↵Justin Clark-Casey (justincc)2011-09-051-2/+9
| | | | | | | 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
* For now, supress 'OH NOES' warnings given by ↵Justin Clark-Casey (justincc)2011-08-171-5/+5
| | | | | | | HGInventoryBroker.CacheInventoryServiceURL when it tries to cache it for an NPC This concept is meaningless for NPCs. However, it might be better to make NPCism an actual property on ScenePresence and check. Addresses http://opensimulator.org/mantis/view.php?id=5643
* HG inventory transfers over the profile working.Diva Canto2011-05-271-2/+9
|
* Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto2011-05-241-0/+16
| | | | window, but can't test because this mechanism doesn't seem to work without a profile service.
* Added an additional debug message, and removed a bunch of files that weren't ↵Diva Canto2011-02-041-0/+5
| | | | being used anymore -- the old RemotsInventory connectors stuff.
* Made the HG asset and inventory brokers use the Helo service in order to ↵Diva Canto2010-09-081-6/+9
| | | | instantiate the right network connectors. Tested on Robust only.
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2010-09-031-1/+1
|
* Removed some more debug messages.Diva Canto2010-07-141-18/+16
|
* Fixes additional bug reported in mantis #4841.Diva Canto2010-07-051-6/+6
|
* Renamed HGInventoryBroker2 to HGInventoryBroker.Diva Canto2010-05-021-0/+556
|
* Deleted HGInventoryBroker, so that the new one can take its name.Diva Canto2010-05-021-540/+0
|
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-191-2/+2
| | | | Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
* Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto2010-01-301-66/+69
|
* On the way to making HG inventory work. Inventory can now be accessed again. ↵Diva Canto2010-01-291-110/+66
| | | | Assets are still broken.
* OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-111-1/+1
|
* NetworkServersInfo removed from CommsManager.Diva Canto2010-01-101-3/+5
|
* * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-38/+43
| | | | | * HG is seriously broken here * Compiles. Untested.
* Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-081-1/+0
|
* Bug fix: in standalone, HGInventoryBroker needs to get the local inventory ↵Diva Canto2009-12-211-2/+13
| | | | server URL from NetworkServersInfo.
* * Fixes http://opensimulator.org/mantis/view.php?id=4225Diva Canto2009-10-121-0/+2
| | | | | * Fixes http://opensimulator.org/mantis/view.php?id=3959 * Allows for viewing inventory textures outside home grid
* Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto2009-09-261-2/+7
| | | | | | HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+17
| | | | | | 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.
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+17
| | | | 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).
* A better purge of trash folder.Diva Canto2009-08-191-7/+11
|
* GetFolderItems implemented. It's not being called, but it might.Diva Canto2009-08-181-2/+9
|
* jhurliman's patch in http://opensimulator.org/mantis/view.php?id=4024Diva Canto2009-08-181-2/+1
|
* Making attachments work again. Tons of debug more. This needs more testing ↵Diva Canto2009-08-161-1/+1
| | | | and a lot of cleaning.
* Changed the way to get to the profile service. Changed GetSystemsFolder in ↵Diva Canto2009-08-141-2/+14
| | | | HGBroker.
* Doing session lookup in the right way.Diva Canto2009-08-141-4/+5
|
* Additional debug messages, and bug fix in ↵Diva Canto2009-08-141-1/+10
| | | | RemoteInventoryServiceConnector.cs, where the scene reference wasn't being set.
* Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-131-4/+13
|
* Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-131-4/+4
| | | | starting to get on my nerves.
* * Added two new packet handler implementations for inventory ops. This is ↵Diva Canto2009-08-121-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
* Improved test for system folders. Removed log messages.Diva Canto2009-08-111-3/+3
|
* System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto2009-08-111-12/+56
| | | | 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.
* Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto2009-08-101-0/+26
| | | | GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-101-1/+1
|\
| * Replace the Replaceable modules nameMelanie2009-08-101-1/+1
| |
* | Changed RequestRootFolder to GetRootFolderDiva Canto2009-08-101-1/+1
|/
* Committing the interface change and the addition to the modules to getMelanie Thielker2009-07-101-0/+5
| | | | | | the ball rolling on replacable modules. No user functionality yet