aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridServerBase.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* All grid servers deleted, including user server. They served us well.Diva Canto2010-01-101-170/+0
|
* * Changed various modules to not initialize timers unless the module is ↵John Hurliman2009-10-231-1/+0
| | | | | | initialized. Ideally, the timers would not initialize unless the module was actually enabled, but Melanie's work on configuring module loading from a config file should make that unnecessary * Wrapped the Bitmap class used to generate the world map tile in a using statement to dispose of it after the JPEG2000 data is created
* * Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always ↵John Hurliman2009-10-231-5/+5
| | | | | | | handle PluginLoader with the using pattern. This freed up 121,634,796 bytes on my system * Avoid allocating an Action<IClientAPI> object every round of the OutgoingPacketHandler * Removed unnecessary semi-colon endings from OpenSim.ini.example [InterestManagement] section
* Add -xmlfile= option to UGM, to let the files be outside bin if desiredMelanie2009-08-211-1/+2
|
* Graft the REST console onto the grid server. Same procedure as withMelanie2009-08-191-2/+25
| | | | the user server.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker2009-05-201-1/+1
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-0/+1
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-1/+1
| | | | | | | | console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
* Added GridServerPlugin class (which implements IGridPlugin) to ↵MW2009-02-271-91/+10
| | | | | | | | | OpenSim.Grid.GridServer.Modules. This class handles all the initialising of the grid server. And made GridServer into basically a generic server that just loads plugins. So this is a step towards having a generic server that loads service modules.
* Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW2009-02-261-33/+0
| | | | | | | work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
* Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW2009-02-251-1/+1
| | | | name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
* Removed the additions from the last revision for the "ShowHelp" delegate ↵MW2009-02-241-5/+0
| | | | handling, as it seems that system isn't in use anymore.
* More refactoring of the Grid/user/messaging servers.MW2009-02-241-1/+6
|
* Added OpenSim.Grid.GridServer.Modules, for the GridServer modules/components. MW2009-02-241-0/+1
|
* Added OpenSim.Grid.Framework project.MW2009-02-241-0/+4
| | | | | Changed the Gridserver so it uses/references OpenSim.Grid.Framework
* More Grid server refactoringMW2009-02-211-9/+13
|
* Added missing header to a file (before chi11ken does it)MW2009-02-211-1/+1
|
* Added a check to GridServerBase.RegisterInterface<T>(T iface), so that it ↵MW2009-02-211-1/+4
| | | | can't try to add duplicate interfaces and cause a exception.
* A bit more refactoring of the GridServer. To make the "modules" share a ↵MW2009-02-211-6/+6
| | | | common Initialise method.
* Refactored the GridServer into a GridDBService and a set of "modules". MW2009-02-211-41/+80
| | | | | Currently they aren't plugin modules as the support for dynamically loading them isn't complete.
* * optimized usings.lbsa712009-02-121-1/+0
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-101-3/+5
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-29/+34
| | | | | | | | | 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.
* Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW2008-12-021-1/+1
| | | | OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
* * Implement basic region filtering as described in ↵Justin Clarke Casey2008-11-111-1/+1
| | | | | | | | | | | | https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
* * Apply a modified version of the part of ↵Justin Clarke Casey2008-10-131-3/+30
| | | | | | | | | | | | | | http://opensimulator.org/mantis/view.php?id=2361 that allows region registration to be enabled/disabled on the grid server * Region registration is enabled by default in the configuration unless the user chooses otherwise * On the console * show status - shows grid status * enable-reg - enables region registration to the grid * disable-reg - disables region registration * Enabling or disabling region registration will not affect any other grid functions or regions already on the grid
* Add the missing bits for the new region-search:Homer Horwitz2008-10-031-0/+1
| | | | | | | | | | | | | | | | - Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
* * refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey2008-10-031-3/+1
| | | | for consistency's sake
* * refactor: make startup a template methodJustin Clarke Casey2008-10-031-3/+1
|
* * Reinstate grid receive and send keys to user server configJustin Clarke Casey2008-08-091-6/+1
| | | | | | | * Looks like these weren't so unused after all - oops! * Remove message from grid server config
* Thanks, sempuki, for a patch that moves all grid plugins to new PluginLoader ↵Mike Mazur2008-07-181-2/+1
| | | | (issue 1763).
* Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke2008-07-111-1/+2
| | | | | while he studies the issues in Windows a little bit.
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-101-2/+1
| | | | | | Move control of Mono.Addins from source attributes to external XML files. This removes a lot of coupling of the source with Mono.Addins
* Mantis#1647. Thank you very much, Sempuki for a patch that:Charles Krinke2008-07-041-10/+6
| | | | | Updates the previous module loader work.
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-271-18/+9
| | | | | | | | | | Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
* Formatting cleanup, minor refactoring, svn properties.Jeff Ames2008-06-041-7/+7
|
* * 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
* * Propogate OpenSimMain hack to stop mono-addins scanning warnings to the ↵Justin Clarke Casey2008-05-311-0/+7
| | | | | | | | grid managing * This hack just temporarily sends console output to /dev/null when we make the relevant addins calls, restoring it afterwards
* let Grid Servers specify a connect string in their configuration.Sean Dague2008-05-281-1/+1
|
* * Minor: For no particularly good reason, make all console prompts conform ↵Justin Clarke Casey2008-05-161-1/+1
| | | | to the same prompt scheme
* Formatting cleanup.Jeff Ames2008-05-141-1/+1
|
* * As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2008-05-131-5/+5
| | | | | | | | | | | | the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
* * Minor: Make some direct grid server console output into logged messages ↵Justin Clarke Casey2008-05-121-7/+10
| | | | instead
* * Fix opensim region server shutdown.Justin Clarke Casey2008-05-091-1/+1
|
* * Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey2008-05-071-16/+5
| | | | | | | | where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
* * Rolled back a few changes.Adam Frisby2008-05-011-32/+28
|
* * Cleaning code still.Adam Frisby2008-05-011-28/+32
|
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-5/+2
| | | | (this took a while to run).
* * Refactored out common http handler operationslbsa712008-03-281-34/+27
|