-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
145 lines (108 loc) · 2.98 KB
/
app.js
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Dependencies
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
const fs = require('fs');
const child_proc = require('child_process');
// Routes
var index = require('./routes/index');
var stockData = require('./routes/stockData');
// App
var app = express();
// favicon
app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
// Add path
app.use(express.static(path.join(__dirname, 'public')));
// Route Service
app.use('/', index);
app.use('/StockData', stockData);
module.exports = app;
/*==================================
Read stock date
===================================*/
function readStockDate()
{
var data = fs.readFileSync(__dirname + '/stockDate');
var stockDate = data.toString().split('\n');
return stockDate[stockDate.length - 2];
}
/*==================================
Get date string
===================================*/
function getDate(date)
{
var y = date.getFullYear();
var m = date.getMonth() + 1;
var d = date.getDate();
var mon = (m > 9) ? m.toString() : "0" + m.toString();
var day = (d > 9) ? d.toString() : "0" + d.toString();
return y.toString() + mon + day;
}
/*==================================
Start to update
===================================*/
function startUpdate()
{
console.log('[INFO] Start to update...');
var proc = child_proc.exec('./update', function(error, stdout, stderr){
if(error) console.log(error.stack);
console.log(stdout);
console.log(stderr);
});
proc.on('exit', function(code){
stat = 0;
if(code == 0)
console.log("[INFO] Finish to update");
else
console.log("[ERROR] Failed to update");
});
}
/*==================================
Start to create file
===================================*/
function startComputeAcc()
{
console.log('[INFO] Start to compute accuracy...');
var proc = child_proc.exec('./acc ./database/price ./database/forecast ./database/accuracy', function(error, stdout, stderr){
if(error) console.log(error.stack);
console.log(stdout);
console.log(stderr);
});
proc.on('exit', function(code){
stat = 0;
if(code == 0)
console.log("[INFO] Finish to compute accuracy");
else
console.log("[ERROR] Failed to compute accuracy");
});
}
/*==================================
Refresh
===================================*/
function refresh()
{
//Get current date
var date_cur = new Date();
curDate = getDate(date_cur);
stockDate = readStockDate();
if(curDate != stockDate) return;
var h = date_cur.getHours();
if(h > 13 && !isAcc){
console.log("-----------------------------------------------");
console.log(date_cur.toString());
console.log("-----------------------------------------------");
startComputeAcc();
isAcc = true;
}
if(h > 0 && h < 13) isAcc = false;
}
//Get current date
var date = new Date();
var curDate = getDate(date);
var stockDate = readStockDate();
var stat = 0;
var isAcc = true;
console.log('Server start at ' + date.toString());
//Refresh per 30 sec
refresh();
setInterval(refresh, 30000);