From 64a98c736848de6099254f23483058668273c1a5 Mon Sep 17 00:00:00 2001 From: gareth Date: Mon, 14 May 2007 03:13:47 +0000 Subject: Finished off adding the new management API to gridserver Updated VersionInfo.cs finally Updated prebuild and rebuilt nant build files Completed Management agent basics --- ExportBot/Program.cs | 141 --------------------------------------------------- 1 file changed, 141 deletions(-) delete mode 100644 ExportBot/Program.cs (limited to 'ExportBot/Program.cs') diff --git a/ExportBot/Program.cs b/ExportBot/Program.cs deleted file mode 100644 index 8855be1..0000000 --- a/ExportBot/Program.cs +++ /dev/null @@ -1,141 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Threading; -using CommandLine.Utility; -using OpenSim.Framework; -using OpenSim.Framework.Console; -using OpenSim.Servers; - -namespace libsecondlife.TestClient -{ - public class Program : conscmd_callback - { - private static void Usage() - { - } - - public void RunCmd(string cmd, string[] cmdparams) {} - public void Show(string ShowWhat) {} - - static void Main(string[] args) - { - ConsoleBase m_console = new ConsoleBase("exportbot-console.log", "ExportBot", new Program() , false); - MainConsole.Instance = m_console; - - Arguments arguments = new Arguments(args); - - ClientManager manager; - List accounts = new List(); - LoginDetails account; - string masterName = String.Empty; - LLUUID masterKey = LLUUID.Zero; - string file = String.Empty; - string contact = String.Empty; - - if (arguments["masterkey"] != null) - { - masterKey = LLUUID.Parse(arguments["masterkey"]); - } - if (arguments["master"] != null) - { - masterName = arguments["master"]; - } - - if (arguments["contact"] != null) - { - contact = arguments["contact"]; - if (arguments["file"] != null) - { - file = arguments["file"]; - - // Loading names from a file - try - { - using (StreamReader reader = new StreamReader(file)) - { - string line; - int lineNumber = 0; - - while ((line = reader.ReadLine()) != null) - { - lineNumber++; - string[] tokens = line.Trim().Split(new char[] { ' ', ',' }); - - if (tokens.Length >= 3) - { - account = new LoginDetails(); - account.FirstName = tokens[0]; - account.LastName = tokens[1]; - account.Password = tokens[2]; - - accounts.Add(account); - - // Leaving this out until we have per-account masters (if that - // is desirable). For now the command-line option can - // specify the single master that TestClient supports - - //if (tokens.Length == 5) - //{ - // master = tokens[3] + " " + tokens[4]; - //} - } - else - { - Console.WriteLine("Invalid data on line " + lineNumber + - ", must be in the format of: FirstName LastName Password"); - } - } - } - } - catch (Exception e) - { - Console.WriteLine("Error reading from " + args[1]); - Console.WriteLine(e.ToString()); - return; - } - } - else - { - if (arguments["first"] != null && arguments["last"] != null && arguments["pass"] != null) - { - // Taking a single login off the command-line - account = new LoginDetails(); - account.FirstName = arguments["first"]; - account.LastName = arguments["last"]; - account.Password = arguments["pass"]; - - accounts.Add(account); - } - } - } - else - { - Usage(); - return; - } - - foreach (LoginDetails a in accounts) - { - a.MasterName = masterName; - a.MasterKey = masterKey; - } - - // Login the accounts and run the input loop - manager = new ClientManager(accounts, contact, "Theta/16/229/25"); -/* if ( arguments["start"] != null ) { - manager = new ClientManager(accounts, contact, arguments["start"]); - } else { - manager = new ClientManager(accounts, contact); - }*/ - - Console.WriteLine("Starting the HTTP listener"); - BaseHttpServer httpServer = new BaseHttpServer(12035); - httpServer.AddRestHandler("GET", "/exportaccount/", manager.ExportAvatarRestMethod); - httpServer.Start(); - - manager.Run(); - - } - } -} -- cgit v1.1