Example #1
0
        static void Main(string[] args)
        {
            if (args.Length < 3)
            {
                Console.WriteLine("AkkaAllConcur (hostname port actors_count [hostname_to_connect port_to_connect])");
                return;
            }

            DeploymentMode chosenMode;

            if (args.Length > 4)
            {
                chosenMode = DeploymentMode.Remote;
            }
            else
            {
                chosenMode = DeploymentMode.Local;
            }

            string hostname = args[0];
            string port     = args[1];

            int n;

            try
            {
                n = Convert.ToInt32(args[2]);
            }
            catch (Exception)
            {
                Console.WriteLine("AkkaAllConcur (hostname port actors_count [hostname_to_connect port_to_connect])");
                return;
            }

            AllConcurConfig algConfig = SettingsParser.ParseAlgConfig();
            ActorSystem     system    = null;

            try
            {
                system = CreateActorSystem(hostname, port);
            }
            catch (Exception)
            {
                Console.WriteLine($"[ERR]: Actor system creation has failed. Hostname : {hostname}, Port : {port}.");
                return;
            }
            List <IActorRef> thisHostActors = CreateActors(system, n, chosenMode);

            HostInfo currentHost =
                new HostInfo {
                HostName = hostname, Port = port, ActorsNumber = n
            };

            int stage = 0;

            List <IActorRef> allActors;
            List <HostInfo>  hosts = new List <HostInfo>();


            int interval;

            try
            {
                if (chosenMode == DeploymentMode.Remote)
                {
                    interval = Convert.ToInt32(args[5]);
                }
                else //if (chosenMode == DeploymentMode.Local)
                {
                    interval = Convert.ToInt32(args[3]);
                }
            }
            catch (Exception)
            {
                interval = DEFAULT_INTERVAL;
            }

            if (chosenMode == DeploymentMode.Remote)
            {
                string remoteHost = args[3];
                string remotePort = args[4];


                // Seed node is always srv0
                string remoteActorPath = $"akka.tcp://{SystemName}@{remoteHost}:{remotePort}/user/svr0";
                var    remoteActor     = system.ActorSelection(remoteActorPath);
                try
                {
                    var t = remoteActor.ResolveOne(TimeSpan.FromSeconds(30));
                    t.Wait();
                }
                catch (Exception)
                {
                    Console.WriteLine($"[ERR]: Connection to actor system on {remoteHost}:{remotePort} was not established.");
                    return;
                }

                Props ps   = Props.Create(() => new MemberAckActor(system, thisHostActors, hosts, algConfig, currentHost, interval));
                var   ackA = system.ActorOf(ps, "ack");

                remoteActor.Tell(new Messages.Abroadcast(new Messages.MembershipRequest(currentHost)));
                Console.WriteLine($"Connecting to {remoteHost}:{remotePort}...");
            }
            else //if (chosenMode == DeploymentMode.Local)
            {
                Console.WriteLine($"Starting system on {hostname}:{port}");
                hosts.Add(currentHost);
                allActors = thisHostActors;

                Deployment.InitActors(system, thisHostActors, allActors, hosts, algConfig, currentHost, stage, interval);
            }

            Thread.Sleep(TimeSpan.FromMinutes(10));

            system.Dispose();
        }