casacore
Loading...
Searching...
No Matches
RegionHandlerMemory.h
Go to the documentation of this file.
1//# RegionHandlerMemory.h: Class for keeping regions in memory
2//# Copyright (C) 2000
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef IMAGES_REGIONHANDLERMEMORY_H
27#define IMAGES_REGIONHANDLERMEMORY_H
28
29
30//# Includes
31#include <casacore/casa/aips.h>
32#include <casacore/images/Regions/RegionHandler.h>
33#include <casacore/casa/BasicSL/String.h>
34#include <map>
35
36namespace casacore { //# NAMESPACE CASACORE - BEGIN
37
38// <summary>
39// Class for keeping regions in memory.
40// </summary>
41
42// <use visibility=local>
43
44// <reviewed reviewer="" date="" tests="tPagedImage2.cc" demos="">
45// </reviewed>
46
47// <prerequisite>
48// <li> <linkto class=PagedImage>PagedImage</linkto>
49// <li> <linkto class=ImageRegion>ImageRegion</linkto>
50// </prerequisite>
51
52// <synopsis>
53// Persistent regions are stored as subrecords of the table keywords
54// "regions" and "masks". The user can choose one of both keywords.
55// Keyword "masks" is meant for true image masks, i.e. telling for
56// each pixel if it is good or bad. Keyword "regions" is meant for
57// true regions in an image.
58// <p>
59// This class handles defining, getting and removing such regions.
60// It is used by class <linkto class=PagedImage</linkto>, but it can also
61// be used by other code to handle regions in other tables.
62// <p>
63// Another function performed by this class for PagedImage is the
64// definition of the default region to be used with an image.
65// <p>
66// The class consists of static functions only.
67// </synopsis>
68
69// <example>
70// </example>
71
72// <motivation>
73// This class has 2 purposes:
74// <ol>
75// <li> This untemplated code can be factored out from the templated
76// Image classes.
77// <li> The functions can easily be used by other code.
78// </ol>
79// </motivation>
80
81//# <todo asof="1999/02/16">
82//# <li>
83//# </todo>
84
85
87{
88public:
90
91 // Copy constructor (copy semantics).
93
95
96 // Assignment (copy semantics).
98
99 // Make a copy of the object.
100 virtual RegionHandlerMemory* clone() const;
101
102 // This class can define and handle regions.
103 virtual Bool canDefineRegion() const;
104
105 // Set the default mask to the mask with the given name.
106 // If the given maskName is the empty string, the default mask is unset.
107 virtual void setDefaultMask (const String& maskName);
108
109 // Get the name of the default mask.
110 // An empty string is returned if no default mask.
111 virtual String getDefaultMask() const;
112
113 // Define a region.
114 // The group type determines if it is kept as a region or a mask.
115 // If overwrite=False, an exception will be thrown if the region
116 // already exists in the "regions" or "masks" group.
117 // Otherwise the region will be removed first.
118 // <br>It always returns a True status.
119 virtual Bool defineRegion (const String& name,
120 const ImageRegion& region,
122 Bool overwrite = False);
123
124 // Is there a region with the given name?
125 virtual Bool hasRegion (const String& name,
127
128 // Get a region with the given name from the given group.
129 // A zero pointer is returned if the region does not exist.
130 // The caller has to delete the <src>ImageRegion</src> object created.
131 // <br>No exception is thrown if the region does not exist.
132 virtual ImageRegion* getRegion (const String& name,
134 Bool throwIfUnknown = True) const;
135
136 // Rename a region.
137 // If a region with the new name already exists, it is deleted or
138 // an exception is thrown (depending on <src>overwrite</src>).
139 // The region name is looked up in the given group(s).
140 // <br>An exception is thrown if the old region name does not exist.
141 // <br>It always returns a True status.
142 virtual Bool renameRegion (const String& newName,
143 const String& oldName,
145 Bool overwrite = False);
146
147 // Remove a region from the given group.
148 // <br>Optionally an exception is thrown if the region does not exist.
149 // <br>It always returns a True status.
150 virtual Bool removeRegion (const String& name,
152 Bool throwIfUnknown = True);
153
154 // Get the names of all regions/masks.
156
157 // Make a mask (an LCMask) for a temporary lattice (a TempImage).
158 // It creates it with the shape and tile shape of the lattice.
159 virtual ImageRegion makeMask (const LatticeBase& lattice,
160 const String& name);
161
162private:
163 // Find group number of the region group to which a region belongs
164 // (i.e. the field number of the "regions" or "masks" field).
165 // -1 is returned if the region does not exist.
166 // <br>Optionally an exception is thrown if the region does not exist.
167 Int findRegionGroup (const String& regionName,
169 Bool throwIfUnknown = True) const;
170
171 // Find a region..
172 // It is used by getRegion (which makes a clone of the object).
173 // A zero pointer is returned if the region does not exist.
174 virtual ImageRegion* findRegion (const String& name,
176 Bool throwIfUnknown = True) const;
177
178 // Remove all regions from the maps.
179 void clear();
180
181
183 std::map<String, void*> itsMaps[2];
184};
185
186
187
188
189} //# NAMESPACE CASACORE - END
190
191#endif
virtual RegionHandlerMemory * clone() const
Make a copy of the object.
Int findRegionGroup(const String &regionName, RegionHandler::GroupType=Any, Bool throwIfUnknown=True) const
RegionHandlerMemory & operator=(const RegionHandlerMemory &)
RegionHandlerMemory(const RegionHandlerMemory &)
virtual void setDefaultMask(const String &maskName)
Set the default mask to the mask with the given name.
virtual ImageRegion * findRegion(const String &name, RegionHandler::GroupType=Any, Bool throwIfUnknown=True) const
virtual ImageRegion makeMask(const LatticeBase &lattice, const String &name)
Make a mask for a lattice (e.g.
virtual String getDefaultMask() const
Get the name of the default mask.
virtual Bool canDefineRegion() const
Can the class indeed define and handle regions? The default implementation returns False.
virtual Bool renameRegion(const String &newName, const String &oldName, RegionHandler::GroupType=Any, Bool overwrite=False)
Rename a region.
std::map< String, void * > itsMaps[2]
virtual Bool defineRegion(const String &name, const ImageRegion &region, RegionHandler::GroupType, Bool overwrite=False)
Define a region belonging to the table.
virtual ImageRegion * getRegion(const String &name, RegionHandler::GroupType=Any, Bool throwIfUnknown=True) const
Get a region belonging to the table.
virtual Bool removeRegion(const String &name, RegionHandler::GroupType=Any, Bool throwIfUnknown=True)
Remove a region belonging to the table.
virtual Vector< String > regionNames(RegionHandler::GroupType=Any) const
Get the names of all regions/masks.
virtual Bool hasRegion(const String &name, RegionHandler::GroupType=RegionHandler::Any) const
Does the table have a region with the given name?
GroupType
Define the possible group types (regions or masks).
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28
const Bool False
Definition aipstype.h:42
int Int
Definition aipstype.h:48
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40
const Bool True
Definition aipstype.h:41