clockwerk-opensim-stable – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 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 OpenSimulator 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 Nini.Config;
29 using System;
30  
31 namespace OpenSim.Tools.Configger
32 {
33 public class Configger
34 {
35 public static int Main(string[] args)
36 {
37 ArgvConfigSource argvConfig = new ArgvConfigSource(args);
38 argvConfig.AddSwitch("Startup", "format", "f");
39  
40 IConfig startupConfig = argvConfig.Configs["Startup"];
41  
42 string format = startupConfig.GetString("format", "ini");
43  
44 ConfigurationLoader loader = new ConfigurationLoader();
45  
46 IConfigSource s = loader.LoadConfigSettings();
47  
48 if (format == "mysql")
49 {
50 foreach (IConfig c in s.Configs)
51 {
52 foreach (string k in c.GetKeys())
53 {
54 string v = c.GetString(k);
55  
56 if (k.StartsWith("Include-"))
57 continue;
58 Console.WriteLine("insert ignore into config (section, name, value) values ('{0}', '{1}', '{2}');", c.Name, k, v);
59 }
60 }
61 }
62 else if (format == "xml")
63 {
64 Console.WriteLine("<Nini>");
65  
66 foreach (IConfig c in s.Configs)
67 {
68 int count = 0;
69  
70 foreach (string k in c.GetKeys())
71 {
72 if (k.StartsWith("Include-"))
73 continue;
74  
75 count++;
76 }
77  
78 if (count > 0)
79 {
80 Console.WriteLine("<Section Name=\"{0}\">", c.Name);
81  
82 foreach (string k in c.GetKeys())
83 {
84 string v = c.GetString(k);
85  
86 if (k.StartsWith("Include-"))
87 continue;
88 Console.WriteLine(" <Key Name=\"{0}\" Value=\"{1}\" />", k, v);
89 }
90  
91 Console.WriteLine("</Section>");
92 }
93 }
94 Console.WriteLine("</Nini>");
95 }
96 else if (format == "ini")
97 {
98 foreach (IConfig c in s.Configs)
99 {
100 int count = 0;
101  
102 foreach (string k in c.GetKeys())
103 {
104 if (k.StartsWith("Include-"))
105 continue;
106  
107 count++;
108 }
109  
110 if (count > 0)
111 {
112 Console.WriteLine("[{0}]", c.Name);
113  
114 foreach (string k in c.GetKeys())
115 {
116 string v = c.GetString(k);
117  
118 if (k.StartsWith("Include-"))
119 continue;
120 Console.WriteLine("{0} = \"{1}\"", k, v);
121 }
122  
123 Console.WriteLine();
124 }
125 }
126 }
127 else
128 {
129 Console.WriteLine("Error: unknown format: {0}", format);
130 }
131  
132 return 0;
133 }
134 }
135 }