Example #1
0
        /// <summary>
        /// Prepare the server and clients for the benchmark.
        /// Starts all instances and connects the clients to the server.
        /// </summary>
        /// <param name="networkBenchmark">Library to use for the benchmark</param>
        public static void PrepareBenchmark(INetworkBenchmark networkBenchmark)
        {
            Utilities.WriteVerbose("-> Prepare Benchmark.");
            Config.PrepareForNewBenchmark();
            networkBenchmark.Initialize(Config, BenchmarkStatistics);
            Utilities.WriteVerbose(".");

            if (Config.IsRunServer())
            {
                var serverTask = networkBenchmark.StartServer();
                serverTask.Wait();
            }

            if (Config.IsRunClients())
            {
                var clientTask = networkBenchmark.StartClients();
                clientTask.Wait();
            }

            Utilities.WriteVerbose(".");

            if (Config.IsRunClients())
            {
                networkBenchmark.ConnectClients().Wait();
            }

            Utilities.WriteVerboseLine(" Done");
        }
        private static void RunCustomBenchmark()
        {
            var networkBenchmark = INetworkBenchmark.CreateNetworkBenchmark(BenchmarkCoordinator.Config.Library);

            try
            {
                BenchmarkCoordinator.PrepareBenchmark(networkBenchmark);
                BenchmarkCoordinator.RunBenchmark(networkBenchmark);
            }
            catch (Exception e)
            {
                Console.WriteLine($"Error when running Library {BenchmarkCoordinator.Config.Library}" +
                                  $"\n{e.Message}\n{e.StackTrace}");
            }
            finally
            {
                try
                {
                    BenchmarkCoordinator.CleanupBenchmark(networkBenchmark);
                }
                catch (Exception e)
                {
                    Console.WriteLine($"Error when cleaning up Library {BenchmarkCoordinator.Config.Library}" +
                                      $"\n{e.Message}\n{e.StackTrace}");
                }

                Console.Write(BenchmarkCoordinator.PrintStatistics());
            }
        }
Example #3
0
        /// <summary>
        /// Enables to enter defined commands
        /// Runs until the user stops the process
        /// </summary>
        /// <param name="networkBenchmark"></param>
        private static void RunManualMode(INetworkBenchmark networkBenchmark)
        {
            Utilities.WriteVerbose($"-> Run Manual Mode {Config.Library}\n");
            StartBenchmark(networkBenchmark);

            bool running = true;

            while (running)
            {
                var input = Console.ReadLine();
                if (input == null)
                {
                    PrintInvalidManualInput();
                    continue;
                }
                var parts = input.ToLower().Split(' ');
                if (parts.Length == 0 || parts[0].Length == 0)
                {
                    PrintInvalidManualInput();
                    continue;
                }

                running = ProcessManualInput(networkBenchmark, parts);
            }

            StopBenchmark(networkBenchmark);
            Utilities.WriteVerboseLine(" Done");
        }
Example #4
0
        public static void CleanupBenchmark(INetworkBenchmark networkBenchmark)
        {
            Utilities.WriteVerbose("-> Clean up.");

            if (Config.IsRunClients())
            {
                networkBenchmark.DisconnectClients().Wait();
                networkBenchmark.StopClients().Wait();
                networkBenchmark.DisposeClients().Wait();
            }

            Utilities.WriteVerbose(".");


            if (Config.IsRunServer())
            {
                networkBenchmark.StopServer().Wait();
            }

            Utilities.WriteVerbose(".");
            if (Config.IsRunServer())
            {
                networkBenchmark.DisposeServer().Wait();
            }

            networkBenchmark.Deinitialize();
            Utilities.WriteVerboseLine(" Done");
            Utilities.WriteVerboseLine("");
        }
Example #5
0
        public void PrepareBenchmark()
        {
            var config = Benchmark.Config;

            config.Library = Library;

            libraryImpl = INetworkBenchmark.CreateNetworkBenchmark(Library);
            Benchmark.PrepareBenchmark(libraryImpl);
        }
Example #6
0
        /// <summary>
        /// Run the benchmark for a specific duration
        /// The benchmark needs to be prepared once before running it.
        /// </summary>
        /// <param name="networkBenchmark">Library to run</param>
        private static void RunTimedBenchmark(INetworkBenchmark networkBenchmark)
        {
            Utilities.WriteVerbose($"-> Run Benchmark {Config.Library}...");
            StartBenchmark(networkBenchmark);

            Thread.Sleep(Config.Duration * 1000);

            StopBenchmark(networkBenchmark);
            Utilities.WriteVerboseLine(" Done");
        }
Example #7
0
        /// <summary>
        /// Runs until the user stops the process
        /// </summary>
        /// <param name="networkBenchmark"></param>
        private static void RunIndefinitely(INetworkBenchmark networkBenchmark)
        {
            Utilities.WriteVerbose($"-> Run indefinitely {Config.Library}... (press enter to stop)");
            StartBenchmark(networkBenchmark);

            Console.ReadLine();

            StopBenchmark(networkBenchmark);
            Utilities.WriteVerboseLine(" Done");
        }
Example #8
0
        public void PrepareBenchmark()
        {
            var config = BenchmarkCoordinator.Config;

            config.Benchmark = Mode;
            config.Clients   = Clients;
            config.Library   = LibraryTarget;
            Console.Write(config.ToFormattedString());

            libraryImpl = INetworkBenchmark.CreateNetworkBenchmark(LibraryTarget);
            BenchmarkCoordinator.PrepareBenchmark(libraryImpl);
        }
Example #9
0
        private static bool ProcessManualInput(INetworkBenchmark networkBenchmark, string[] parts)
        {
            var target = parts[0][0];

            if (target == 'q')
            {
                return(false);
            }

            if (parts.Length < 2 || !int.TryParse(parts[1], out int value))
            {
                PrintInvalidManualInput();
                return(true);
            }

            var transmissionMode = Config.Transmission;

            if (parts.Length >= 3)
            {
                var transmission = parts[2][0];
                if (transmission == 'r')
                {
                    transmissionMode = TransmissionType.Reliable;
                }
                else if (transmission == 'u')
                {
                    transmissionMode = TransmissionType.Unreliable;
                }
            }

            switch (target)
            {
            case 'c':
                var clients = networkBenchmark.Clients;
                for (int i = 0; i < clients.Count; i++)
                {
                    clients[i].SendMessages(value, transmissionMode);
                }

                break;

            case 's':
                networkBenchmark.Server.SendMessages(value, transmissionMode);
                break;

            default:
                PrintInvalidManualInput();
                break;
            }

            return(true);
        }
Example #10
0
        public static void RunBenchmark(INetworkBenchmark networkBenchmark)
        {
            if (Config.Test == TestType.Manual)
            {
                RunManualMode(networkBenchmark);
                return;
            }

            if (Config.Duration < 0)
            {
                RunIndefinitely(networkBenchmark);
                return;
            }

            RunTimedBenchmark(networkBenchmark);
        }
Example #11
0
 public static void StopBenchmark(INetworkBenchmark networkBenchmark)
 {
     networkBenchmark.StopBenchmark();
     BenchmarkStatistics.StopBenchmark();
 }
Example #12
0
 public static void StartBenchmark(INetworkBenchmark networkBenchmark)
 {
     BenchmarkStatistics.Reset();
     BenchmarkStatistics.StartBenchmark();
     networkBenchmark.StartBenchmark();
 }
 public static void StopBenchmark(INetworkBenchmark networkBenchmark)
 {
     networkBenchmark.StopBenchmark();
     BenchmarkData.StopBenchmark();
 }