aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/Application.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Checks the number of ThreadPool and IOCP threads on startup and bumps up the ↵John Hurliman2009-10-061-0/+12
| | | | numbers to .NET defaults of 500/1000 if need be
* * MySQL data tests now pass by fixing a bad fix for a bad cast on the asset ↵John Hurliman2009-10-041-7/+4
| | | | | | Local member in MySQLAssetData * First pass at applying the using(){} pattern to IDisposable objects. Always use the using pattern on IDisposable objects whenever possible, do not manually call .Close() or .Dispose() unless there is no other way to write the code. This pass mostly covers OpenSim.Data.MySQL, and should have no functional change (tests still pass)
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* Add the ability to use -console=rest to the region server. UserMelanie2009-08-171-1/+2
| | | | and pass are specified the same way as for the ROBUST server
* * minor: CommentsTeravus Ovares (Dan Olivares)2009-08-121-1/+32
|
* * minor ccclbsa712009-07-241-0/+3
|
* Only save crashes to disk if save_crashes in OpenSim.ini is true (false by ↵Jeff Ames2009-06-011-17/+20
| | | | default).
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * minor: Tweak the command exception catcher of last resort to make a little ↵Justin Clarke Casey2009-05-191-1/+1
| | | | more sense
* Getting rid of -hypergrid=true on the command line. This config now goes ↵diva2009-04-271-7/+1
| | | | inside OpenSim.ini in the Startup section. This makes the HG compatible with -background, and prepares the way for further work on HG-related config vars. Might help with mantis #3527.
* - adding -logconfig option to allow configuration of log4net fromDr Scofield2009-04-031-2/+14
| | | | | | | log4net config file other then bin/OpenSim.exe.config - moving ArgvConfigSource initialization up to allow for configuration of XmlConfigurator.Configure()
* * Apply http://opensimulator.org/mantis/view.php?id=3343Justin Clarke Casey2009-03-261-1/+0
| | | | | | | * Removes long unused -useexecutepath switch * Thanks coyled
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-101-5/+6
|
* Added support for reading ini files from a (optional) config folder. This ↵MW2009-02-271-0/+1
| | | | | | | | allows the spliting up of opensim.ini into multiple ini files. The ini files in this folder are loaded after the masterini file (if that is set) and before opensim.ini. The default folder it looks for and searches is "bin\config", but that can be set by using the command arg "-inidirectory=<path>" (path is local to bin\) when starting up opensim.exe.
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-4/+4
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* * optimized usings.lbsa712009-02-121-2/+0
|
* * Stop OpenSim crashing if an exception from a command makes it right up to ↵Justin Clarke Casey2009-02-101-2/+8
| | | | the top of the stack
* * Fix build break, parentheses in the wrong placeJustin Clarke Casey2009-02-101-1/+1
|
* * Overwrite the old saved OpenSim.ini file saved in response to a crash if ↵Justin Clarke Casey2009-02-101-1/+1
| | | | one already exists
* Stopgap measure: To use gridlaunch, or GUI, start opensim withMelanie Thielker2009-02-101-1/+1
| | | | | | OpenSim.exe -gui=true
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-6/+9
| | | | | | | | | line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
* * As per http://opensimulator.org/mantis/view.php?id=3065Justin Clarke Casey2009-02-021-1/+1
| | | | | | | * Copy OpenSim.ini to _OpenSim.ini on crash instead of opensim.ini * This makes it work on Linux/Mac(?) as well as Windows
* * Minor tweak to crash logger to copy ini with log if save-to-dir is on.Adam Frisby2009-01-041-1/+5
| | | | | * Added BinaryGenericMessage handler for cases where GenericMessage isnt transmitting pure-utf8 characters.
* * Added primitive exception logging capabilities.Adam Frisby2008-12-091-9/+20
| | | | | | | * Disabled by default (see OpenSim.ini.example for how to enable) * Saves exceptions to a folder on disk (default "crashes") when enabled. * These reports can then be uploaded or posted to help debug an error.
* * Apply http://opensimulator.org/mantis/view.php?id=2640Justin Clarke Casey2008-11-251-1/+9
| | | | | | | | * This is Diva's hypergrid patch, as perviously discussed on the opensim-dev mailing list * Applied some minor prebuild.xml jiggling to resolve a dependency issue * Thanks Diva!
* Add a "inimaster" switch to OpenSim.ini. It will load a master ini fileMelanie Thielker2008-10-111-0/+1
| | | | | | and then the OpenSim.ini only needs to contain instance specific data
* * Tidy up configuration stuff, eliminated default setting duplication along ↵Justin Clarke Casey2008-10-041-3/+5
| | | | | | | | | the way * This revision also makes the exception catcher of last resort print to the log instead of just the console * This means logs should now capture sim crashing exceptions, though not those which are caused by a crash of the virtual machine itself
* * some if inversions and added {}'s for readabilitylbsa712008-09-081-0/+2
|
* Formatting cleanup.Jeff Ames2008-08-181-1/+1
|
* Mantis #1936Melanie Thielker2008-08-131-1/+0
| | | | | | | | Thank you, gsky, for a patch that corrects the threading model to use the multithreaded apartment in the grid servers and region server.
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-011-2/+0
| | | | they appear in non-console servers too
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-011-2/+2
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Refactor: Split opensim background server into a separate classJustin Clarke Casey2008-06-011-2/+2
|
* * Make version information common to all serversJustin Clarke Casey2008-05-311-0/+1
| | | | | | * Now all servers respond to the "show version" command on the console
* Formatting cleanup.Jeff Ames2008-05-161-4/+4
|
* * Spring cleaning, round 3029Adam Frisby2008-05-081-1/+2
|
* From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey2008-05-071-2/+0
| | | | | | | | Implements the show version command. If you type show version at the console, you will get the revision that opensim is running, assuming you have the .svn/entries file in your base directory (e.g. you are running from code extracted from our SVN repository) A patch to also send this to the client should follow shortly
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-291-1/+0
| | | | | | | | | * Fixes the admin_shutdown xmlrpc method * Adds a share/python/console/shutdown.py script for shutting down a background OpenSim * For more details see http://xyzzyxyzzy.net/2008/04/29/console-less-opensim/ * There should also be instructions in the opensimulator wiki soon as well
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-281-5/+21
| | | | | | | | | | | | | | | | | | Note: This is the first part of some changes from Dr Scofield to support console-less operation of an OpenSim region server. The changes are not yet complete. * refactors OpenSimMain into two classes: OpenSimMain and OpenSimMainConsole. OpenSimMainConsole derives from OpenSimMain and basically is the "old" OpenSimMain * drops StartConsole from RegionApplicationBase (was only called from the "old" OpenSimMain anyhow) * reverts the changes to TryGetScene(string, out scene) as that seems to work perfectly fine * adds a check to region-remove to see whether m_sceneManger.CurrentScene is non-null before comparing it against the region-to-be-removed
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-2/+2
| | | | (this took a while to run).
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* More compiler warning cleanup.Jeff Ames2008-02-291-1/+0
| | | | | Removed verbose flag, since it doesn't do anything any more.
* Minor cleanup.Jeff Ames2008-02-201-2/+0
|
* Unhandled exception handler hookup is now the first thing to happen when ↵Tedd Hansen2008-02-111-2/+3
| | | | OpenSim starts
* Converted logging to use log4net.Jeff Ames2008-02-051-5/+6
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* First part of avatar persistence, currently only really works in standalone ↵MW2008-02-041-1/+2
| | | | | | | | | mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
* Moved iniFilePath to a static and put it in OpenSim.Application.iniFilePath.Tedd Hansen2008-02-011-0/+2
| | | | | | Refreshing config based on this. Temporarily disabled feature to refresh config file while running.
* Added block for scenario: global exception handler called in loop when ↵Tedd Hansen2008-01-181-1/+10
| | | | | | | exception happens inside global exception handler Added InnerException to output
* * Mother of all commits:Adam Frisby2008-01-151-2/+2
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* Print out the exception as well as APPLICATION EXCEPTION DETECTED when the ↵Justin Clarke Casey2008-01-141-8/+11
| | | | | | | | server hits something terminal. This was the original intention, but the line order was slightly wrong.