aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-89/+369
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-40/+78
2012-10-04Make the asset retrieval concurrency a config switch. The current valueMic Bowman1-3/+8
of 30 is still hanging badly on some mono versions. The switch defaults to 30 to preserve current behavior.
2012-09-30Allow setting max connections for an endpointMelanie1-3/+3
2012-05-09Where necessary, rename OpenSim/Services/Connectors/*.cs files to reflect ↵Justin Clark-Casey (justincc)1-0/+0
the actual class names. This is usually because the file name was singular (*Service*) but the class name was plural (*Services*). This is to make configuration easier rather than having to look in the c# code itself to find the slightly different name of the connector. This does not affect existing configuration since the files are being renamed rather than the classes.
2012-01-05Move simulator asset info commands to an optional module from the connector. ↵Justin Clark-Casey (justincc)1-43/+2
Make them conform with service side commands. This stops them appearing twice when Hypergrid is enabled.
2012-01-02Adding commented out log messages and some minor formatting for future bug ↵Justin Clark-Casey (justincc)1-0/+6
hunting. No functional changes.
2011-07-21When an uncached asset is requested multiple times concurrently, only load ↵Oren Hurvitz1-9/+49
it once Signed-off-by: root <root@grid00001.t-data.com>
2011-04-12Moved 3 request handlers from OpenSim.Framework.Servers.HttpServer up to ↵Diva Canto1-1/+0
OpenSim.Framework -- just pasted them in WebUtil. This is so that code that uses the Service connectors don't need to include the HttpServer dll -- that was odd.
2010-04-08* Adds IAssetService.GetCached() to allow asset fetching from the local ↵John Hurliman1-0/+8
cache only * Adds GetTextureModule that implements the "GetTexture" capability, aka HTTP texture fetching. This is a significantly optimized path that does not require any server-side JPEG2000 decoding, texture priority queue, or UDP file transfer * Sanity check for null reference in LLClientView.RefreshGroupMembership()
2010-03-09* Typo fixesJohn Hurliman1-1/+1
* Performance improvement in the expensive GenerateClientFlags()
2010-02-22Changed asset CreatorID to a stringJohn Hurliman1-1/+1
2010-02-22* Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman1-1/+1
CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
2010-02-15Formatting cleanup.Jeff Ames1-1/+1
2010-02-12Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)1-1/+1
This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
2009-11-05Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman1-1/+1
unknown asset type, and log an error if it ever does happen
2009-10-14* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2009-10-05Make the asset connector async Get overload return false if the assetMelanie1-0/+4
retrieval was not synchronous.
2009-10-04Just trying a few things. This one will reduce the number of async calls.Diva Canto1-1/+2
2009-10-01Add "dump asset" command to remote asset connector (the only one that uses aMelanie1-0/+44
cache at all)
2009-10-01Add "dump asset" command to remote asset connector (the only one that uses aMelanie1-0/+44
cache at all)
2009-09-03Fixes seven leaky .BeginInvoke() callsJohn Hurliman1-1/+1
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-30Slashing trailing slashes.diva1-1/+1
https://lists.berlios.de/pipermail/opensim-dev/2009-May/006673.html
2009-05-29Making the delegate handlers async in async Get, to make things consistent. ↵diva1-1/+1
Them being synchronous in certain cases (asset in cache, for example) may account for slowness reported by folks in osgrid when they have the cache module on. Turns out that some of the provided handlers do non-trivial processing (the ones coming from J2KImage, for example), which means that the several asset requests that hit the cache end up being synchronous. The jury is still out on this.
2009-05-26Catching exceptions on Store, including timeout. Store may fail, for ↵diva1-2/+10
whatever reason, but it won't crash the sim. Addresses mantis #3707, mantis #3713, mantis #3686.
2009-05-18Move the connectors under services for reasons of application logic. RemoveMelanie Thielker1-1/+1
the user server skeleton in preparation for introducing a generic server
2009-05-17Update svn properties.Jeff Ames1-6/+6
2009-05-17HG asset transfers starting to work -- GETs only for now. diva1-3/+8
2009-05-16Oops. Next time try not to commit things at the same time as having ↵diva1-1/+1
important discussions on the IRC.
2009-05-16Another minor bug fix for making notecard/script savings work with old asset ↵diva1-1/+4
servers.
2009-05-14Move the connector for the new asset server to a connectors project. InheritMelanie Thielker1-72/+22
the region module version from this. This enables inter-server connections to reuse connetor code from region modules.
2009-05-14Honor the temp and local asset flagsMelanie Thielker1-0/+10
2009-05-10Use the new async handling class to actually make the new asset service'sMelanie Thielker1-12/+34
async request perform asynchronously
2009-05-10Connect up the new asset cache and introduce an asynchronous call pathMelanie Thielker1-17/+83
for asset retrieval (full asset only) to ease migration to the new system
2009-05-10Add some asset cache plumbing. Change the generic cache from UUID to stringMelanie Thielker1-0/+19
keys to allow caching the new crop of URI identified objects.
2009-05-09Make remote assets work through the new server systemMelanie Thielker1-5/+53
2009-05-09Plumb the remote asset hookup, all but the actual requestsMelanie Thielker1-9/+59
2009-05-09Add the asset service connectors and sample config. READ WARNINGS!!!Melanie Thielker1-5/+4
2009-05-05Add the remote user connector skeletonMelanie Thielker1-5/+2
2009-05-05Change local user connector into a shared moduleMelanie Thielker1-1/+7
2009-05-05Some refactoring. Database is now active in the new user serverMelanie Thielker1-2/+2
2009-05-05Plumb the new server connector logicMelanie Thielker1-17/+34
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield1-1/+1
NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-2/+2
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-3/+3
* 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-06-27last round of warning squashing. calling it a day now.Dr Scofield1-8/+8
2008-05-20Add copyright notices.Jeff Ames1-3/+28
Fix spelling typo (Thanks ChrisDown for pointing this out)
2008-05-11Update svn properties.Jeff Ames1-43/+43
2008-05-11* Added NPCModule and NPCAvatar classes for NPCs. Primitive, but we can grow ↵Adam Frisby1-0/+43
them out. * Fix for Scene.Inventory.cs - It assumes every entity at startup is a SceneObjectGroup. (Actually, this shouldn't have compiled[!] without a warning.) * Fix for LandManager at startup - it assumes there's a land channel when perhaps there isnt. (Bug that needs another refactor to fix. [Mike - I've assigned a ticket to you about this])