OpenASIP  2.0
OperationGlobals.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 OperationGlobals.cc
26  *
27  * Definition of OperationGlobals singleton class.
28  *
29  * @author Viljami Korhonen 2008 (viljami.korhonen-no.spam-tut.fi)
30  * @note rating: red
31  */
32 
33 #include "Operation.hh"
34 #include "OperationGlobals.hh"
35 #include "Exception.hh"
36 #include <iostream>
37 #include <string>
38 #include "TCEString.hh"
39 
40 std::ostream* OperationGlobals::outputStream_ = &std::cout;
41 
42 
43 /**
44  * Returns the current output stream
45  *
46  * @return the current output stream
47  */
48 std::ostream&
50  return *outputStream_;
51 }
52 
53 /**
54  * Sets a new output stream for operation globals
55  *
56  * @param newOutputStream new output stream to set
57  */
58 void
59 OperationGlobals::setOutputStream(std::ostream& newOutputStream) {
60  outputStream_ = &newOutputStream;
61 }
62 
63 /**
64  * Throws an exception with a message
65  *
66  * @param message Message
67  * @param file __FILE__
68  * @param line __LINE__
69  * @param parent parent operation
70  * @exception SimulationExecutionError thrown always.
71  */
72 void
74  const char* message,
75  const char* file,
76  int line,
77  const Operation& parent) {
78  throw SimulationExecutionError(std::string(file), line,
79  parent.name(), std::string(" ") + parent.name() + ": " + message);
80 }
Exception.hh
OperationGlobals::setOutputStream
static void setOutputStream(std::ostream &newOutputStream)
Definition: OperationGlobals.cc:59
SimulationExecutionError
Definition: Exception.hh:951
Operation::name
virtual TCEString name() const
Definition: Operation.cc:93
OperationGlobals::outputStream_
static std::ostream * outputStream_
The global output stream, defaults to std::cout.
Definition: OperationGlobals.hh:59
TCEString.hh
Operation.hh
Operation
Definition: Operation.hh:59
OperationGlobals::runtimeError
static void runtimeError(const char *message, const char *file, int line, const Operation &parent)
Definition: OperationGlobals.cc:73
OperationGlobals::outputStream
static std::ostream & outputStream()
Definition: OperationGlobals.cc:49
OperationGlobals.hh