Subversion Repositories HomeAutomation

Rev

Rev 1007 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1007 Rev 1008
1
/***************************************************************************
1
/***************************************************************************
2
 *   Copyright (C) December 10, 2008 by Mattias Runge                             *
2
 *   Copyright (C) December 10, 2008 by Mattias Runge                             *
3
 *   mattias@runge.se                                                      *
3
 *   mattias@runge.se                                                      *
4
 *   virtualmachine.cpp                                            *
4
 *   virtualmachine.cpp                                            *
5
 *                                                                         *
5
 *                                                                         *
6
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   This program is free software; you can redistribute it and/or modify  *
7
 *   it under the terms of the GNU General Public License as published by  *
7
 *   it under the terms of the GNU General Public License as published by  *
8
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 *   the Free Software Foundation; either version 2 of the License, or     *
9
 *   (at your option) any later version.                                   *
9
 *   (at your option) any later version.                                   *
10
 *                                                                         *
10
 *                                                                         *
11
 *   This program is distributed in the hope that it will be useful,       *
11
 *   This program is distributed in the hope that it will be useful,       *
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14
 *   GNU General Public License for more details.                          *
14
 *   GNU General Public License for more details.                          *
15
 *                                                                         *
15
 *                                                                         *
16
 *   You should have received a copy of the GNU General Public License     *
16
 *   You should have received a copy of the GNU General Public License     *
17
 *   along with this program; if not, write to the                         *
17
 *   along with this program; if not, write to the                         *
18
 *   Free Software Foundation, Inc.,                                       *
18
 *   Free Software Foundation, Inc.,                                       *
19
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
20
 ***************************************************************************/
20
 ***************************************************************************/
21
 
21
 
22
#include "virtualmachine.h"
22
#include "virtualmachine.h"
23
 
23
 
24
VirtualMachine* VirtualMachine::myInstance = NULL;
24
VirtualMachine* VirtualMachine::myInstance = NULL;
25
 
25
 
26
VirtualMachine& VirtualMachine::getInstance()
26
VirtualMachine& VirtualMachine::getInstance()
27
{
27
{
28
    if (myInstance == NULL)
28
    if (myInstance == NULL)
29
    {
29
    {
30
        myInstance = new VirtualMachine();
30
        myInstance = new VirtualMachine();
31
    }
31
    }
32
 
32
 
33
    return *myInstance;
33
    return *myInstance;
34
}
34
}
35
 
35
 
36
void VirtualMachine::deleteInstance()
36
void VirtualMachine::deleteInstance()
37
{
37
{
38
    if (myInstance != NULL)
38
    if (myInstance != NULL)
39
    {
39
    {
40
        delete myInstance;
40
        delete myInstance;
41
        myInstance = NULL;
41
        myInstance = NULL;
42
    }
42
    }
43
}
43
}
44
 
44
 
45
VirtualMachine::VirtualMachine()
45
VirtualMachine::VirtualMachine()
46
{
46
{
47
}
47
}
48
 
48
 
49
VirtualMachine::~VirtualMachine()
49
VirtualMachine::~VirtualMachine()
50
{
50
{
51
    stop();
51
    stop();
52
 
52
 
53
    myCommandThread.stop();
53
    myCommandThread.stop();
54
 
54
 
55
    ///FIXME: Verify that this works and does not cause segfaults
55
    ///FIXME: Verify that this works and does not cause segfaults
56
    for (map<int, SocketThread*>::iterator iter = mySocketThreads.begin(); iter != mySocketThreads.end(); iter++)
56
    for (map<int, SocketThread*>::iterator iter = mySocketThreads.begin(); iter != mySocketThreads.end(); iter++)
57
    {
57
    {
58
        iter->second->stop();
58
        iter->second->stop();
59
        delete iter->second;
59
        delete iter->second;
60
        //mySocketThreads.erase(iter);
60
        //mySocketThreads.erase(iter);
61
    }
61
    }
62
 
62
 
63
    mySocketThreads.clear();
63
    mySocketThreads.clear();
64
 
64
 
65
    for (map<int, IntervalThread*>::iterator iter = myIntervalThreads.begin(); iter != myIntervalThreads.end(); iter++)
65
    for (map<int, IntervalThread*>::iterator iter = myIntervalThreads.begin(); iter != myIntervalThreads.end(); iter++)
66
    {
66
    {
67
        iter->second->stop();
67
        iter->second->stop();
68
        delete iter->second;
68
        delete iter->second;
69
        //myIntervalThreads.erase(iter);
69
        //myIntervalThreads.erase(iter);
70
    }
70
    }
71
 
71
 
72
    myIntervalThreads.clear();
72
    myIntervalThreads.clear();
73
}
73
}
74
 
74
 
75
void VirtualMachine::run()
75
void VirtualMachine::run()
76
{
76
{
77
    myGlobal = ObjectTemplate::New();
77
    myGlobal = ObjectTemplate::New();
78
    myGlobal->Set(String::New("_quit"), FunctionTemplate::New(VirtualMachine::_quit));
78
    myGlobal->Set(String::New("_quit"), FunctionTemplate::New(VirtualMachine::_quit));
79
    myGlobal->Set(String::New("_print"), FunctionTemplate::New(VirtualMachine::_print));
79
    myGlobal->Set(String::New("_print"), FunctionTemplate::New(VirtualMachine::_print));
80
    myGlobal->Set(String::New("log"), FunctionTemplate::New(VirtualMachine::_log));
80
    myGlobal->Set(String::New("log"), FunctionTemplate::New(VirtualMachine::_log));
81
    myGlobal->Set(String::New("sendCanMessage"), FunctionTemplate::New(VirtualMachine::_sendCanMessage));
81
    myGlobal->Set(String::New("sendCanMessage"), FunctionTemplate::New(VirtualMachine::_sendCanMessage));
82
    myGlobal->Set(String::New("sendCanNMTMessage"), FunctionTemplate::New(VirtualMachine::_sendCanNMTMessage));
82
    myGlobal->Set(String::New("sendCanNMTMessage"), FunctionTemplate::New(VirtualMachine::_sendCanNMTMessage));
83
    myGlobal->Set(String::New("loadScript"), FunctionTemplate::New(VirtualMachine::_loadScript));
83
    myGlobal->Set(String::New("loadScript"), FunctionTemplate::New(VirtualMachine::_loadScript));
84
    myGlobal->Set(String::New("startIntervalThread"), FunctionTemplate::New(VirtualMachine::_startIntervalThread));
84
    myGlobal->Set(String::New("startIntervalThread"), FunctionTemplate::New(VirtualMachine::_startIntervalThread));
85
    myGlobal->Set(String::New("stopIntervalThread"), FunctionTemplate::New(VirtualMachine::_stopIntervalThread));
85
    myGlobal->Set(String::New("stopIntervalThread"), FunctionTemplate::New(VirtualMachine::_stopIntervalThread));
86
    myGlobal->Set(String::New("startSocketThread"), FunctionTemplate::New(VirtualMachine::_startSocketThread));
86
    myGlobal->Set(String::New("startSocketThread"), FunctionTemplate::New(VirtualMachine::_startSocketThread));
87
    myGlobal->Set(String::New("stopSocketThread"), FunctionTemplate::New(VirtualMachine::_stopSocketThread));
87
    myGlobal->Set(String::New("stopSocketThread"), FunctionTemplate::New(VirtualMachine::_stopSocketThread));
88
    myGlobal->Set(String::New("sendToSocketThread"), FunctionTemplate::New(VirtualMachine::_sendToSocketThread));
88
    myGlobal->Set(String::New("sendToSocketThread"), FunctionTemplate::New(VirtualMachine::_sendToSocketThread));
89
    myGlobal->Set(String::New("uint2hex"), FunctionTemplate::New(VirtualMachine::_uint2hex));
89
    myGlobal->Set(String::New("uint2hex"), FunctionTemplate::New(VirtualMachine::_uint2hex));
90
    myGlobal->Set(String::New("loadDataStore"), FunctionTemplate::New(VirtualMachine::_loadDataStore));
90
    myGlobal->Set(String::New("loadDataStore"), FunctionTemplate::New(VirtualMachine::_loadDataStore));
-
 
91
    myGlobal->Set(String::New("getFileContents"), FunctionTemplate::New(VirtualMachine::_getFileContents));
91
    myContext = Context::New(NULL, myGlobal);
92
    myContext = Context::New(NULL, myGlobal);
92
 
93
 
93
 
94
 
94
    if (loadScript("System/Base.js"))
95
    if (loadScript("System/Base.js"))
95
    {
96
    {
96
        loadScript("System/Startup.js");
97
        loadScript("System/Startup.js");
97
 
98
 
98
        loadScript("Autostart.js");
99
        loadScript("Autostart.js");
99
 
100
 
100
        Context::Scope contextScope(myContext);
101
        Context::Scope contextScope(myContext);
101
 
102
 
102
        myFunctionStartup = Handle<Function>::Cast(myContext->Global()->Get(String::New("startup")));
103
        myFunctionStartup = Handle<Function>::Cast(myContext->Global()->Get(String::New("startup")));
103
    }
104
    }
104
    else
105
    else
105
    {
106
    {
106
        ///FIXME: We should probably exit the application here
107
        ///FIXME: We should probably exit the application here
107
        return;
108
        return;
108
    }
109
    }
109
 
110
 
110
    const int argc = 0;
111
    const int argc = 0;
111
    Handle<Value> argv[argc] = { };
112
    Handle<Value> argv[argc] = { };
112
    Handle<Value> result = myFunctionStartup->Call(myFunctionStartup, argc, argv);
113
    Handle<Value> result = myFunctionStartup->Call(myFunctionStartup, argc, argv);
113
 
114
 
114
 
115
 
115
    string commandPort = Settings::get("CommandPort");
116
    string commandPort = Settings::get("CommandPort");
116
    if (commandPort != "")
117
    if (commandPort != "")
117
    {
118
    {
118
        myCommandThread.setSettings(stoi(commandPort), "Command console");
119
        myCommandThread.setSettings(stoi(commandPort), "Command console");
119
        myCommandThread.start();
120
        myCommandThread.start();
120
    }
121
    }
121
    else
122
    else
122
    {
123
    {
123
        SyslogStream &slog = SyslogStream::getInstance();
124
        SyslogStream &slog = SyslogStream::getInstance();
124
        slog << "CommandPort is not defined, can not start Command console socket\n";
125
        slog << "CommandPort is not defined, can not start Command console socket\n";
125
    }
126
    }
126
 
127
 
127
 
128
 
128
    mySemaphore.lock();
129
    mySemaphore.lock();
129
 
130
 
130
    while (true)
131
    while (true)
131
    {
132
    {
132
        while (myExpressions.size() > 0)
133
        while (myExpressions.size() > 0)
133
        {
134
        {
134
            runExpression(myExpressions.pop());
135
            runExpression(myExpressions.pop());
135
        }
136
        }
136
 
137
 
137
        mySemaphore.wait();
138
        mySemaphore.wait();
138
    }
139
    }
139
 
140
 
140
    mySemaphore.unlock();
141
    mySemaphore.unlock();
141
}
142
}
142
 
143
 
143
void VirtualMachine::queueExpression(Expression expression)
144
void VirtualMachine::queueExpression(Expression expression)
144
{
145
{
145
    myExpressions.push(expression);
146
    myExpressions.push(expression);
146
    mySemaphore.broadcast();
147
    mySemaphore.broadcast();
147
}
148
}
148
 
149
 
149
string VirtualMachine::formatException(TryCatch* tryCatch)
150
string VirtualMachine::formatException(TryCatch* tryCatch)
150
{
151
{
151
    string result;
152
    string result;
152
 
153
 
153
    HandleScope handleScope;
154
    HandleScope handleScope;
154
    String::Utf8Value exception(tryCatch->Exception());
155
    String::Utf8Value exception(tryCatch->Exception());
155
    Handle<v8::Message> message = tryCatch->Message();
156
    Handle<v8::Message> message = tryCatch->Message();
156
 
157
 
157
    string strException = *exception;
158
    string strException = *exception;
158
 
159
 
159
    if (message.IsEmpty())
160
    if (message.IsEmpty())
160
    {
161
    {
161
        result += strException + "\n";
162
        result += strException + "\n";
162
    }
163
    }
163
    else
164
    else
164
    {
165
    {
165
        String::Utf8Value filename(message->GetScriptResourceName());
166
        String::Utf8Value filename(message->GetScriptResourceName());
166
        string strFilename = *filename;
167
        string strFilename = *filename;
167
 
168
 
168
        result += strFilename + ":" + itos(message->GetLineNumber()) + ": " + strException + "\n";
169
        result += strFilename + ":" + itos(message->GetLineNumber()) + ": " + strException + "\n";
169
 
170
 
170
        String::Utf8Value sourceline(message->GetSourceLine());
171
        String::Utf8Value sourceline(message->GetSourceLine());
171
        string strSourceline = *sourceline;
172
        string strSourceline = *sourceline;
172
 
173
 
173
        result += strSourceline + "\n";
174
        result += strSourceline + "\n";
174
 
175
 
175
        string underline = rpad("", message->GetStartColumn(), ' ');
176
        string underline = rpad("", message->GetStartColumn(), ' ');
176
        underline = rpad(underline, message->GetEndColumn(), '^');
177
        underline = rpad(underline, message->GetEndColumn(), '^');
177
 
178
 
178
        result += underline + "\n";
179
        result += underline + "\n";
179
    }
180
    }
180
 
181
 
181
    return result;
182
    return result;
182
}
183
}
183
 
184
 
184
bool VirtualMachine::loadDataStore(string storeName)
185
bool VirtualMachine::loadDataStore(string storeName)
185
{
186
{
186
    SyslogStream &slog = SyslogStream::getInstance();
187
    SyslogStream &slog = SyslogStream::getInstance();
187
 
188
 
188
    string basePath = Settings::get("BasePath") + "Services/DataStores/";
189
    string basePath = Settings::get("BasePath") + "Services/DataStores/";
189
    string scriptFileName = basePath + storeName + ".js";
190
    string scriptFileName = basePath + storeName + ".js";
190
 
191
 
191
    if (!file_exists(scriptFileName))
192
    if (!file_exists(scriptFileName))
192
    {
193
    {
193
        slog << "Failed to load datastore " + scriptFileName + ", file does not exist.\n";
194
        slog << "Failed to load datastore " + scriptFileName + ", file does not exist.\n";
194
        return false;
195
        return false;
195
    }
196
    }
196
 
197
 
197
    string scriptSource = file_get_contents(scriptFileName);
198
    string scriptSource = file_get_contents(scriptFileName);
198
 
199
 
199
    scriptSource = "DataStore.addStore('" + storeName + "', " + str_replace("\n", "", scriptSource) + ");";
200
    scriptSource = "DataStore.addStore('" + storeName + "', " + str_replace("\n", "", scriptSource) + ");";
200
 
201
 
201
    Handle<String> source =  String::New(scriptSource.c_str(), scriptSource.length());
202
    Handle<String> source =  String::New(scriptSource.c_str(), scriptSource.length());
202
    Handle<String> name = String::New(scriptFileName.c_str(), scriptFileName.length());
203
    Handle<String> name = String::New(scriptFileName.c_str(), scriptFileName.length());
203
 
204
 
204
    Context::Scope contextScope(myContext);
205
    Context::Scope contextScope(myContext);
205
 
206
 
206
    TryCatch tryCatch;
207
    TryCatch tryCatch;
207
 
208
 
208
    Handle<Script> script = Script::Compile(source, name);
209
    Handle<Script> script = Script::Compile(source, name);
209
 
210
 
210
    if (script.IsEmpty())
211
    if (script.IsEmpty())
211
    {
212
    {
212
        slog << formatException(&tryCatch);
213
        slog << formatException(&tryCatch);
213
        return false;
214
        return false;
214
    }
215
    }
215
    else
216
    else
216
    {
217
    {
217
        Handle<Value> result = script->Run();
218
        Handle<Value> result = script->Run();
218
 
219
 
219
        if (result.IsEmpty())
220
        if (result.IsEmpty())
220
        {
221
        {
221
            slog << formatException(&tryCatch);
222
            slog << formatException(&tryCatch);
222
            return false;
223
            return false;
223
        }
224
        }
224
 
225
 
225
        slog << "Loaded datastore " + storeName + "\n";
226
        slog << "Loaded datastore " + storeName + "\n";
226
    }
227
    }
227
 
228
 
228
    return true;
229
    return true;
229
}
230
}
230
 
231
 
231
bool VirtualMachine::loadScript(string scriptName)
232
bool VirtualMachine::loadScript(string scriptName)
232
{
233
{
233
    SyslogStream &slog = SyslogStream::getInstance();
234
    SyslogStream &slog = SyslogStream::getInstance();
234
 
235
 
235
    string basePath = Settings::get("BasePath") + "Services/";
236
    string basePath = Settings::get("BasePath") + "Services/";
236
    string scriptFileName = basePath + scriptName;
237
    string scriptFileName = basePath + scriptName;
237
 
238
 
238
    if (!file_exists(scriptFileName))
239
    if (!file_exists(scriptFileName))
239
    {
240
    {
240
        slog << "Failed to load " + scriptFileName + ", file does not exist.\n";
241
        slog << "Failed to load " + scriptFileName + ", file does not exist.\n";
241
        return false;
242
        return false;
242
    }
243
    }
243
 
244
 
244
    string scriptSource = file_get_contents(scriptFileName);
245
    string scriptSource = file_get_contents(scriptFileName);
245
 
246
 
246
    Handle<String> source =  String::New(scriptSource.c_str(), scriptSource.length());
247
    Handle<String> source =  String::New(scriptSource.c_str(), scriptSource.length());
247
    Handle<String> name = String::New(scriptName.c_str(), scriptName.length());
248
    Handle<String> name = String::New(scriptName.c_str(), scriptName.length());
248
 
249
 
249
    Context::Scope contextScope(myContext);
250
    Context::Scope contextScope(myContext);
250
 
251
 
251
    TryCatch tryCatch;
252
    TryCatch tryCatch;
252
 
253
 
253
    Handle<Script> script = Script::Compile(source, name);
254
    Handle<Script> script = Script::Compile(source, name);
254
 
255
 
255
    if (script.IsEmpty())
256
    if (script.IsEmpty())
256
    {
257
    {
257
        slog << formatException(&tryCatch);
258
        slog << formatException(&tryCatch);
258
        return false;
259
        return false;
259
    }
260
    }
260
    else
261
    else
261
    {
262
    {
262
        Handle<Value> result = script->Run();
263
        Handle<Value> result = script->Run();
263
 
264
 
264
        if (result.IsEmpty())
265
        if (result.IsEmpty())
265
        {
266
        {
266
            slog << formatException(&tryCatch);
267
            slog << formatException(&tryCatch);
267
            return false;
268
            return false;
268
        }
269
        }
269
 
270
 
270
        slog << "Loaded " + scriptName + "\n";
271
        slog << "Loaded " + scriptName + "\n";
271
    }
272
    }
272
 
273
 
273
    return true;
274
    return true;
274
}
275
}
275
 
276
 
276
unsigned int VirtualMachine::startIntervalThread(unsigned int timeout)
277
unsigned int VirtualMachine::startIntervalThread(unsigned int timeout)
277
{
278
{
278
    IntervalThread *intervalThread = new IntervalThread(timeout);
279
    IntervalThread *intervalThread = new IntervalThread(timeout);
279
 
280
 
280
    myIntervalThreads[intervalThread->getId()] = intervalThread;
281
    myIntervalThreads[intervalThread->getId()] = intervalThread;
281
    myIntervalThreads[intervalThread->getId()]->start();
282
    myIntervalThreads[intervalThread->getId()]->start();
282
 
283
 
283
    return intervalThread->getId();
284
    return intervalThread->getId();
284
}
285
}
285
 
286
 
286
bool VirtualMachine::stopIntervalThread(unsigned int id)
287
bool VirtualMachine::stopIntervalThread(unsigned int id)
287
{
288
{
288
    if (myIntervalThreads.find(id) != myIntervalThreads.end())
289
    if (myIntervalThreads.find(id) != myIntervalThreads.end())
289
    {
290
    {
290
        delete myIntervalThreads[id];
291
        delete myIntervalThreads[id];
291
        myIntervalThreads.erase(id);
292
        myIntervalThreads.erase(id);
292
        return true;
293
        return true;
293
    }
294
    }
294
 
295
 
295
    return false;
296
    return false;
296
}
297
}
297
 
298
 
298
unsigned int VirtualMachine::startSocketThread(string address, int port, unsigned int reconnectTimeout)
299
unsigned int VirtualMachine::startSocketThread(string address, int port, unsigned int reconnectTimeout)
299
{
300
{
300
    SocketThread *socketThread = new SocketThread(address, port, reconnectTimeout);
301
    SocketThread *socketThread = new SocketThread(address, port, reconnectTimeout);
301
    mySocketThreads[socketThread->getId()] = socketThread;
302
    mySocketThreads[socketThread->getId()] = socketThread;
302
    mySocketThreads[socketThread->getId()]->start();
303
    mySocketThreads[socketThread->getId()]->start();
303
 
304
 
304
    return socketThread->getId();
305
    return socketThread->getId();
305
}
306
}
306
 
307
 
307
bool VirtualMachine::stopSocketThread(unsigned int id)
308
bool VirtualMachine::stopSocketThread(unsigned int id)
308
{
309
{
309
    if (mySocketThreads.find(id) != mySocketThreads.end())
310
    if (mySocketThreads.find(id) != mySocketThreads.end())
310
    {
311
    {
311
        delete mySocketThreads[id];
312
        delete mySocketThreads[id];
312
        mySocketThreads.erase(id);
313
        mySocketThreads.erase(id);
313
        return true;
314
        return true;
314
    }
315
    }
315
 
316
 
316
    return false;
317
    return false;
317
}
318
}
318
 
319
 
319
void VirtualMachine::sendToSocketThread(unsigned int id, string data)
320
void VirtualMachine::sendToSocketThread(unsigned int id, string data)
320
{
321
{
321
    if (mySocketThreads.find(id) != mySocketThreads.end())
322
    if (mySocketThreads.find(id) != mySocketThreads.end())
322
    {
323
    {
323
        mySocketThreads[id]->send(data);
324
        mySocketThreads[id]->send(data);
324
    }
325
    }
325
}
326
}
326
 
327
 
327
void VirtualMachine::disconnectCommandClient(unsigned int id)
328
void VirtualMachine::disconnectCommandClient(unsigned int id)
328
{
329
{
329
    myCommandThread.disconnectClient(id);
330
    myCommandThread.disconnectClient(id);
330
}
331
}
331
 
332
 
332
void VirtualMachine::sendToCommandClient(unsigned int id, string data)
333
void VirtualMachine::sendToCommandClient(unsigned int id, string data)
333
{
334
{
334
    myCommandThread.sendTo(id, data);
335
    myCommandThread.sendTo(id, data);
335
}
336
}
336
 
337
 
337
void VirtualMachine::print(unsigned int id, string data)
338
void VirtualMachine::print(unsigned int id, string data)
338
{
339
{
339
    if (id == 0)
340
    if (id == 0)
340
    {
341
    {
341
        SyslogStream &slog = SyslogStream::getInstance();
342
        SyslogStream &slog = SyslogStream::getInstance();
342
        slog << data;
343
        slog << data;
343
    }
344
    }
344
    else
345
    else
345
    {
346
    {
346
        VirtualMachine &vm = VirtualMachine::getInstance();
347
        VirtualMachine &vm = VirtualMachine::getInstance();
347
        vm.sendToCommandClient(id, data);
348
        vm.sendToCommandClient(id, data);
348
    }
349
    }
349
}
350
}
350
 
351
 
351
bool VirtualMachine::runExpression(Expression expression)
352
bool VirtualMachine::runExpression(Expression expression)
352
{
353
{
353
    string scriptName = "runExpression";
354
    string scriptName = "runExpression";
354
 
355
 
355
    string scriptData = expression.getScript();
356
    string scriptData = expression.getScript();
356
 
357
 
357
    scriptData = "setClientId(" + itos(expression.getTargetId()) + ");\n" + scriptData;
358
    scriptData = "setClientId(" + itos(expression.getTargetId()) + ");\n" + scriptData + "\n";
358
 
359
 
359
    Handle<String> source =  String::New(scriptData.c_str(), scriptData.length());
360
    Handle<String> source =  String::New(scriptData.c_str(), scriptData.length());
360
    Handle<String> name = String::New(scriptName.c_str(), scriptName.length());
361
    Handle<String> name = String::New(scriptName.c_str(), scriptName.length());
361
 
362
 
362
    Context::Scope contextScope(myContext);
363
    Context::Scope contextScope(myContext);
363
 
364
 
364
    TryCatch tryCatch;
365
    TryCatch tryCatch;
365
 
366
 
366
    Handle<Script> script = Script::Compile(source, name);
367
    Handle<Script> script = Script::Compile(source, name);
367
 
368
 
368
    if (script.IsEmpty())
369
    if (script.IsEmpty())
369
    {
370
    {
370
        print(expression.getTargetId(), formatException(&tryCatch));
371
        print(expression.getTargetId(), formatException(&tryCatch));
371
        return false;
372
        return false;
372
    }
373
    }
373
    else
374
    else
374
    {
375
    {
375
        Handle<Value> result = script->Run();
376
        Handle<Value> result = script->Run();
376
 
377
 
377
        if (result.IsEmpty())
378
        if (result.IsEmpty())
378
        {
379
        {
379
            print(expression.getTargetId(), formatException(&tryCatch));
380
            print(expression.getTargetId(), formatException(&tryCatch));
380
            return false;
381
            return false;
381
        }
382
        }
382
        else if (expression.getTargetId() != 0)
383
        else if (expression.getTargetId() != 0)
383
        {
384
        {
384
             String::AsciiValue ascii(result);
385
             String::AsciiValue ascii(result);
385
             string resultString = *ascii;
386
             string resultString = *ascii;
386
 
387
 
387
             if (resultString != "undefined")
388
             if (resultString != "undefined")
388
             {
389
             {
389
                print(expression.getTargetId(), resultString + "\n");
390
                print(expression.getTargetId(), resultString + "\n");
390
             }
391
             }
391
        }
392
        }
392
    }
393
    }
393
 
394
 
394
    return true;
395
    return true;
395
}
396
}
396
 
397
 
397
 
398
 
398
Handle<Value> VirtualMachine::_quit(const Arguments& args)
399
Handle<Value> VirtualMachine::_quit(const Arguments& args)
399
{
400
{
400
    VirtualMachine &vm = VirtualMachine::getInstance();
401
    VirtualMachine &vm = VirtualMachine::getInstance();
401
 
402
 
402
    vm.disconnectCommandClient(args[0]->Uint32Value());
403
    vm.disconnectCommandClient(args[0]->Uint32Value());
403
 
404
 
404
    return Undefined();
405
    return Undefined();
405
}
406
}
406
 
407
 
407
Handle<Value> VirtualMachine::_log(const Arguments& args)
408
Handle<Value> VirtualMachine::_log(const Arguments& args)
408
{
409
{
409
    SyslogStream &slog = SyslogStream::getInstance();
410
    SyslogStream &slog = SyslogStream::getInstance();
410
 
411
 
411
    String::AsciiValue str(args[0]);
412
    String::AsciiValue str(args[0]);
412
 
413
 
413
    slog << *str;
414
    slog << *str;
414
 
415
 
415
    return Undefined();
416
    return Undefined();
416
}
417
}
417
 
418
 
418
Handle<Value> VirtualMachine::_print(const Arguments& args)
419
Handle<Value> VirtualMachine::_print(const Arguments& args)
419
{
420
{
420
    VirtualMachine &vm = VirtualMachine::getInstance();
421
    VirtualMachine &vm = VirtualMachine::getInstance();
421
 
422
 
422
    String::AsciiValue str(args[1]);
423
    String::AsciiValue str(args[1]);
423
 
424
 
424
    vm.print(args[0]->Uint32Value(), *str);
425
    vm.print(args[0]->Uint32Value(), *str);
425
 
426
 
426
    return Undefined();
427
    return Undefined();
427
}
428
}
428
 
429
 
429
Handle<Value> VirtualMachine::_sendCanMessage(const Arguments& args)
430
Handle<Value> VirtualMachine::_sendCanMessage(const Arguments& args)
430
{
431
{
431
    CanNetManager &canMan = CanNetManager::getInstance();
432
    CanNetManager &canMan = CanNetManager::getInstance();
432
 
433
 
433
    CanMessage canMessage;
434
    CanMessage canMessage;
434
 
435
 
435
    String::AsciiValue className(args[0]);
436
    String::AsciiValue className(args[0]);
436
    canMessage.setClassName(*className);
437
    canMessage.setClassName(*className);
437
    String::AsciiValue directionFlag(args[1]);
438
    String::AsciiValue directionFlag(args[1]);
438
    canMessage.setDirectionFlag(*directionFlag);
439
    canMessage.setDirectionFlag(*directionFlag);
439
    String::AsciiValue moduleName(args[2]);
440
    String::AsciiValue moduleName(args[2]);
440
    canMessage.setModuleName(*moduleName);
441
    canMessage.setModuleName(*moduleName);
441
    canMessage.setModuleId(args[3]->Uint32Value());
442
    canMessage.setModuleId(args[3]->Uint32Value());
442
    String::AsciiValue commandName(args[4]);
443
    String::AsciiValue commandName(args[4]);
443
    canMessage.setCommandName(*commandName);
444
    canMessage.setCommandName(*commandName);
444
 
445
 
445
    String::AsciiValue dataString(args[5]);
446
    String::AsciiValue dataString(args[5]);
446
 
447
 
447
    vector<string> parts = explode(",", trim(*dataString, ','));
448
    vector<string> parts = explode(",", trim(*dataString, ','));
448
    map<string, CanVariable> data;
449
    map<string, CanVariable> data;
449
 
450
 
450
    for (int n = 0; n < parts.size(); n++)
451
    for (int n = 0; n < parts.size(); n++)
451
    {
452
    {
452
        vector<string> keyAndValue = explode(":", parts[n]);
453
        vector<string> keyAndValue = explode(":", parts[n]);
453
 
454
 
454
        data[keyAndValue[0]] = CanVariable(keyAndValue[0], keyAndValue[1]);
455
        data[keyAndValue[0]] = CanVariable(keyAndValue[0], keyAndValue[1]);
455
    }
456
    }
456
 
457
 
457
    canMessage.setData(data);
458
    canMessage.setData(data);
458
   
459
   
459
    canMan.sendMessage(canMessage);
460
    canMan.sendMessage(canMessage);
460
 
461
 
461
    return Undefined();
462
    return Undefined();
462
}
463
}
463
 
464
 
464
Handle<Value> VirtualMachine::_sendCanNMTMessage(const Arguments& args)
465
Handle<Value> VirtualMachine::_sendCanNMTMessage(const Arguments& args)
465
{
466
{
466
    CanNetManager &canMan = CanNetManager::getInstance();
467
    CanNetManager &canMan = CanNetManager::getInstance();
467
 
468
 
468
    CanMessage canMessage;
469
    CanMessage canMessage;
469
 
470
 
470
    String::AsciiValue className(args[0]);
471
    String::AsciiValue className(args[0]);
471
    canMessage.setClassName(*className);
472
    canMessage.setClassName(*className);
472
    String::AsciiValue commandName(args[1]);
473
    String::AsciiValue commandName(args[1]);
473
    canMessage.setCommandName(*commandName);
474
    canMessage.setCommandName(*commandName);
474
 
475
 
475
    String::AsciiValue dataString(args[2]);
476
    String::AsciiValue dataString(args[2]);
476
 
477
 
477
    vector<string> parts = explode(",", trim(*dataString, ','));
478
    vector<string> parts = explode(",", trim(*dataString, ','));
478
    map<string, CanVariable> data;
479
    map<string, CanVariable> data;
479
 
480
 
480
    for (int n = 0; n < parts.size(); n++)
481
    for (int n = 0; n < parts.size(); n++)
481
    {
482
    {
482
        vector<string> keyAndValue = explode(":", parts[n]);
483
        vector<string> keyAndValue = explode(":", parts[n]);
483
 
484
 
484
        data[keyAndValue[0]] = CanVariable(keyAndValue[0], keyAndValue[1]);
485
        data[keyAndValue[0]] = CanVariable(keyAndValue[0], keyAndValue[1]);
485
    }
486
    }
486
 
487
 
487
    canMessage.setData(data);
488
    canMessage.setData(data);
488
 
489
 
489
    canMan.sendMessage(canMessage);
490
    canMan.sendMessage(canMessage);
490
 
491
 
491
    return Undefined();
492
    return Undefined();
492
}
493
}
493
 
494
 
494
Handle<Value> VirtualMachine::_loadScript(const Arguments& args)
495
Handle<Value> VirtualMachine::_loadScript(const Arguments& args)
495
{
496
{
496
    VirtualMachine &vm = VirtualMachine::getInstance();
497
    VirtualMachine &vm = VirtualMachine::getInstance();
497
 
498
 
498
    String::AsciiValue str(args[0]);
499
    String::AsciiValue str(args[0]);
499
 
500
 
500
    return Boolean::New(vm.loadScript(*str));
501
    return Boolean::New(vm.loadScript(*str));
501
}
502
}
502
 
503
 
503
Handle<Value> VirtualMachine::_loadDataStore(const Arguments& args)
504
Handle<Value> VirtualMachine::_loadDataStore(const Arguments& args)
504
{
505
{
505
    VirtualMachine &vm = VirtualMachine::getInstance();
506
    VirtualMachine &vm = VirtualMachine::getInstance();
506
 
507
 
507
    String::AsciiValue str(args[0]);
508
    String::AsciiValue str(args[0]);
508
 
509
 
509
    return Boolean::New(vm.loadDataStore(*str));
510
    return Boolean::New(vm.loadDataStore(*str));
510
}
511
}
511
 
512
 
512
Handle<Value> VirtualMachine::_startIntervalThread(const Arguments& args)
513
Handle<Value> VirtualMachine::_startIntervalThread(const Arguments& args)
513
{
514
{
514
    VirtualMachine &vm = VirtualMachine::getInstance();
515
    VirtualMachine &vm = VirtualMachine::getInstance();
515
    return Integer::New(vm.startIntervalThread(args[0]->Uint32Value()));
516
    return Integer::New(vm.startIntervalThread(args[0]->Uint32Value()));
516
}
517
}
517
 
518
 
518
Handle<Value> VirtualMachine::_stopIntervalThread(const Arguments& args)
519
Handle<Value> VirtualMachine::_stopIntervalThread(const Arguments& args)
519
{
520
{
520
    VirtualMachine &vm = VirtualMachine::getInstance();
521
    VirtualMachine &vm = VirtualMachine::getInstance();
521
    return Boolean::New(vm.stopIntervalThread(args[0]->Uint32Value()));
522
    return Boolean::New(vm.stopIntervalThread(args[0]->Uint32Value()));
522
}
523
}
523
 
524
 
524
Handle<Value> VirtualMachine::_startSocketThread(const Arguments& args)
525
Handle<Value> VirtualMachine::_startSocketThread(const Arguments& args)
525
{
526
{
526
    VirtualMachine &vm = VirtualMachine::getInstance();
527
    VirtualMachine &vm = VirtualMachine::getInstance();
527
 
528
 
528
    String::AsciiValue address(args[0]);
529
    String::AsciiValue address(args[0]);
529
 
530
 
530
    return Integer::New(vm.startSocketThread(*address, args[1]->Uint32Value(), args[2]->Uint32Value()));
531
    return Integer::New(vm.startSocketThread(*address, args[1]->Uint32Value(), args[2]->Uint32Value()));
531
}
532
}
532
 
533
 
533
Handle<Value> VirtualMachine::_stopSocketThread(const Arguments& args)
534
Handle<Value> VirtualMachine::_stopSocketThread(const Arguments& args)
534
{
535
{
535
    VirtualMachine &vm = VirtualMachine::getInstance();
536
    VirtualMachine &vm = VirtualMachine::getInstance();
536
 
537
 
537
    return Boolean::New(vm.stopSocketThread(args[0]->Uint32Value()));
538
    return Boolean::New(vm.stopSocketThread(args[0]->Uint32Value()));
538
}
539
}
539
 
540
 
540
Handle<Value> VirtualMachine::_sendToSocketThread(const Arguments& args)
541
Handle<Value> VirtualMachine::_sendToSocketThread(const Arguments& args)
541
{
542
{
542
    VirtualMachine &vm = VirtualMachine::getInstance();
543
    VirtualMachine &vm = VirtualMachine::getInstance();
543
 
544
 
544
    String::AsciiValue data(args[1]);
545
    String::AsciiValue data(args[1]);
545
 
546
 
546
    vm.sendToSocketThread(args[0]->Uint32Value(), *data);
547
    vm.sendToSocketThread(args[0]->Uint32Value(), *data);
547
 
548
 
548
    return Undefined();
549
    return Undefined();
549
}
550
}
550
 
551
 
551
Handle<Value> VirtualMachine::_uint2hex(const Arguments& args)
552
Handle<Value> VirtualMachine::_uint2hex(const Arguments& args)
552
{
553
{
553
    VirtualMachine &vm = VirtualMachine::getInstance();
554
    VirtualMachine &vm = VirtualMachine::getInstance();
554
 
555
 
555
    string hexId = uint2hex(args[0]->Uint32Value(), args[1]->Uint32Value());
556
    string hexId = uint2hex(args[0]->Uint32Value(), args[1]->Uint32Value());
556
 
557
 
557
    return String::New(hexId.c_str());
558
    return String::New(hexId.c_str());
558
}
559
}
-
 
560
 
-
 
561
Handle<Value> VirtualMachine::_getFileContents(const Arguments& args)
-
 
562
{
-
 
563
    String::AsciiValue filename(args[0]);
-
 
564
 
-
 
565
    if (!file_exists(*filename))
-
 
566
    {
-
 
567
        return Undefined();
-
 
568
    }
-
 
569
 
-
 
570
    string content = file_get_contents(*filename);
-
 
571
 
-
 
572
    return String::New(content.c_str());
-
 
573
}
-
 
574
 
559
 
575