mirror of https://github.com/deavminet/dnetd.git
100 lines
2.1 KiB
D
100 lines
2.1 KiB
D
import std.stdio;
|
|
import std.socket : parseAddress;
|
|
import dnetd.dserver : DServer;
|
|
import dnetd.dconfig : DConfig, DLinkConfig;
|
|
import std.json;
|
|
import std.exception;
|
|
import gogga;
|
|
import dnetd.dlink : DLink, DMeyer;
|
|
|
|
void main(string[] args)
|
|
{
|
|
/* Configuration file */
|
|
string configFilename;
|
|
|
|
/* If there are no arguments */
|
|
if(args.length == 1)
|
|
{
|
|
/* Use the default file */
|
|
configFilename = "config.json";
|
|
}
|
|
/* If there is one argument */
|
|
else if(args.length == 2)
|
|
{
|
|
/* use the specified one */
|
|
configFilename = args[1];
|
|
}
|
|
/* Illegal amount of guns in one household (no such thing) */
|
|
else
|
|
{
|
|
gprintln("Invalid number of arguments", DebugType.ERROR);
|
|
return;
|
|
}
|
|
|
|
/* Configuration file contents */
|
|
byte[] data;
|
|
|
|
try
|
|
{
|
|
/* Open the file for reading */
|
|
File config;
|
|
config.open(configFilename, "r");
|
|
|
|
/* Read the configuration file data */
|
|
data.length = config.size();
|
|
data = config.rawRead(data);
|
|
config.close();
|
|
}
|
|
catch(ErrnoException e)
|
|
{
|
|
gprintln("Failure to use configuration file'"~configFilename~"' with error:\n\n"~e.toString(), DebugType.ERROR);
|
|
return;
|
|
}
|
|
|
|
/* The JSON */
|
|
JSONValue json;
|
|
|
|
try
|
|
{
|
|
/* Parse the configuration file */
|
|
json = parseJSON(cast(string)data);
|
|
}
|
|
catch(JSONException e)
|
|
{
|
|
gprintln("Failure to parse configuration file'"~configFilename~"' with error:\n\n"~e.toString(), DebugType.ERROR);
|
|
return;
|
|
}
|
|
|
|
/* Create a new configuration file and check configuration parameters */
|
|
DConfig config = DConfig.getConfig(json);
|
|
|
|
/* If the configuration reading was successful (valid JSON) */
|
|
if(config)
|
|
{
|
|
/* Create a new server */
|
|
DServer dserver = new DServer(config);
|
|
|
|
/* Now configure the the linking */
|
|
DLinkConfig linkConfig = DLinkConfig.getConfig(dserver, json["links"]);
|
|
|
|
/* Get all server links */
|
|
DLink[] serverLinks = linkConfig.getLinks();
|
|
|
|
/* Create a new Meyer */
|
|
|
|
|
|
/* Attach the Meyer to the server */
|
|
|
|
|
|
|
|
/* Start the server (TODO: This should start Meyer) */
|
|
dserver.startServer();
|
|
}
|
|
else
|
|
{
|
|
gprintln("Failure to read a valid dnetd configuration file'"~configFilename~"'", DebugType.ERROR);
|
|
}
|
|
|
|
|
|
|
|
} |