OpenASIP  2.0
ProDeClipboard.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 ProDeClipboard.cc
26  *
27  * Implementation of the ProDeClipboard class.
28  *
29  * @author Veli-Pekka Jääskeläinen 2004 (vjaaskel-no.spam-cs.tut.fi)
30  */
31 
32 #include "ProDeClipboard.hh"
33 #include "ObjectState.hh"
34 
35 
37 
38 /**
39  * The Constructor.
40  */
41 ProDeClipboard::ProDeClipboard() : contents_(NULL) {
42 }
43 
44 
45 /**
46  * The Destructor.
47  */
49  if (contents_ != NULL) {
50  delete contents_;
51  contents_ = NULL;
52  }
53 }
54 
55 
56 /**
57  * Returns the singleton instance of the clipboard.
58  *
59  * @return Singleton instance of the clipboard.
60  */
63  if (instance_ == NULL) {
64  instance_ = new ProDeClipboard();
65  }
66  return instance_;
67 }
68 
69 
70 /**
71  * Deletes the singleton instance of the clipboard.
72  */
73 void
75  if (instance_ != NULL) {
76  delete instance_;
77  instance_ = NULL;
78  }
79 }
80 
81 
82 /**
83  * Sets the clipboard contents.
84  *
85  * @param component Copied/cut component.
86  */
87 void
89  ObjectState* component, const TTAMachine::Machine* sourceMachine) {
90  if (contents_ != NULL) {
91  delete contents_;
92  }
94  contents_ = component;
95 }
96 
97 
98 /**
99  * Returns a copy of the clipboard contents.
100  *
101  * @return Copy of the cliboard contents.
102  */
105 
106  if (contents_ == NULL) {
107  return NULL;
108  }
109 
110  ObjectState* component = new ObjectState(*contents_);
111  return component;
112 }
113 
114 
115 /**
116  * Returns true if the clipboard is empty.
117  *
118  * @return true, if the clipboard is empty.
119  */
120 bool
122  if (contents_ == NULL) {
123  return true;
124  }
125  return false;
126 }
ProDeClipboard::sourceMachine_
const TTAMachine::Machine * sourceMachine_
Definition: ProDeClipboard.hh:63
ProDeClipboard::ProDeClipboard
ProDeClipboard()
Definition: ProDeClipboard.cc:41
ProDeClipboard::~ProDeClipboard
~ProDeClipboard()
Definition: ProDeClipboard.cc:48
ObjectState
Definition: ObjectState.hh:59
ProDeClipboard::destroy
static void destroy()
Definition: ProDeClipboard.cc:74
ProDeClipboard::sourceMachine
const TTAMachine::Machine * sourceMachine()
Definition: ProDeClipboard.hh:54
ObjectState.hh
ProDeClipboard::isEmpty
bool isEmpty()
Definition: ProDeClipboard.cc:121
ProDeClipboard::setContents
void setContents(ObjectState *contents, const TTAMachine::Machine *sourceMachine)
Definition: ProDeClipboard.cc:88
ProDeClipboard
Definition: ProDeClipboard.hh:47
ProDeClipboard::copyContents
ObjectState * copyContents()
Definition: ProDeClipboard.cc:104
ProDeClipboard::instance_
static ProDeClipboard * instance_
Definition: ProDeClipboard.hh:61
ProDeClipboard.hh
ProDeClipboard::contents_
ObjectState * contents_
Definition: ProDeClipboard.hh:62
TTAMachine::Machine
Definition: Machine.hh:73
ProDeClipboard::instance
static ProDeClipboard * instance()
Definition: ProDeClipboard.cc:62