-
Notifications
You must be signed in to change notification settings - Fork 6
/
GraphOffline.cpp
101 lines (81 loc) · 2.01 KB
/
GraphOffline.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// GraphOffline.cpp : Defines the entry point for the console application.
//
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include "Graph.h"
#include "FileReader.h"
#include "DijkstraShortPath.h"
#include "ConsoleParams.h"
#include "CGIProcessor.h"
#include "Logger.h"
// Hardcode debug flag.
bool bDebug = false;
#define EMSCRIPT_DELEMITER "<s\\emscript_split\\s>"
#ifndef EMSCRIPT
int main(int argc, char *argv[])
{
int res = 0;
for (int i = 1; i < argc; i++)
{
if (strcmp(argv[i], "-debug") == 0)
{
bDebug = true;
}
}
if (bDebug)
{
Logger::SetEnableLog(Logger::LE_INFORMATION);
LOG_INFO("Full log enabled");
}
else
{
Logger::SetEnableLog(Logger::LE_ERROR);
}
char * requestMethod = getenv("REQUEST_METHOD");
std::vector<String> params;
ConsoleParams consoleParams;
if (requestMethod == NULL)
{
for (int i = 1 + (bDebug ? 1 : 0); i < argc; i++)
{
params.push_back(argv[i]);
}
}
if (requestMethod)
{
printf("Content-Type: text/html\n\n");
if (strstr(requestMethod, "POST"))
{
params = CGIProcessor().GetRequestParams();
}
}
{
LOG_INFO("Input parameters");
for (String& str : params)
{
LOG_INFO(str.Locale().Data());
}
}
res = consoleParams.ProcessConsoleParams(params);
printf("%s\n", consoleParams.GetReport().UTF8().Data());
return res;
}
#else
extern "C" {
const char* ProcessAlgorithm(const char* emscriptParams);
}
const char* ProcessAlgorithm(const char* emscriptParams)
{
static std::string res;
if (strcmp(emscriptParams, EMSCRIPT_DELEMITER) == 0)
{
res = "test";
return res.c_str();
}
ConsoleParams consoleParams;
consoleParams.ProcessConsoleParams(CGIProcessor::SplitString(emscriptParams, { EMSCRIPT_DELEMITER }));
res = (const char*)consoleParams.GetReport().UTF8().Data();
return res.c_str();
}
#endif