OpenASIP 2.2
Loading...
Searching...
No Matches
CommandsCommand.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 CommandsCommand.cc
26 *
27 * Implementation of CommandsCommand class
28 *
29 * @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
30 * @note rating: red
31 */
32
33#include "CommandsCommand.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 "StringTools.hh"
43
44#include <iostream>
45#include <algorithm>
46
47/**
48 * Constructor.
49 *
50 * Sets the name of the command to the base class.
51 */
55
56/**
57 * Destructor.
58 *
59 * Does nothing.
60 */
63
64/**
65 * Executes the "commands" command.
66 *
67 * Displays the given count of entries in the command history log.
68 *
69 * @param arguments The count of entries to be printed.
70 * @return True in case simulation is initialized and arguments are ok.
71 * @exception NumberFormatException Is never thrown by this command.
72 * @todo Use the count for the step.
73 */
74bool
75CommandsCommand::execute(const std::vector<DataObject>& arguments) {
76 if (!checkArgumentCount(arguments.size() - 1, 0, 1)) {
77 return false;
78 }
79
80 std::size_t commandCount = 10;
81 if (arguments.size() == 2) {
82 if (!checkPositiveIntegerArgument(arguments[1])) {
83 return false;
84 }
85 commandCount = arguments[1].integerValue();
86 }
87
88 commandCount = std::min(
89 commandCount, interpreter()->lineReader()->inputsInHistory());
90
91 for (int i = commandCount - 1; i >= 0; --i) {
94 interpreter()->lineReader()->inputHistoryEntry(i))
95 << std::endl;
96 }
97 return true;
98}
99
100/**
101 * Returns the help text for this command.
102 *
103 * Help text is searched from SimulatorTextGenerator.
104 *
105 * @return The help text.
106 * @todo Use SimulatorTextGenerator to get the help text.
107 */
108std::string
virtual bool execute(const std::vector< DataObject > &arguments)
virtual std::string helpText() const
virtual ~CommandsCommand()
bool checkArgumentCount(int argumentCount, int minimum, int maximum)
ScriptInterpreter * interpreter() const
bool checkPositiveIntegerArgument(const DataObject &argument)
virtual std::ostream & outputStream()
static SimulatorTextGenerator & textGenerator()
static std::string trim(const std::string &source)
virtual boost::format text(int textId)
@ TXT_INTERP_HELP_COMMANDS
Help text for command "commands" of the CLI.