Fixed problem in DeviceSettings::strParam, returned wrong string
[avr-sim.git] / src / Analyzer.cpp
blobdc4f32f85c78c870699c5f50a3fa46d5cb421af6
1 /*
2 * avr-sim: An atmel AVR simulator
3 * Copyright (C) 2008 Tom Haber
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "Analyzer.h"
20 #include "ScriptableAnalyzer.h"
21 #include "TraceAnalyzer.h"
23 #include "RuntimeException.h"
24 #include "Format.h"
25 #include <cstring>
27 namespace avr {
29 #ifdef ENABLE_SCRIPTING
30 ScriptEngine *AnalyzerFactory::vm = 0;
32 void AnalyzerFactory::setScriptEngine(ScriptEngine *vm) {
33 AnalyzerFactory::vm = vm;
35 #endif
37 Analyzer *AnalyzerFactory::newAnalyzer(Core *core, const char *name) {
38 const char *tracePrefix = "trace:";
39 const char *scriptPrefix = "script:";
40 if( strncmp( name, tracePrefix, strlen(tracePrefix) ) == 0 ) {
41 // Its a trace
42 const char *filename = strchr(name,':') + 1;
43 return new TraceAnalyzer(core, filename);
44 #ifdef ENABLE_SCRIPTING
45 } else if( strncmp( name, scriptPrefix, strlen(scriptPrefix) ) == 0 ) {
46 // Its a script
47 const char *script = strchr(name,':') + 1;
48 return new ScriptableAnalyzer(core, vm, script);
49 #endif
50 } else {
51 throw util::RuntimeException(
52 util::format("Failed to create analyzer %s") % name );