| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|\
| |
| |
| | |
Also prevent god takes from ending up in Lost and Found
|
| |
| |
| |
| |
| |
| | |
unpersisted delink
This considerably improves delete performance for objects with large linksets
|
| |
| |
| |
| | |
the script.
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| | |
viewer's edit tools.
This event used to trigger only when the scale was changed with a script.
|
| |
| |
| |
| |
| |
| |
| | |
save properly, as will the results of a resizer script working. Attachment
positions are no longer saved on each move, but instead are saved once on
logout. Attachment script states are saved as part of the attachment now
when detaching.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
save properly, as will the results of a resizer script working. Attachment
positions are no longer saved on each move, but instead are saved once on
logout. Attachment script states are saved as part of the attachment now
when detaching.
|
| | |
|
| |
| |
| |
| | |
the main cause for "ghost prims"
|
| |
| |
| |
| | |
halting visual behavior of large group deletes and eliminates the packet flood
|
| |
| |
| |
| |
| |
| |
| | |
WARNING!!!!!
You can TAKE them, but you can't REZ them again. Only the first of the contained
objects will rez, the rest is inaccessible until rezzing them is implemented.
Also, rotations are not explicitly stored. This MAY work. Or not.
|
| | |
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| | |
made more useful.
If a separate UUID parameter is better for the future then this can be added later on.
|
|\ \
| | |
| | |
| | | |
ssh://melanie@3dhosting.de/var/git/careminster into careminster-presence-refactor
|
| | | |
|
|\ \ \
| |/ /
|/| /
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
scene, remove the old uuid reference from m_parts as well as adding the new one.
The separate remove and set operations is SOG.set_UUID() are both locked under m_parts.SyncRoot since they are logically atomic (though this isn't such an issue if the SOG isn't part of a scene)
Added unit test for this behaviour.
Also changed the second m_parts.AddOrReplace() to m_parts.Add(). As the old reference is now removed we never end up replacing an identical uuid. And if we replace a uuid that's already there (from a child part) then this is an error.
|
| | |
|
|\ \
| |/
| |
| |
| |
| | |
Integrate the next large patch.
Don't use this version, it has a ghost avatar issue. Next push
will fix it.
|
| | |
|
| |
| |
| |
| | |
MapAndArray collection
|
| | |
|
| | |
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| | |
code readability
|
| |
| |
| |
| |
| |
| |
| |
| | |
scene, iterate over an unlocked list instead
Previously, deadlock was possible because deleting a group took a SOG.Children lock then an m_entityUpdates.SyncRoot lock in LLClientView
At the same time, a thread starting from LLClientView.ProcessEntityUpdates() could take an m_entityUpdates.SyncRoot lock then later attempt to take a SOG.Children lock in PermissionsModule.GenerateClientFlags() and later on
Taking a children list in SOG appears to be a better solution than changing PermissionsModule to not relook up the prim. Going the permission modules root would require that all downstream modules not take a SOG.Children lock either
|
|\ \
| | |
| | |
| | | |
ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
|
| |\ \
| | |/ |
|
| | |
| | |
| | |
| | | |
This can get very spammy with regularly changing objects. Please uncomment if required.
|
|/ / |
|
| |
| |
| |
| |
| | |
position on backup. This way, ant object that has been moved will be
checked for ghost prims as soon as it is persisted.
|
|\ \
| |/
| |
| |
| | |
The modules will need to be updated for this to compile and run again. Please
don't use until I do the companion commit to modules later on.
|
| |\ |
|
| | | |
|
| |/
| |
| |
| |
| | |
* Removed StorageManager
* CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion.
This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart).
However, DeRezObjects() deleted to user inventory, which is required by llDie() or direct region module unlink and deletion.
Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path.
Uncommented TestDelinkPersistence() since this now passes.
Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts.
|
|\ \ |
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion.
This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart).
However, DeRezObjects() deleted to user inventory, which is not required by llDie() or direct region module unlink and deletion.
Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path.
Uncommented TestDelinkPersistence() since this now passes.
Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts.
|
| |
| |
| |
| |
| | |
Added a MockRegionDataPlugin to do in-memory persistence for tests since adding this to OpenSim.Data.Null.NullDataStore doesn't seem appropriate
NullDataStore can do nothing because OpenSim only ever retrieve region objects from the database on startup. Adding an in-memory store here would be unecessary overhead.
|
| | |
|