aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-11-11One more module converted: MonitorModule.Diva Canto1-94/+117
2012-11-02HG: flip all configs to HG2.0. PLEASE CHECK YOUR EXISTING HG CONFIGS AGAINST ↵Diva Canto2-3/+5
THESE.
2012-10-26Comment out InventoryTransferModule.NeedSceneCacheClear() and invocations ↵Justin Clark-Casey (justincc)1-15/+16
since the call itself does nothing and the return value is ignored by all callers. This is a very old method (+4 years) so is probably confusing code cruft.
2012-10-16minor: Add/correct some doc messages associated with entity teleport.Justin Clark-Casey (justincc)1-1/+6
I believe UseCircuitCode is sent on EnableSimulator EQ message, rather than EstablishAgentCommunication At least with LL 3.3.4, EstablishAgentCommunication appears unnecessary in the teleport context - viewer still requests it though possibly only after TeleportFinish(). However, we will continue to send it.
2012-10-09Move OpenSim.Data.RegionFlags -> OpenSim.Framework.RegionFlags to make it ↵Justin Clark-Casey (justincc)1-4/+4
easier for other code to use (e.g. LSL_Api) without having to reference OpenSim.Data just for this.
2012-10-06On receiving TaskInventoryAccepted with a destination folder in the binary ↵Justin Clark-Casey (justincc)1-5/+17
bucket slot for RLV, notify the viewer about inventory folder updates. The viewer would not see the folder move without this, either on accept or decline. This commit also updates the TaskInventoryOffered message to better conform with the data LL uses Changes are, agentID is prim owner rather than prim id, agent name is now simply object name rather than name with owner detail, message is just folder name in single quotes, message is not timestamped. However, folder is not renamed "still #RLV/~<name>". Long term solution is probably not to do these operations server-side. Notes will be added to http://opensimulator.org/mantis/view.php?id=6311
2012-10-05Finally fix build break by allowing UserManagementModule (which constructs a ↵Justin Clark-Casey (justincc)1-0/+1
packet directly) to reference OpenSim.Region.ClientStack.LindenUDP. This time I actually properly did a clean build
2012-10-04Output monitor data in response to console command on MainConsole.Instance ↵Justin Clark-Casey (justincc)1-2/+2
rather than m_log This should really be happening for all console commands (though many don't). However, things might get difficult if both a console command and other code invoke the same paths.
2012-10-02Add Flush() method to LogWriter. Also correct line endings to Linux form.Robert Adams1-161/+170
2012-09-26Use GridUser properly for foreign users.Diva Canto1-0/+2
2012-09-26Show the user's home url too on the console command.Diva Canto1-4/+3
2012-09-26Not really a change, just added a reminder to fix something here.Diva Canto1-0/+3
2012-09-25Oops, that should be inside the curly bracket.Diva Canto1-3/+3
2012-09-25Deleted extraneous debug messageDiva Canto1-2/+0
2012-09-22HG Rez object: warn the user if the item or asset cannot be found.Diva Canto1-2/+7
2012-09-21This fixes HG attachments' missing assets (textures, etc).Diva Canto1-0/+28
Also, further improvements on HGUuidGatherer: if the assets are already in this grid don't fetch them again.
2012-09-21Moved the small HGUuidGatherer class to the file where its parent class is. ↵Diva Canto2-74/+2
No need to keep 2 separate files.
2012-09-21Removed redundant asset fetches on HGAssetMapper. The UuidGatherer already ↵Diva Canto1-18/+24
downloads the assets, so we don't need to do it again...
2012-09-21Minor: change the return value of unsuccessful posts to string.Empty.Diva Canto1-1/+1
2012-09-21Rename UuidGather.m_assetCache to m_assetService. If HGUuidGatherer hasn't ↵Justin Clark-Casey (justincc)1-2/+2
been instantiated with an assetServerURL then call down to overriden UuidGatherer.GetAsset() instead of calling m_assetService.GetAsset() itself - these two codepaths are now identical.
2012-09-20More HG2.0: Added permission policies in HGAsset Service based on asset ↵Diva Canto1-15/+19
types. The policies are given in the config. This is only half of the story. The other half, pertaining to exports/imports made by the sim, will be done next.
2012-09-16HG2.0: Generalized the allowed HG appearances to be more than 1.Diva Canto1-31/+59
2012-09-15More on HG2.0: added the possibility of controlling the appearance that ↵Diva Canto2-2/+171
avies use to visit other grids. Not as good as I wanted, but good enough. Unfortunately we can't switch the appearance from under the avie without getting into a lot of weirdnesses because appearance is viewer-controlled. So instead, when this control is on, I'm disallowing HG-TP unless the user is wearing an allowed HG appearance -- the user gets a warning and needs to switch appearance. WARNING: I'm still not committing the config vars because this is still not ready for ppl to test.
2012-09-13Restarting to work on HGSuitcaseInventoryService: added the ability for the ↵Diva Canto1-0/+2
outside world to retrieve appearance items. Not ACLed yet.
2012-08-20Add --force flag to "kick user" console command to allow bypassing of recent ↵Justin Clark-Casey (justincc)1-1/+1
race condition checks. This is to allow a second attempt to remove an avatar even if "show connections" shows them as already inactive (i.e. close has already been attempted once). You should only attempt --force if a normal kick fails. This is partly for diagnostics as we have seen some connections occasionally remain on lbsa plaza even if they are registered as inactive. This is not a permanent solution and may not work anyway - the ultimate solution is to stop this problem from happening in the first place.
2012-07-26When copying items, copy the item description field instead of the asset ↵Justin Clark-Casey (justincc)1-2/+3
description field. If we copy the asset description then we will only ever replicate the very first description, if there was one, not any subsequent changes. Thanks to Oren Hurvitz of Kitely for this patch from http://opensimulator.org/mantis/view.php?id=6107 I have adapted it slightly to change the order of arguments (name before description rather than vice-versa) and slightly improve some method doc.
2012-07-20BulletSim: add reference to OpenSim.Region.CoreModules in BSScene.cs ↵Robert Adams1-1/+1
attempting to fix a mono compile error.
2012-07-20Correct namespace of BinaryLoggingModule (a cut-and-paste error). Add a ↵Robert Adams2-1/+162
simple, high performance logger for high frequency logging (physics sub-operations, for instance).
2012-06-26Add regression test to check that attachments in source region are deleting ↵Justin Clark-Casey (justincc)1-0/+5
when an agent teleports to a neighbouring region
2012-06-26If crossing attachments into another region pre-fatpack, clone objects ↵Justin Clark-Casey (justincc)1-17/+26
before changing properties to avoid hud display race condition with update threads. This matches behaviour in fatpack crossing, where attachments are cloned before their properties are changed. This only applies to crossings to simulators running code released before April 2011.
2012-06-12OnConnectionClosed listeners, retrieve data from IClientAPI.SceneAgent ↵Justin Clark-Casey (justincc)1-25/+21
rather than scanning all scene for the presence with the right id Stop checking IsLoggingOut on these listeners, if called with a root agent then we always want to perform these actions. This covers cases where the client is closed due to manual kick, simulator shutdown, etc.
2012-06-11Add last frame time monitor to MonitorModule now that this value is usefulJustin Clark-Casey (justincc)1-0/+8
2012-06-08Don't make duplicate call to ScenePresence.Close() separately in ↵Justin Clark-Casey (justincc)1-1/+0
ETM.DoTeleport() if an agent needs closing. This is always done as part of Scene.RemoveClient() Also refactors try/catching in Scene.RemoveClient() to log NREs instead of silently discarding, since these are useful symptoms of problems.
2012-06-07Record the fact that child agents can have asset transactions.Justin Clark-Casey (justincc)1-1/+1
Also change code to grab the agent asset transaction module once.
2012-05-31Add an optional mechanism for physics modules to collect and return ↵Justin Clark-Casey (justincc)1-44/+64
arbitrary stats. If active, the physics module can return arbitrary stat counters that can be seen via the MonitoringModule (http://opensimulator.org/wiki/Monitoring_Module) This is only active in OdeScene if collect_stats = true in [ODEPhysicsSettings]. This patch allows OdeScene to collect elapsed time information for calls to the ODE native collision methods to assess what proportion of time this takes compared to total physics processing. This data is returned as ODENativeCollisionFrameMS in the monitoring module, updated every 3 seconds. The performance effect of collecting stats is probably extremely minor, dwarfed by the rest of the physics code.
2012-05-28refactor: factor out entity transfer state machine into a separate class to ↵Justin Clark-Casey (justincc)3-239/+330
make code more analyzable
2012-05-28If handling the failure of teleport, move agent state to CleaningUp when we ↵Justin Clark-Casey (justincc)1-3/+6
start the handling. Also fixes the log warning from ResetInTransit() if the state is cleared direct from Transferring or ReceiveAtDestination, as pointed out in mantis 5426
2012-05-25Resolve some mono compiler warnings.Justin Clark-Casey (justincc)3-5/+4
2012-05-25on agent cross, remove from physics scene after its been placed in transit, ↵Justin Clark-Casey (justincc)1-3/+7
not before.
2012-05-25refactor: make ETM.CrossAgentToNewRegionAsync neighbourRegion == null check ↵Justin Clark-Casey (justincc)1-90/+92
return earlier to simplify method
2012-05-25Stop it being possible for an agent to teleport back to its source region ↵Justin Clark-Casey (justincc)1-24/+165
before the source region has finished cleaning up old agent data and structures. If this is allowed, then the client usually gets forcibly logged out and data structures might be put into bad states. To prevent this, the binary state machine of EMT.m_agentsInTransit is replaced with a 4 state machine (Preparing, Transferring, ReceivedAtDestination, CleaningUp). This is necessary because the source region needs to know when the destination region has received the user but a teleport back cannot happen until the source region has cleaned up. Tested on standalone, grid and with v1 and v3 clients.
2012-05-24Don't actually proceed on a within-region teleport if another is already ↵Justin Clark-Casey (justincc)1-0/+2
taking place, rather than just (falsely) logging that we're not going to proceed. An oversight from recent commit 9ab0c81
2012-05-24On inter-region teleport, only stand the avatar up if the QueryAccess call ↵Justin Clark-Casey (justincc)1-7/+7
to the destination scene actually succeeds.
2012-05-24Now that the EntityTransferModule is per-region, fetch the event queue ↵Justin Clark-Casey (justincc)1-18/+22
module once rather than repeatedly via scene presences
2012-05-24Fix issue where a dns resolution failure on the final destination might ↵Justin Clark-Casey (justincc)1-192/+200
leave the user unable to teleport since the transit flag was not being reset. This moves the 'already in transit' check further up and resets the flag if dns resolution fails and in the new required places.
2012-05-24If an agent is still registered as 'in transit' by the source region, don't ↵Justin Clark-Casey (justincc)2-66/+58
allow an immediate teleport back. This is to help relieve a race condition when an agent teleports then immediately attempts to teleport back before the source region has properly cleaned up/demoted the old ScenePresence. This is rare in viewers but much more possible via scripting or region module. However, more needs to be done since virtually all clean up happens after the transit flag is cleared . Possibly need to add a 'cleaning up' state to in transit. This change required making the EntityTransferModule and HGEntityTransferModule per-region rather than shared, in order to allow separate transit lists. Changes were also required in LocalSimulationConnector. Tested in standalone, grid and with local and remote region crossings with attachments.
2012-05-23minor: Make log class names in InventoryAccessModule uniformJustin Clark-Casey (justincc)1-10/+10
2012-05-23Fix bug where an avatar that had an object they owned attached through ↵Justin Clark-Casey (justincc)1-23/+36
llAttachToAvatar() or osForceAttachToAvatar() would wrongly have next permissions come into play when they detached that object and rezzed it in scene. This is because the attachments module code was setting the 'object slam' bit by using PermissionMask.All Solution here is to route the attachment item creation call through the existing inventory code in BasicInventoryAccessModule rather than copy/pasted code in AttachmentsModule itself.
2012-05-21Setting 'in transit' on a local teleport as well as inter-region teleports.Justin Clark-Casey (justincc)1-0/+9
This is to eliminate possible race conditions if two teleport calls are made concurrently, where at least one is a local teleport. This is pretty much impossible on a manual user teleport but can happen on script-invoked teleports.
2012-05-17Remove redundant "Teleport failed:" from reason when QueryAccess fails for ↵Justin Clark-Casey (justincc)1-4/+12
the destination simulator. This part of the string is already provided by the viewer. Also adds more reason logging for diagnostics when teleports are refused/fail.