diff options
author | Teravus Ovares | 2008-01-06 18:18:19 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-01-06 18:18:19 +0000 |
commit | b8efd5f2949dd247590c1e40509e71031faf3413 (patch) | |
tree | 02307ef3edef08bf1a393d89cd772ad8d0ee7ae5 /OpenSim/Framework | |
parent | Set svn:eol-style. (diff) | |
download | opensim-SC_OLD-b8efd5f2949dd247590c1e40509e71031faf3413.zip opensim-SC_OLD-b8efd5f2949dd247590c1e40509e71031faf3413.tar.gz opensim-SC_OLD-b8efd5f2949dd247590c1e40509e71031faf3413.tar.bz2 opensim-SC_OLD-b8efd5f2949dd247590c1e40509e71031faf3413.tar.xz |
* Added some userserver glue for communications with the message server
* Added some code for the message server, fixed a few references and starting to flesh it out.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/MessageServerConfig.cs | 116 | ||||
-rw-r--r-- | OpenSim/Framework/Servers/MessageServerInfo.cs | 17 |
2 files changed, 133 insertions, 0 deletions
diff --git a/OpenSim/Framework/MessageServerConfig.cs b/OpenSim/Framework/MessageServerConfig.cs new file mode 100644 index 0000000..2859c25 --- /dev/null +++ b/OpenSim/Framework/MessageServerConfig.cs | |||
@@ -0,0 +1,116 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | |||
32 | namespace OpenSim.Framework | ||
33 | { | ||
34 | /// <summary> | ||
35 | /// Message Server Config - Configuration of the Message Server | ||
36 | /// </summary> | ||
37 | public class MessageServerConfig | ||
38 | { | ||
39 | public string DefaultStartupMsg = ""; | ||
40 | public string UserServerURL = ""; | ||
41 | public string UserSendKey = ""; | ||
42 | public string UserRecvKey = ""; | ||
43 | |||
44 | public string DatabaseProvider = ""; | ||
45 | public string GridCommsProvider = ""; | ||
46 | |||
47 | public static uint DefaultHttpPort = 8006; | ||
48 | public static bool DefaultHttpSSL = false; | ||
49 | public uint HttpPort = DefaultHttpPort; | ||
50 | public bool HttpSSL = DefaultHttpSSL; | ||
51 | |||
52 | private ConfigurationMember configMember; | ||
53 | |||
54 | public MessageServerConfig(string description, string filename) | ||
55 | { | ||
56 | configMember = | ||
57 | new ConfigurationMember(filename, description, loadConfigurationOptions, handleIncomingConfiguration, true); | ||
58 | configMember.performConfigurationRetrieve(); | ||
59 | } | ||
60 | public void loadConfigurationOptions() | ||
61 | { | ||
62 | |||
63 | configMember.addConfigurationOption("default_user_server", | ||
64 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | ||
65 | "Default User Server URI", | ||
66 | "http://127.0.0.1:" + MessageServerConfig.DefaultHttpPort.ToString() + "/", false); | ||
67 | configMember.addConfigurationOption("user_send_key", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
68 | "Key to send to user server", "null", false); | ||
69 | configMember.addConfigurationOption("user_recv_key", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
70 | "Key to expect from user server", "null", false); | ||
71 | |||
72 | configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
73 | "DLL for database provider", "OpenSim.Framework.Data.MySQL.dll", false); | ||
74 | |||
75 | configMember.addConfigurationOption("region_comms_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | ||
76 | "DLL for comms provider", "OpenSim.Region.Communications.OGS1.dll", false); | ||
77 | |||
78 | configMember.addConfigurationOption("http_port", ConfigurationOption.ConfigurationTypes.TYPE_UINT32, | ||
79 | "Http Listener port", DefaultHttpPort.ToString(), false); | ||
80 | configMember.addConfigurationOption("http_ssl", ConfigurationOption.ConfigurationTypes.TYPE_BOOLEAN, | ||
81 | "Use SSL? true/false", DefaultHttpSSL.ToString(), false); | ||
82 | |||
83 | } | ||
84 | |||
85 | public bool handleIncomingConfiguration(string configuration_key, object configuration_result) | ||
86 | { | ||
87 | switch (configuration_key) | ||
88 | { | ||
89 | |||
90 | case "default_user_server": | ||
91 | UserServerURL = (string)configuration_result; | ||
92 | break; | ||
93 | case "user_send_key": | ||
94 | UserSendKey = (string)configuration_result; | ||
95 | break; | ||
96 | case "user_recv_key": | ||
97 | UserRecvKey = (string)configuration_result; | ||
98 | break; | ||
99 | case "database_provider": | ||
100 | DatabaseProvider = (string)configuration_result; | ||
101 | break; | ||
102 | case "http_port": | ||
103 | HttpPort = (uint)configuration_result; | ||
104 | break; | ||
105 | case "http_ssl": | ||
106 | HttpSSL = (bool)configuration_result; | ||
107 | break; | ||
108 | case "region_comms_provider": | ||
109 | GridCommsProvider = (string)configuration_result; | ||
110 | break; | ||
111 | } | ||
112 | |||
113 | return true; | ||
114 | } | ||
115 | } | ||
116 | } \ No newline at end of file | ||
diff --git a/OpenSim/Framework/Servers/MessageServerInfo.cs b/OpenSim/Framework/Servers/MessageServerInfo.cs new file mode 100644 index 0000000..13d65f9 --- /dev/null +++ b/OpenSim/Framework/Servers/MessageServerInfo.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Servers | ||
6 | { | ||
7 | public class MessageServerInfo | ||
8 | { | ||
9 | public string URI; | ||
10 | public string sendkey; | ||
11 | public string recvkey; | ||
12 | public List<ulong> responsibleForRegions; | ||
13 | public MessageServerInfo() | ||
14 | { | ||
15 | } | ||
16 | } | ||
17 | } | ||