|
|
@ -1,6 +1,5 @@
|
|
|
|
using System;
|
|
|
|
using System;
|
|
|
|
using System.Net;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using ZeroLevel;
|
|
|
|
using ZeroLevel;
|
|
|
|
using ZeroLevel.Network;
|
|
|
|
using ZeroLevel.Network;
|
|
|
|
using ZeroLevel.Services.Applications;
|
|
|
|
using ZeroLevel.Services.Applications;
|
|
|
@ -20,17 +19,31 @@ namespace TestApp
|
|
|
|
Log.Info("Started");
|
|
|
|
Log.Info("Started");
|
|
|
|
ReadServiceInfo();
|
|
|
|
ReadServiceInfo();
|
|
|
|
|
|
|
|
|
|
|
|
AutoregisterInboxes(UseHost(8800));
|
|
|
|
AutoregisterInboxes(UseHost());
|
|
|
|
|
|
|
|
|
|
|
|
/*UseHost(8801).RegisterInbox<ZeroServiceInfo>("metainfo", (c) =>
|
|
|
|
int counter = 0;
|
|
|
|
|
|
|
|
Sheduller.RemindEvery(TimeSpan.FromSeconds(1), () =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Log.Info("Reqeust for metainfo");
|
|
|
|
Log.Info($"RPS: {counter}");
|
|
|
|
return this.ServiceInfo;
|
|
|
|
Interlocked.Exchange(ref counter, 0);
|
|
|
|
});*/
|
|
|
|
});
|
|
|
|
|
|
|
|
for (int i = 0; i < int.MaxValue; i++)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
try
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Exchange.GetConnection("test.app").Request<int>("counter", s =>
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Interlocked.Add(ref counter, s);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
catch
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Thread.Sleep(300);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Exchange.RoutesStorage.Set("mytest", new IPEndPoint(IPAddress.Loopback, 8800));
|
|
|
|
|
|
|
|
//Exchange.RoutesStorage.Set("mymeta", new IPEndPoint(IPAddress.Loopback, 8801));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Sheduller.RemindEvery(TimeSpan.FromSeconds(1), () =>
|
|
|
|
Sheduller.RemindEvery(TimeSpan.FromSeconds(1), () =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var client = Exchange.GetConnection("test.app");
|
|
|
|
var client = Exchange.GetConnection("test.app");
|
|
|
@ -43,7 +56,7 @@ namespace TestApp
|
|
|
|
client.Request<string>("now", s => Log.Info($"Response date: {s}"));
|
|
|
|
client.Request<string>("now", s => Log.Info($"Response date: {s}"));
|
|
|
|
client.Request<string>(BaseSocket.DEFAULT_REQUEST_WITHOUT_ARGS_INBOX, s => Log.Info($"Response ip: {s}"));
|
|
|
|
client.Request<string>(BaseSocket.DEFAULT_REQUEST_WITHOUT_ARGS_INBOX, s => Log.Info($"Response ip: {s}"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
*/
|
|
|
|
/*Sheduller.RemindEvery(TimeSpan.FromSeconds(3), () =>
|
|
|
|
/*Sheduller.RemindEvery(TimeSpan.FromSeconds(3), () =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Exchange.Request<ZeroServiceInfo>("test.app", "metainfo", info =>
|
|
|
|
Exchange.Request<ZeroServiceInfo>("test.app", "metainfo", info =>
|
|
|
@ -58,45 +71,10 @@ namespace TestApp
|
|
|
|
});*/
|
|
|
|
});*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[ExchangeHandler("pum")]
|
|
|
|
[ExchangeReplierWithoutArg("counter")]
|
|
|
|
public void MessageHandler(ISocketClient client)
|
|
|
|
public int GetCounter(ISocketClient client)
|
|
|
|
{
|
|
|
|
|
|
|
|
Log.Info("Called message handler without arguments");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ExchangeMainHandler]
|
|
|
|
|
|
|
|
public void MessageHandler(ISocketClient client, string message)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Log.Info($"Called message handler (DEFAULT INBOX) with argument: {message}");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ExchangeReplier("d2s")]
|
|
|
|
|
|
|
|
public string date2str(ISocketClient client, DateTime date)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Log.Info($"Called reqeust handler with argument: {date}");
|
|
|
|
|
|
|
|
return date.ToLongDateString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ExchangeMainReplier]
|
|
|
|
|
|
|
|
public string ip2str(ISocketClient client, IPEndPoint ip)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Log.Info($"Called reqeust handler (DEFAULT INBOX) with argument: {ip.Address}:{ip.Port}");
|
|
|
|
|
|
|
|
return $"{ip.Address}:{ip.Port}";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ExchangeReplierWithoutArg("now")]
|
|
|
|
|
|
|
|
public string GetTime(ISocketClient client)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Log.Info("Called reqeust handler without arguments");
|
|
|
|
|
|
|
|
return DateTime.Now.ToShortDateString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ExchangeMainReplierWithoutArg]
|
|
|
|
|
|
|
|
public string GetMyIP(ISocketClient client)
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Log.Info("Called reqeust handler (DEFAULT INBOX) without argument");
|
|
|
|
return 1;
|
|
|
|
return NetUtils.GetNonLoopbackAddress().ToString();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void StopAction()
|
|
|
|
protected override void StopAction()
|
|
|
@ -104,4 +82,4 @@ namespace TestApp
|
|
|
|
Log.Info("Stopped");
|
|
|
|
Log.Info("Stopped");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|