aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-08-24Fix background inventory loading (Viewer 3) so it won't lag out the simMelanie2-2/+4
2012-08-15Don't enable the thread watchdog until all regions are ready.Justin Clark-Casey (justincc)1-5/+26
This is to avoid false positives when the machine is under heavy load whilst starting up.
2012-08-15Implementing PRIM_LINK_TARGET in a non-recursive fashionSignpostMarv1-1/+1
2012-08-14Allow the use of the region debug console found in recent viewers. This consoleMelanie5-3/+21
will be available to estate owners and managers. If the user using the console had god privs, they can use "set console on" and "set console off" to switch on the actual region console. This allows console access from within the viewer. The region debug console can coexist with any other main console.
2012-08-14Allow the use of the region debug console found in recent viewers. This consoleMelanie5-3/+21
will be available to estate owners and managers. If the user using the console had god privs, they can use "set console on" and "set console off" to switch on the actual region console. This allows console access from within the viewer. The region debug console can coexist with any other main console.
2012-08-03Fix old regression that stopped saving parcel owner data in OARs.Justin Clark-Casey (justincc)2-35/+72
This was working in 0.7.2 but was accidentally removed from 0.7.3. The --publish option for "save oar" will now save oars stripped of parcel owner information as well as scene object info. Please use the --publish option if you want to publish oars that may be later loaded by others to the same grid from which they were saved.
2012-07-27making first run more resilient to bad input (loop until good input, rather ↵SignpostMarv1-7/+19
than crash)
2012-07-27minor: Comment out unused MemoryWatchdog.m_churnRatePerMillisecond - this is ↵Justin Clark-Casey (justincc)1-1/+1
currently calculated dynamically
2012-07-27Remove a couple of compiler warnings pointed out by SignpostMarvJustin Clark-Casey (justincc)1-1/+0
2012-07-25Move Watchdog and MemoryWatchdog classes into OpenSim.Framework.Monitoring ↵Justin Clark-Casey (justincc)6-2/+6
with other monitoring code from OpenSim.Framework
2012-07-25Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)8-11/+9
This better reflects the long-term purpose of that project and matches Monitoring modules.
2012-07-25Add MemoryWatchdog class missing from git master a1e9964Justin Clark-Casey (justincc)1-0/+129
2012-07-25Correct churn stat from MB/s from KB/sJustin Clark-Casey (justincc)1-1/+1
2012-07-25Add experimental "OpenSim object memory churn" statistics to output of ↵Justin Clark-Casey (justincc)2-8/+15
region console "show stats" command This aims to capture the amount of memory that OpenSim turns over whilst operating a region. This memory is not lost - apart from leaks it is reclaimed by the garbage collector. However, the more memory that gets turned over the more work the GC has to do to reclaim it.
2012-07-25Make SceneManager.OnRegionsReadyStatusChange event available.Justin Clark-Casey (justincc)1-0/+8
This is fired when all regions are ready or when at least one region becomes not ready. Recently added EventManager.OnRegionReady becomes OnRegionReadyStatusChange to match OnLoginsEnabledStatusChange
2012-07-23Committing Avination's memleak fix-a-thon, installment #2Melanie1-1/+10
Ensure items coming off the lockless queue are released. Also ensure this is done when the queue is cleared.
2012-07-23Commiting Avination's memleak fix-a-thon, installment #1Melanie1-4/+8
As the MinHeap shrinks, free object references that have been sent. Also, free the last item when it empties.
2012-07-19Fix slow loading of task inventoryMelanie1-1/+1
2012-07-19Add EventManager.OnRegionLoginsStatusChange fired whenever logins are ↵Justin Clark-Casey (justincc)1-0/+5
enabled or disabled at any point, not just during initial startup. This replaces EventManager.OnLoginsEnabled which only fired when logins were first enabled and was affected by a bug where it would never fire if the region started with logins disabled.
2012-07-17fix PollServiceRequestManagerUbitUmarov1-10/+47
2012-07-17Replace PollServiceRequestManager with older version, add extra logging toMelanie1-7/+6
event exceptions to see call path leading up to it.
2012-07-15Eliminate a spurious exception report when a https url is accessed with a wrongMelanie1-0/+2
CN
2012-07-13Rather than instantiating a UTF8 encoding everywhere when we want to supress ↵Justin Clark-Casey (justincc)2-3/+2
the BOM, use a single Util.UTF8NoBomEncoding. This class is thread-safe (as evidenced by the provision of the system-wide Encoding.UTF8 which does not suppress BOM on output).
2012-07-12Remove IClientAPI.GetClientEP() in favour of existing identical ↵Justin Clark-Casey (justincc)1-1/+0
IClientAPI.RemoteEndpoint.
2012-07-12Extend "show circuits" to show circuit code, ip and viewer name.Justin Clark-Casey (justincc)1-0/+5
Also change to use standard table formatting "show circuits" and "show connections" console commands are very similar but access different data structures.
2012-07-11Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)6-27/+19
constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
2012-07-11 stop keeping references to objects on released itemsUbitUmarov1-1/+10
2012-07-11 clear released minheap items so they don't keep holding references toUbitUmarov1-0/+1
objects.
2012-07-11Make sure handles stay intact when removing from the MinHeapMelanie1-5/+8
2012-07-10add some more memory information to StatsCollectorUbitUmarov1-4/+20
2012-07-06Convert the slow request queue into a regular queue and add some cleanupMelanie1-4/+18
and locking.
2012-07-05Log warning if time between invocations of the watchdog thread is twice the ↵Justin Clark-Casey (justincc)1-2/+22
timer setting. This is to help detect situations where thread timeout warnings are being generated because of general machine issues rather than deadlock, network or other problems.
2012-07-05Fix the boo-booMelanie1-3/+3
2012-07-05Add an EventType enum and Type field to the poll service event args. This allowsMelanie2-11/+34
the manager to tell what type of event it is. All events except for lsl http in go to the "slow queue" which is run once per second as before.
2012-07-04 use the pollEvent timeout paramenter on poolingUbitUmarov1-4/+7
2012-07-04 added a timeout paramenter to PollServiceEventArgs, so each type can define ↵UbitUmarov2-2/+5
it's timeout
2012-07-04*test2* http poll: increased again the pool rate do 10/s but increased ↵UbitUmarov1-2/+2
timeout to 1s. So data there is less delay when there is new data, but enought waiting time for it to be avaiable
2012-07-04*test* slow http retries pool rate to original 1sUbitUmarov1-1/+1
2012-07-04refactor: rename Watchdog.WATCHDOG_TIMEOUT_MS to DEFAULT_WATCHDOG_TIMEOUT_MS ↵Justin Clark-Casey (justincc)1-3/+3
to reflect what it actually is
2012-07-01Add preservation of running state of scripts when drag-copying.Melanie1-0/+12
2012-07-01*TO CHECK/REVIEW/REVERT/TEST whatever* pollService new requests get enqueued ↵UbitUmarov2-0/+206
to unified requests queue directly. Retries get into that every 100ms. 3 working threads as before plus another that only does retries timming.
2012-06-30Remove some mono compiler warningsJustin Clark-Casey (justincc)2-2/+2
2012-06-29Add IScene.Name for code clarity to replace the RegionInfo.RegionName used ↵Justin Clark-Casey (justincc)1-0/+5
in many, many log messages.
2012-06-28Revert "Mantis 5977 Corrections to llRegionSayTo"Melanie1-20/+0
This reverts commit 679da63da617d031e5e7ae3f2d2a29db1a23ace3. Conflicts: OpenSim/Region/CoreModules/Avatar/Chat/ChatModule.cs
2012-06-28Fix llRegionSayTo the right wayMelanie1-0/+7
2012-06-26Add an event to the poll service manager thread to allow starting itMelanie2-4/+14
when needed rather than once per second. That is just too slow!
2012-06-26Add much easier ConsoleDisplayTable AddColumn() and AddRow() methods.Justin Clark-Casey (justincc)1-0/+15
Use these for new "show regions" command rather than old cumbersome stuff.
2012-06-22Avoid a race condition where an incoming request to a script external URL ↵Justin Clark-Casey (justincc)2-5/+11
can trigger an exception is the URL was being removed at the same time. This involves three steps 1) Return gracefully in UrlModule.HttpRequestHandler() instead of throwing an exception when the url cannot be found in its index 2) Return true instead of false in HasEvents() if no matching request is found in the map. This call will only happen in the first place for raced requests. 3) Return a 404 in GetEvents() if the request is not in the index, rather than a blank 200 OK. Many thanks to Tom Haines in http://opensimulator.org/mantis/view.php?id=6051 for doing some of the work on this.
2012-06-22If starting scripts on initial sim start, provide INFO level log feedback ↵Justin Clark-Casey (justincc)1-1/+1
each time 50 scripts have been started. This is to provide an indication of what's happening now that the default isn't to report every single script start. Changes XEngine logging level in OpenSim.exe.config from WARN to INFO.
2012-06-20Remove STARTUP COMPLETE message from the startuplogo.txt file and into main ↵Justin Clark-Casey (justincc)1-1/+3
logging