OpenASIP
2.0
src
applibs
Simulator
DeleteBPCommand.cc
Go to the documentation of this file.
1
/*
2
Copyright (c) 2002-2009 Tampere University.
3
4
This file is part of TTA-Based Codesign Environment (TCE).
5
6
Permission is hereby granted, free of charge, to any person obtaining a
7
copy of this software and associated documentation files (the "Software"),
8
to deal in the Software without restriction, including without limitation
9
the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
and/or sell copies of the Software, and to permit persons to whom the
11
Software is furnished to do so, subject to the following conditions:
12
13
The above copyright notice and this permission notice shall be included in
14
all copies or substantial portions of the Software.
15
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
DEALINGS IN THE SOFTWARE.
23
*/
24
/**
25
* @file DeleteBPCommand.cc
26
*
27
* Implementation of DeleteBPCommand class
28
*
29
* @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
30
* @note rating: red
31
*/
32
33
#include "
DeleteBPCommand.hh
"
34
#include "
Application.hh
"
35
#include "
FileSystem.hh
"
36
#include "
SimulatorFrontend.hh
"
37
#include "
SimulatorInterpreterContext.hh
"
38
#include "
Exception.hh
"
39
#include "
SimulatorToolbox.hh
"
40
#include "
SimulatorTextGenerator.hh
"
41
#include "
SimValue.hh
"
42
#include "
StopPointManager.hh
"
43
44
#include <iostream>
45
46
/**
47
* Constructor.
48
*
49
* Sets the name of the command to the base class.
50
*/
51
DeleteBPCommand::DeleteBPCommand
() :
52
SimControlLanguageCommand
(
"deletebp"
) {
53
}
54
55
/**
56
* Destructor.
57
*
58
* Does nothing.
59
*/
60
DeleteBPCommand::~DeleteBPCommand
() {
61
}
62
63
/**
64
* Executes the "deletebp" command.
65
*
66
* Deletes the given breakpoints.
67
*
68
* @param arguments The handle(s) of the breakpoint(s) to delete.
69
* @return True in case simulation is initialized and arguments are ok.
70
* @exception NumberFormatException Is never thrown by this command.
71
* @todo Use the count for the step.
72
*/
73
bool
74
DeleteBPCommand::execute
(
const
std::vector<DataObject>& arguments) {
75
if
(!
checkSimulationStopped
()) {
76
if
(!
checkSimulationInitialized
()) {
77
return
false
;
78
}
79
}
80
81
StopPointManager
& breakpointManager =
82
simulatorFrontend
().
stopPointManager
();
83
if
(arguments.size() > 1) {
84
if
(!
verifyBreakpointHandles
(arguments)) {
85
return
false
;
86
}
87
88
// delete the given breakpoints
89
for
(
size_t
i = 1; i < arguments.size(); ++i) {
90
const
unsigned
int
breakpointHandle = arguments[i].integerValue();
91
try
{
92
breakpointManager.
deleteStopPoint
(breakpointHandle);
93
}
catch
(
const
InstanceNotFound
&) {
94
// user defined the same breakpoint handle twice, let's
95
// ignore this
96
}
97
}
98
}
else
{
99
// delete all breakpoints
100
if
(!
interpreter
()->lineReader()->confirmation(
101
SimulatorToolbox::textGenerator
().text(
102
Texts::TXT_CONFIRM_DELETE_ALL_BREAKPOINTS
).str())) {
103
// user answered "no", command is still considered succesful
104
return
true
;
105
}
106
breakpointManager.
deleteAll
();
107
}
108
return
true
;
109
}
110
111
/**
112
* Returns the help text for this command.
113
*
114
* Help text is searched from SimulatorTextGenerator.
115
*
116
* @return The help text.
117
* @todo Use SimulatorTextGenerator to get the help text.
118
*/
119
std::string
120
DeleteBPCommand::helpText
()
const
{
121
return
SimulatorToolbox::textGenerator
().
text
(
122
Texts::TXT_INTERP_HELP_DELETEBP
).str();
123
}
StopPointManager.hh
FileSystem.hh
SimControlLanguageCommand::checkSimulationStopped
bool checkSimulationStopped()
Definition:
SimControlLanguageCommand.cc:135
SimulatorInterpreterContext.hh
Exception.hh
StopPointManager::deleteStopPoint
void deleteStopPoint(unsigned int handle)
Definition:
StopPointManager.cc:108
Texts::TXT_INTERP_HELP_DELETEBP
@ TXT_INTERP_HELP_DELETEBP
Help text for command "deletebp" of the CLI.
Definition:
SimulatorTextGenerator.hh:95
Texts::TextGenerator::text
virtual boost::format text(int textId)
Definition:
TextGenerator.cc:94
SimControlLanguageCommand::verifyBreakpointHandles
bool verifyBreakpointHandles(const std::vector< DataObject > &arguments, std::size_t startIndex=1)
Definition:
SimControlLanguageCommand.cc:712
DeleteBPCommand::execute
virtual bool execute(const std::vector< DataObject > &arguments)
Definition:
DeleteBPCommand.cc:74
SimulatorToolbox.hh
StopPointManager
Definition:
StopPointManager.hh:50
Application.hh
SimulatorToolbox::textGenerator
static SimulatorTextGenerator & textGenerator()
Definition:
SimulatorToolbox.cc:75
SimulatorTextGenerator.hh
StopPointManager::deleteAll
void deleteAll()
Definition:
StopPointManager.cc:136
DeleteBPCommand::helpText
virtual std::string helpText() const
Definition:
DeleteBPCommand.cc:120
DeleteBPCommand::~DeleteBPCommand
virtual ~DeleteBPCommand()
Definition:
DeleteBPCommand.cc:60
SimControlLanguageCommand::checkSimulationInitialized
bool checkSimulationInitialized()
Definition:
SimControlLanguageCommand.cc:88
SimulatorFrontend.hh
CustomCommand::interpreter
ScriptInterpreter * interpreter() const
SimValue.hh
DeleteBPCommand.hh
SimControlLanguageCommand
Definition:
SimControlLanguageCommand.hh:63
SimControlLanguageCommand::simulatorFrontend
SimulatorFrontend & simulatorFrontend()
Definition:
SimControlLanguageCommand.cc:214
Texts::TXT_CONFIRM_DELETE_ALL_BREAKPOINTS
@ TXT_CONFIRM_DELETE_ALL_BREAKPOINTS
Definition:
SimulatorTextGenerator.hh:190
SimulatorFrontend::stopPointManager
StopPointManager & stopPointManager()
Definition:
SimulatorFrontend.cc:2108
InstanceNotFound
Definition:
Exception.hh:304
DeleteBPCommand::DeleteBPCommand
DeleteBPCommand()
Definition:
DeleteBPCommand.cc:51
Generated by
1.8.17