/usr/include/OTB-6.4/otbWrapperParameter.h is in libotb-dev 6.4.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | /*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef otbWrapperParameter_h
#define otbWrapperParameter_h
#include "otbMacro.h"
#include "itkObjectFactory.h"
#include "otbWrapperTypes.h"
#include "OTBApplicationEngineExport.h"
namespace otb
{
namespace Wrapper
{
enum DefaultValueMode
{
/**
* This parameter has no default behaviour and should be set by
* the user.
*/
DefaultValueMode_UNKNOWN,
/**
* The default value of this parameter can be estimated from
* other parameters.
*/
DefaultValueMode_RELATIVE,
/**
* The default value of this parameter is not depending on any
* other parameter.
*/
DefaultValueMode_ABSOLUTE
};
/** \class Parameter
* \brief This class represent a parameter for the wrapper framework
* This class is a high level class representing a parameter for the
* wrapper framework. It should be subclassed to represent different
* kinds of parameters
*
* \ingroup OTBApplicationEngine
*/
class OTBApplicationEngine_EXPORT Parameter
: public itk::Object
{
public:
/** Standard class typedef */
typedef Parameter Self;
typedef itk::Object Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** RTTI support */
itkTypeMacro(Parameter, itk::Object);
/** Set the parameter name */
itkSetStringMacro(Name);
/** Get the parameter name */
itkGetStringMacro(Name);
/** Set the parameter description */
itkSetStringMacro(Description);
/** Get the parameter description */
itkGetConstReferenceMacro( Description, std::string );
/** Set the parameter key */
itkSetStringMacro(Key);
/** Get the parameter key */
itkGetStringMacro(Key);
/** Set the parameter Active flag */
itkSetMacro(Active, bool);
/** Get the parameter Active flag */
bool GetActive(bool recurseParents = false) const
{
bool result = m_Active;
if (recurseParents && !IsRoot())
{
result = result && GetRoot()->GetActive(recurseParents);
}
return result;
}
/** Set the parameter mandatory flag */
itkSetMacro(Mandatory, bool);
/** Get the parameter mandatory flag */
itkGetConstMacro(Mandatory, bool);
/** Toogle the parameter mandatory flag */
itkBooleanMacro(Mandatory);
/** Set the parameter AutomaticValue flag */
itkSetMacro(AutomaticValue, bool);
/** Get the parameter AutomaticValue flag */
itkGetConstMacro(AutomaticValue, bool);
/** Toogle the parameter AutomaticValue flag */
itkBooleanMacro(AutomaticValue);
/** Set the default value mode */
itkSetEnumMacro(DefaultValueMode, DefaultValueMode);
/** Get the default value mode */
itkGetEnumMacro(DefaultValueMode, DefaultValueMode);
/** Set the user access level */
itkSetEnumMacro(UserLevel, UserLevel);
/** Get the user access level */
itkGetEnumMacro(UserLevel, UserLevel);
/** Set the parameter io type*/
itkSetEnumMacro(Role, Role);
/** Get the user access level */
itkGetEnumMacro(Role, Role);
/** Reset to the the default value. Default implementation does
* nothing
*/
virtual void Reset()
{
}
virtual bool HasValue() const = 0;
virtual bool HasUserValue() const
{
return this->HasValue() && m_UserValue;
}
virtual void SetUserValue(bool isUserValue)
{
m_UserValue = isUserValue;
}
virtual void ClearValue()
{
SetActive( false );
Modified();
}
/** Set/Get the root of the current parameter (direct parent) */
virtual void SetRoot(const Parameter::Pointer root)
{
m_Root = root.GetPointer();
}
virtual const Parameter::Pointer GetRoot() const
{
return m_Root.GetPointer();
}
/** Is the parameter a root or a child of another param */
virtual bool IsRoot() const
{
return (this == m_Root.GetPointer());
}
/** Add a child of this parameter when the param is a Group or a
* choice
*/
virtual void AddChild(Parameter::Pointer child)
{
m_ChildrenList.push_back(child);
}
/** Get the children pointer list : not const cause we need to
* alterate the m_Active status and the m_IsCheckbox
*/
virtual std::vector<Parameter::Pointer > GetChildrenList()
{
return m_ChildrenList;
}
/** Store the state of the check box relative to this parameter (TO
* BE MOVED to QtWrapper Model )
*/
virtual bool IsChecked() const
{
return m_IsChecked;
}
/** Modify the state of the checkbox relative to this parameter */
virtual void SetChecked(const bool value)
{
m_IsChecked = value;
}
protected:
/** Constructor */
Parameter() :
m_Name( "" ),
m_Description( "" ),
m_Key( "" ),
m_Mandatory( true ),
m_Active( false ),
m_UserValue( false ),
m_AutomaticValue( false ),
m_DefaultValueMode( DefaultValueMode_UNKNOWN ),
m_UserLevel( UserLevel_Basic ),
m_Role( Role_Input ),
m_Root( this ),
m_IsChecked( false )
{}
/** Destructor */
~Parameter() ITK_OVERRIDE {}
/** Name of the parameter */
std::string m_Name;
/** Description of the parameter */
std::string m_Description;
/** Key of the parameter */
std::string m_Key;
/** True if the parameter is mandatory */
bool m_Mandatory;
/** True if activated (a mandatory parameter is always active) */
bool m_Active;
/** True if the value is set in user mode */
bool m_UserValue;
/** True if the application change the value of this parameter */
bool m_AutomaticValue;
/** Default value behaviour */
DefaultValueMode m_DefaultValueMode;
UserLevel m_UserLevel;
/** Default iotype mode */
Role m_Role;
/** List of parents Parameters */
itk::WeakPointer<Parameter> m_Root;
/** List of children parameters */
std::vector<Parameter::Pointer > m_ChildrenList;
/** Store the status of the checkbox */
bool m_IsChecked;
private:
Parameter(const Parameter &); //purposely not implemented
void operator =(const Parameter&); //purposely not implemented
}; // End class Parameter
} // End namespace Wrapper
} // End namespace otb
#endif
|