OpenASIP  2.0
IgnoreCommand.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 IgnoreCommand.cc
26  *
27  * Implementation of IgnoreCommand class
28  *
29  * @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
30  * @note rating: red
31  */
32 
33 #include "IgnoreCommand.hh"
34 #include "Application.hh"
35 #include "FileSystem.hh"
36 #include "SimulatorFrontend.hh"
38 #include "Exception.hh"
39 #include "SimulatorToolbox.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  */
52  SimControlLanguageCommand("ignore") {
53 }
54 
55 /**
56  * Destructor.
57  *
58  * Does nothing.
59  */
61 }
62 
63 /**
64  * Executes the "ignore" command.
65  *
66  * Modifies the ignore counts of breakpoints.
67  *
68  * @param arguments The count of steps (default is one step).
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 IgnoreCommand::execute(const std::vector<DataObject>& arguments) {
75  if (!checkArgumentCount(arguments.size() - 1, 2, 2)) {
76  return false;
77  }
78 
79  if (!checkPositiveIntegerArgument(arguments[1]) ||
80  !checkPositiveIntegerArgument(arguments[2])) {
81  return false;
82  }
83 
84  if (!checkSimulationStopped()) {
86  return false;
87  }
88  }
89 
90  const int breakpointHandle = arguments[1].integerValue();
91  const int ignoreCount = arguments[2].integerValue();
92  try {
93  StopPointManager& stopPointManager =
95 
96  // just check that breakpoint is found with the handle
97  stopPointManager.stopPointWithHandleConst(breakpointHandle);
98  stopPointManager.setIgnore(breakpointHandle, ignoreCount);
99 
100  printBreakpointInfo(breakpointHandle);
101  } catch (const InstanceNotFound&) {
105  return false;
106  }
107  return true;
108 }
109 
110 /**
111  * Returns the help text for this command.
112  *
113  * Help text is searched from SimulatorTextGenerator.
114  *
115  * @return The help text.
116  * @todo Use SimulatorTextGenerator to get the help text.
117  */
118 std::string
122 }
StopPointManager.hh
CustomCommand::checkArgumentCount
bool checkArgumentCount(int argumentCount, int minimum, int maximum)
Definition: CustomCommand.cc:82
IgnoreCommand::~IgnoreCommand
virtual ~IgnoreCommand()
Definition: IgnoreCommand.cc:60
Texts::TXT_BREAKPOINT_NOT_FOUND
@ TXT_BREAKPOINT_NOT_FOUND
Definition: SimulatorTextGenerator.hh:186
FileSystem.hh
SimControlLanguageCommand::checkSimulationStopped
bool checkSimulationStopped()
Definition: SimControlLanguageCommand.cc:135
SimulatorInterpreterContext.hh
Exception.hh
CustomCommand::checkPositiveIntegerArgument
bool checkPositiveIntegerArgument(const DataObject &argument)
Definition: CustomCommand.cc:134
Texts::TextGenerator::text
virtual boost::format text(int textId)
Definition: TextGenerator.cc:94
IgnoreCommand::IgnoreCommand
IgnoreCommand()
Definition: IgnoreCommand.cc:51
SimulatorToolbox.hh
StopPointManager::stopPointWithHandleConst
const StopPoint & stopPointWithHandleConst(unsigned int handle) const
Definition: StopPointManager.cc:248
IgnoreCommand::execute
virtual bool execute(const std::vector< DataObject > &arguments)
Definition: IgnoreCommand.cc:74
StopPointManager
Definition: StopPointManager.hh:50
Application.hh
Texts::TXT_INTERP_HELP_IGNORE
@ TXT_INTERP_HELP_IGNORE
Help text for command "ignore" of the CLI.
Definition: SimulatorTextGenerator.hh:93
SimulatorToolbox::textGenerator
static SimulatorTextGenerator & textGenerator()
Definition: SimulatorToolbox.cc:75
SimulatorTextGenerator.hh
IgnoreCommand.hh
SimControlLanguageCommand::checkSimulationInitialized
bool checkSimulationInitialized()
Definition: SimControlLanguageCommand.cc:88
SimulatorFrontend.hh
CustomCommand::interpreter
ScriptInterpreter * interpreter() const
IgnoreCommand::helpText
virtual std::string helpText() const
Definition: IgnoreCommand.cc:119
SimValue.hh
ScriptInterpreter::setError
virtual void setError(bool state)
Definition: ScriptInterpreter.cc:205
SimControlLanguageCommand
Definition: SimControlLanguageCommand.hh:63
SimControlLanguageCommand::simulatorFrontend
SimulatorFrontend & simulatorFrontend()
Definition: SimControlLanguageCommand.cc:214
StopPointManager::setIgnore
void setIgnore(unsigned int handle, unsigned int count)
Definition: StopPointManager.cc:283
SimulatorFrontend::stopPointManager
StopPointManager & stopPointManager()
Definition: SimulatorFrontend.cc:2108
InstanceNotFound
Definition: Exception.hh:304
SimControlLanguageCommand::printBreakpointInfo
virtual bool printBreakpointInfo(unsigned int breakpointHandle)
Definition: SimControlLanguageCommand.cc:678