Ejemplo n.º 1
0
        public static string CommandAnalyse(string rawUserCommand)
        {
            //Split the command to get the action, URL and output
            //userCommand[0] action
            //userCommand[1] URL
            //userCommand[2] Output
            string[] userCommand = FileCreation.splitString(rawUserCommand, " ");


            if (userCommand[0].ToLower() == "quit")
            {
                return("quit");
            }
            else
            {
                if (userCommand.Length == 3)
                {
                    string result = FileCreation.CreateFile(userCommand[1], userCommand[2]);
                    if (result == "error")
                    {
                        return("error");
                    }
                    else
                    {
                        return("success");
                    }
                }
                else
                {
                    return("error command");
                }
            }
        }
Ejemplo n.º 2
0
        public static string Itass()
        {
            Console.WriteLine("This program is used to convert \"MINHA CDN\" logs to the \"AGORA\" log format.");
            Console.WriteLine("Type the action, URL, and the output to store the file.");
            Console.WriteLine("Example: convert http://logstorage.com/minhaCdn1.txt ./output/minhaCdn1.txt");
            Console.WriteLine("To leave the application, you will need to type \"quit\", and other commands will not work. \n");


            string result;

            do
            {
                //Get the user command
                string rawUserCommand = Console.ReadLine();

                result = FileCreation.CommandAnalyse(rawUserCommand);


                if (result == "error")
                {
                    Console.WriteLine("Something went wrong, please check your URL, output and try again.\n");
                }
                else if (result == "success")
                {
                    Console.WriteLine("Your request finished with success! \n");
                }
                else if (result == "error command")
                {
                    Console.WriteLine("Something went wrong. Please verify if the command is typed in the following way : convert URL output");
                }



                Console.WriteLine("Type a new command to convert or quit to finish the program.");
            } while (result.ToLower() != "quit");

            return("quit");
        }