/usr/include/OTB-5.8/otbWrapperCommandLineLauncher.h is in libotb-dev 5.8.0+dfsg-3.
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 | /*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbWrapperCommandLineLauncher_h
#define otbWrapperCommandLineLauncher_h
#include "otbWrapperApplication.h"
#include "otbWrapperParameter.h"
#include "itksys/SystemTools.hxx"
#include "otbWrapperCommandLineParser.h"
#include "itkStdStreamLogOutput.h"
#include "otbStandardOneLineFilterWatcher.h"
#include "itkCommand.h"
#include <vector>
namespace otb
{
namespace Wrapper
{
/** \class CommandLineLauncher
* \brief This class check the validity of a command line application.
*
* To be valid, the expression must be as follow:
* ModuleName (ModulePath) --attribut1_Key attribut1_Value --attribut2_Key
* attribut2_Value
* After the attribute key, if the user give several values (expression
* without \"--\" separated by space), it will automatically be
* interpreted as a list.
*
* \ingroup OTBCommandLine
*/
class ITK_ABI_EXPORT CommandLineLauncher : public itk::Object
{
public:
/** Standard class typedefs. */
typedef CommandLineLauncher Self;
typedef itk::Object Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Defining ::New() static method */
itkNewMacro(Self);
/** RTTI support */
itkTypeMacro(CommandLineLauncher, itk::Object);
/** Parse result enum */
typedef CommandLineParser::ParseResultType ParseResultType;
typedef enum { OKPARAM, MISSINGMANDATORYPARAMETER,
MISSINGPARAMETERVALUE, WRONGPARAMETERVALUE,
INVALIDNUMBEROFVALUE, DEFAULT} ParamResultType;
/** Filter watcher list type */
typedef std::vector<StandardOneLineFilterWatcher *> WatcherListType;
/** Command Member */
typedef itk::MemberCommand< Self > AddProcessCommandType;
/** Load the application in several steps :
* - Load the paths
* - Load the application using the ApplicationRegistry
*/
bool Load();
/** same as Load method but set the expression before. */
bool Load(const std::vector<std::string> &vexp);
/** Launch the process, using the Execute application method
* The method will check if the user asked for help (looking at
* --help key) before loading parameter and launching process.
**/
bool Execute();
/** Launch the process, using the ExecuteAndWriteOutput application
* method
* The method will check if the user asked for help (looking at
* --help key) before loading parameter and launching process.
*/
bool ExecuteAndWriteOutput();
/** Gather the code process to do before Execute and
* ExecuteAndWriteOutput
* Returns false if a problem occurs, true otherwise.
*/
bool BeforeExecute();
/** Create and display the help of the application */
void DisplayHelp();
/** Performs specific action for testing environment */
void LoadTestEnv();
protected:
/** Constructor */
CommandLineLauncher();
/** \deprecated
* Constructor with exp argument is deprecated because class
* CommandLineLauncher does not have expression attribute anymore. Use instead the
* default constructor. It is included for backwards compatibility. */
CommandLineLauncher(const char * exp);
/** Destructor */
~CommandLineLauncher() ITK_OVERRIDE;
/** Load the executable path. It looks for the key --modulePath,
* extract and interpret as path the following strings.
*/
bool LoadPath();
/** Load the application calling the CreateApplication method of the
* ApplicationRegistry classes.
* Pay attention, the executable paths have to be loaded or set in
* the environment before calling the function.
*/
void LoadApplication();
/** Parse the user expression, extract the key and the associated
* string and set it as value of each corresponding application
* parameter.
*/
CommandLineLauncher::ParamResultType LoadParameters();
/** Create and display the help of the application */
std::string DisplayParameterHelp( const Parameter::Pointer & param,
const std::string paramKey );
/** Check if each key is unique in the expression. */
bool CheckUnicity();
/** Check if option contains at least one "-". */
bool CheckParametersPrefix();
/** Check if each key is valid for the application. */
bool CheckKeyValidity(std::string& key);
/** Display the output parameter (Role == RoleOutput) */
void DisplayOutputParameters();
/** Load the watchers for internal progress and writing progress report. */
void LinkWatchers(itk::Object * caller, const itk::EventObject & event);
/** Clear watcher list, deleting its pointers. */
void DeleteWatcherList();
private:
CommandLineLauncher(const CommandLineLauncher &); //purposely not implemented
void operator =(const CommandLineLauncher&); //purposely not implemented
std::string m_Path;
Application::Pointer m_Application;
//std::string m_Expression;
std::vector<std::string> m_VExpression;
CommandLineParser::Pointer m_Parser;
WatcherListType m_WatcherList;
itk::StdStreamLogOutput::Pointer m_LogOutput;
AddProcessCommandType::Pointer m_AddProcessCommand;
bool m_ReportProgress;
unsigned int m_MaxKeySize;
}; //end class
} // end namespace Wrapper
} //end namespace otb
#endif // otbWrapperCommandLineLauncher_h_
|