aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Archiver (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-09give up on a property that old monos do compile, but then smore ok execUbitUmarov2-2/+0
2018-01-08fall back to a obsolete property since several monos in use (include our ↵UbitUmarov2-2/+2
own) do not suporte the proper .net4.0 one
2018-01-05 a few more xml thingsUbitUmarov2-0/+4
2017-08-14Refactor archive loading to optionally start script engine after loading.Robert Adams1-12/+20
2017-06-26and add a missing bracket :)UbitUmarov1-1/+1
2017-06-26fix bad englishUbitUmarov1-1/+1
2017-06-24 a few more changes to iar/oar assets save error/warning to show problems ↵UbitUmarov1-9/+15
known to be asset errors
2017-06-23 code actually has no ideia if a id is a asset or not and does try to handle ↵UbitUmarov2-9/+9
all as assets, it really can't report errors. Change messages to make more clear they are only warnings and may mean nothing at all
2017-06-23 do the same on OAR savesUbitUmarov1-1/+16
2017-06-23several changes to iar/oar assets error reportsUbitUmarov3-16/+20
2017-06-22 actually iar do it for iarUbitUmarov1-1/+1
2017-06-22 show the count of broken assets we now have from gather on iar/oar pre save ↵UbitUmarov1-0/+3
information
2017-06-21do not try to store on oars temporary or in transit objects ( they may be ↵UbitUmarov1-9/+8
deleted during the save)
2017-06-21make oar/iar assets writer be done by caller thread like the rest of theUbitUmarov2-172/+48
oar/iar save. This may look more painfull but should reduce errors and threads fights. Fill lucky i just don't stop the entire simulation during this
2017-01-05Massive tab and trailing space cleanupMelanie Thielker8-138/+138
2016-09-27save oar: simplify confusing successefull assets saving messageUbitUmarov1-3/+8
2016-09-27load oar; activate area cliping if bounding-origin option is given. as help saysUbitUmarov1-2/+12
2016-08-22workaround potencial memory leakUbitUmarov1-0/+2
2016-07-28remove references to RegionCombinerModuleUbitUmarov2-15/+1
2015-11-27Fix Region Max height in boundingSize parameters checking in ↵Jak Daniels1-2/+2
ArchiverModule.cs to float.MaxValue .. as was changed in ArchiveReadRequest.cs in commit 71f5c2b856aeab2b535094804f15317d5dc544e1 A comparison of consistent 'default' values determines whether boundingBox check is true. Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
2015-11-22Fixed some stupid math and checks on --bounding-origin and --bounding-size. ↵Jak Daniels1-20/+9
Bounding origin can of course be negative if it needs to be as we're taking stuff from the (possibly rotated) source region. Bounding size must always be >=0 and <= destination region size. Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
2015-11-22 change silly Monitor useUbitUmarov1-11/+11
2015-11-22 change syncronization methodUbitUmarov1-76/+65
2015-11-22 revert take the Monitor.wait out of the locksUbitUmarov1-17/+16
2015-11-22 coment out merge option on multiregion oar load i addedUbitUmarov1-1/+1
2015-11-22 take the Monitor.wait out of the locksUbitUmarov1-16/+17
2015-11-22 a few more changes on Multiregion control file loadUbitUmarov2-9/+19
2015-11-22 add a a missing monitor.wait if still not needed, mb in futureUbitUmarov1-3/+8
2015-11-22 a few changes on Multiregion control file load ; load oar seems far from goodUbitUmarov2-8/+15
2015-11-22 add Monitor.wait on loadUbitUmarov1-0/+4
2015-11-22 reduce noise before compareUbitUmarov1-2/+13
2015-11-22 add merge option on multioar testUbitUmarov1-1/+3
2015-11-22 minor changesUbitUmarov1-14/+19
2015-11-22 don't use 'funny' QuaternionsUbitUmarov1-0/+2
2015-11-22Changes to Load Oar options and new code to support importing OARs with ↵Jak Daniels3-48/+262
different Region sizes to the destination region. Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
2015-11-17 work around some 'tests' errors: allow sitTargetposition and orientation to ↵UbitUmarov1-1/+2
be read from OAR on opensim, they are reset at avination, this may cause issues with old sits
2015-09-02seems to compile ( tests comented out)UbitUmarov2-113/+4
2015-08-24try to implement core load oar optionsUbitUmarov3-110/+314
2015-05-05Refactored some code that is used in two different dlls related to SOP ↵Diva Canto1-1/+1
rewriting. Also added some unit tests that relate to mantis #7514
2015-03-29varregion: any conversions of use of Constants.RegionSize converted intoRobert Adams1-1/+1
Util.cs routines to convert region coords to and from world coords or handles.
2015-03-11minor: Remove windows build warning about CompressionLevel package ambiguity.Justin Clark-Casey (justincc)1-0/+1
Relates to http://opensimulator.org/mantis/view.php?id=7442 Thanks Fly-Man-
2015-01-08Make the IteratingUuidGatherer the only UuidGatherer.Justin Clark-Casey (justincc)1-5/+5
This UUID gatherer provides a superset of the previous gatherer's functionality as it also allows the caller to control gathering iterations for load purposes.
2014-11-25refactor: Move methods to start a monitored thread, start work in its own ↵Justin Clark-Casey (justincc)3-5/+5
thread and run work in the jobengine from Watchdog to a WorkManager class. This is to achieve a clean separation of concerns - the watchdog is an inappropriate place for work management. Also adds a WorkManager.RunInThreadPool() class which feeds through to Util.FireAndForget. Also switches around the name and obj arguments to the new RunInThread() and RunJob() methods so that the callback obj comes after the callback as seen in the SDK and elsewhere
2014-11-25refactor: consistently put all test classes in the OpenSim.Tests.Common ↵Justin Clark-Casey (justincc)1-1/+0
package rather than some in OpenSim.Tests.Common.Mock the separate mock package was not useful and was just another using line to always add
2014-09-23Modifications to previous IAR commits to bring them more inline with ↵AliciaRaven1-9/+9
existing OpenSim code conventions. Also include new IAR save switch in console help print out.
2014-09-05For monitoring purposes, start non-timeout tasks (which do not currently use ↵Justin Clark-Casey (justincc)3-5/+8
a threadpool) via Watchdog.RunInThread() rather than Util.RunThreadNoTimeout() The functionality is the same but this allow us to monitor such tasks via "show threads" and abort them for test purposes, etc. Also extends thread names to provide more info (e.g. SendInitialDataToClient says what client the task is for).
2014-07-21Close streams immediately when we finish using themOren Hurvitz2-13/+15
2014-05-26When saving an OAR in "Publish" mode, also discard Group informationOren Hurvitz1-1/+2
2014-05-06new version of patch to add default-user switch new version :qw :wq updated ↵Matt Lehmann1-0/+2
version of default user switch for load oar :q :q
2014-05-06updated version of default user switch for load oar :q :qMatt Lehmann2-6/+42