예제 #1
0
        static void Main(string[] args)
        {
            CSharkServiceImpl csharkService = new CSharkServiceImpl();
            ServiceHost       host          = new ServiceHost(csharkService);

            host.Open();

            Console.WriteLine("Server CShark is running...");
            Console.WriteLine("Enter a command - enter help for command list");
            while (true)
            {
                Parser.parse(Console.ReadLine(), csharkService);
            }
            //host.Close();
        }
예제 #2
0
        static public void parse(string input, CSharkServiceImpl csharkService)
        {
            input = input.ToLower();
            int    commandEndIndex = input.IndexOf(' ');
            string command         = String.Empty;
            string commandArg      = String.Empty;

            if (commandEndIndex > -1)
            {
                command    = input.Substring(0, commandEndIndex);
                commandArg = input.Substring(commandEndIndex + 1, input.Length - commandEndIndex - 1); //CommandArg est un string, il faut le convertir en int
            }
            else
            {
                command = input;
            }
            switch (command)
            {
            case "exit":
            {
                try
                {
                    Environment.Exit(0);
                    break;
                }
                catch
                {
                    Console.WriteLine("Failed exit. Sorry.");
                    Console.WriteLine();
                    break;
                }
            }

            case "help":
            {
                Console.WriteLine("------------------------Command List------------------------");
                Console.WriteLine("exit : exits the app, closes the server");
                Console.WriteLine("help : displays a list of commands");
                Console.WriteLine("logs X : displays the X last log line");
                Console.WriteLine("userlist : displays a list of users");
                Console.WriteLine();
                break;
            }

            case "userlist":
            {
                try
                {
                    if (csharkService.LoggedUsers.Length > 0)
                    {
                        foreach (var user in csharkService.LoggedUsers)
                        {
                            Console.WriteLine(user.ToString());
                        }
                    }
                    else
                    {
                        Console.WriteLine("No user logged in");
                    }
                    Console.WriteLine();

                    break;
                }
                catch
                {
                    break;
                }
            }

            default:
            {
                Console.WriteLine("Command unknown. Enter help for a list of commands");
                Console.WriteLine();
                break;
            }
            }
        }