OpenASIP  2.0
StepiCommand.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 StepiCommand.cc
26  *
27  * Implementation of StepiCommand class
28  *
29  * @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
30  * @note rating: red
31  */
32 
33 #include "StepiCommand.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 
43 #include <iostream>
44 
45 /**
46  * Constructor.
47  *
48  * Sets the name of the command to the base class.
49  */
51 }
52 
53 /**
54  * Destructor.
55  *
56  * Does nothing.
57  */
59 }
60 
61 /**
62  * Executes the "stepi" command.
63  *
64  * Executes the user defined count of next TTA instruction and returns
65  * control back to user.
66  *
67  * @param arguments The count of steps (default is one step).
68  * @return True in case simulation is initialized and arguments are ok.
69  * @exception NumberFormatException Is never thrown by this command.
70  * @todo Use the count for the step.
71  */
72 bool
73 StepiCommand::execute(const std::vector<DataObject>& arguments) {
74  if (!checkArgumentCount(arguments.size() - 1, 0, 1)) {
75  return false;
76  }
77 
78  double stepCount = 1;
79  if (arguments.size() == 2) {
80  if (!checkDoubleArgument(arguments[1])) {
81  return false;
82  }
83  stepCount = arguments[1].doubleValue();
84  }
85 
86  if (!checkSimulationStopped()) {
88  return false;
89  }
90  }
91 
92  simulatorFrontend().step(stepCount);
95  return true;
96 }
97 
98 /**
99  * Returns the help text for this command.
100  *
101  * Help text is searched from SimulatorTextGenerator.
102  *
103  * @return The help text.
104  * @todo Use SimulatorTextGenerator to get the help text.
105  */
106 std::string
110 }
StepiCommand::StepiCommand
StepiCommand()
Definition: StepiCommand.cc:50
CustomCommand::checkArgumentCount
bool checkArgumentCount(int argumentCount, int minimum, int maximum)
Definition: CustomCommand.cc:82
FileSystem.hh
SimControlLanguageCommand::checkSimulationStopped
bool checkSimulationStopped()
Definition: SimControlLanguageCommand.cc:135
SimulatorInterpreterContext.hh
Exception.hh
SimControlLanguageCommand::printNextInstruction
virtual void printNextInstruction()
Definition: SimControlLanguageCommand.cc:228
StepiCommand::helpText
virtual std::string helpText() const
Definition: StepiCommand.cc:107
Texts::TextGenerator::text
virtual boost::format text(int textId)
Definition: TextGenerator.cc:94
Texts::TXT_INTERP_HELP_STEPI
@ TXT_INTERP_HELP_STEPI
Help text for command "stepi" of the CLI.
Definition: SimulatorTextGenerator.hh:71
SimulatorToolbox.hh
Application.hh
SimulatorToolbox::textGenerator
static SimulatorTextGenerator & textGenerator()
Definition: SimulatorToolbox.cc:75
StepiCommand::~StepiCommand
virtual ~StepiCommand()
Definition: StepiCommand.cc:58
SimulatorTextGenerator.hh
SimControlLanguageCommand::checkSimulationInitialized
bool checkSimulationInitialized()
Definition: SimControlLanguageCommand.cc:88
SimulatorFrontend.hh
SimulatorFrontend::step
virtual void step(double count=1)
Definition: SimulatorFrontend.cc:1034
SimValue.hh
SimControlLanguageCommand
Definition: SimControlLanguageCommand.hh:63
CustomCommand::checkDoubleArgument
bool checkDoubleArgument(const DataObject &argument)
Definition: CustomCommand.cc:195
SimControlLanguageCommand::simulatorFrontend
SimulatorFrontend & simulatorFrontend()
Definition: SimControlLanguageCommand.cc:214
StepiCommand::execute
virtual bool execute(const std::vector< DataObject > &arguments)
Definition: StepiCommand.cc:73
StepiCommand.hh
SimControlLanguageCommand::printSimulationTime
virtual void printSimulationTime()
Definition: SimControlLanguageCommand.cc:322