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 284 285 286 287 288 289 290 291 292 293 294
|
/*****************************************************************************\
* Filename : properties.hh
* Author : Emmanouils Stafilarakis
*
* Copyright: ©Stafilarakis
*
* Description: Declaration of the Properties class.
*
*
* Date | Author | Changes
*------------|-----------------------|------------------------------------------
* 26.09.2001 | Stafilarakis | creations of the class
* 19.05.2003 | Stanke | recursively include other property files
* 30.07.2004 | Stanke | added hasProperty
* 16.07.2008 | Keller | made it a static class
\******************************************************************************/
#ifndef _PROPERTIES_HH
#define _PROPERTIES_HH
// project includes
#include "types.hh"
// standard C/C++ includes
#include <map>
#ifdef __APPLE__
#include <mach-o/dyld.h> // for _NSGetExecutablePath
#endif
#define NUMPARNAMES 254
#define GENEMODEL_KEY "genemodel"
#define NONCODING_KEY "nc"
#define SINGLESTRAND_KEY "singlestrand"
#define SPECIES_KEY "species"
#define CFGPATH_KEY "AUGUSTUS_CONFIG_PATH"
#define INPUTFILE_KEY "queryfile"
#define SPECIESDIR_KEY "speciesdir"
#define UTR_KEY "UTR"
#define TRANSFILE_KEY "transfile"
#define EXTRINSIC_KEY "extrinsic"
#define EXTRFILE_KEY "extrinsicCfgFile"
#define EXTERNAL_KEY "optCfgFile"
#define HINTSFILE_KEY "hintsfile"
#define ALN_KEY "alnfile"
#define TREE_KEY "treefile"
#define DB_KEY "dbaccess"
#define SEQ_KEY "speciesfilenames"
#define CODONALN_KEY "codonAlignmentFile"
#define OVLPLENFILE "ovlp_len.pbl"
/**
* The base exception class for Properties
*
* author Emmanouil Stafilarakis
*/
struct PropertiesError : public ProjectError{
/**
* Constructor
*
* @param msg The describing error message.
*/
PropertiesError( string msg ) : ProjectError( msg ) { }
};
struct KeyNotFoundError : public PropertiesError{
KeyNotFoundError( string key ) :
PropertiesError("Properties::getProperty(): no such key \"" + key + "\".")
{}
};
struct ValueFormatError : public PropertiesError{
ValueFormatError( string key, string value, string type ) :
PropertiesError( "Properties::getProperty(): cannot convert value \""
+ value + "\" of key \"" + key + "\" into " + type + "." )
{}
};
struct HelpException {
string message;
HelpException(string s) : message(s) {}
}; // no error
/**
* The Properties class.
*
* This class is provided to pass several properties to all
* objects in the running programm.
*
* The properties can be given to the Properties object by
* the programm with the <i>addProperty</i> method.
*
* The Properties object can also parse a file with the
* <i>readFile</i> method and also parse the commandline arguments
* with the <i>init</i> method.
*
* If an adding property already exists, the old value will be
* overwriten with the new value. Therefore, if the commandline
* arguments should be prefered, the method <i>init</i> should be
* called after the method <i>readFile</i>!
*
* Example:
* <pre><pre style="background-color:white; color:blue; padding:10px;">
int main( int argc, char* argv[] ){
string configfile;
Properties props;
....
try{
props.readFile( configfile ); // first parse the config file
props.init( argc, argv ); // then the commandline options
....
}
catch( PropertiesError& err ){
....
}
</pre></pre>
*
* A class can get the properties with the <i>get<b>TYPE</b>Property</i>
* methods, where TYPE is one of Int, Double, Bool or String.
*
* The format of the properties file is line based. Each line contains
* the property name and the property value, separated by whitespaces.
* Comments begin with a '#' and end an the end of line.
*
* Example: Listing of a properties file
* <pre><pre style="background-color:white; color:blue; padding:10px;">
# For the GBProcessor object
#---------------------------
/GBProcessor/file fly.txt # The db file.
# For the EHMMTraining class
#----------------------------
/EHMMTraining/statecount 3
/EHMMTraining/state00 igenicmodel.so
/EHMMTraining/state01 exonmodel.so
/EHMMTraining/state02 intronmodel.so
# For the IGenicModel class
#---------------------------
/IGenicModel/outfile igenic_out.pbl
/IGenicModel/c 1
/IGenicModel/k 5
# For the ExonModel class
#---------------------------
/ExonModel/outfile exon_out.pbl
/ExonModel/c 1
/ExonModel/k 5
# For the IntronModel class
#---------------------------
/IntronModel/outfile intron_out.pbl
/IntronModel/c 1
/IntronModel/d 350
/IntronModel/e 20
/IntronModel/k 5
/IntronModel/h 5
</pre></pre>
*
* author Emmanouil Stafilarakis
*/
class Properties{
public:
/**
*
*
* @author Emmanouil Stafilarakis
* @version 0.1
*/
/**
* Read all properties from the given file.
*
* @param file The file with the programm properties
* @exception PropertiesError
*/
static void readFile ( string file ) throw( PropertiesError );
/**
* @memo Parse the commandline arguments.
*
* @doc The format of the commandline arguments should be
* <b>--/CLASS/PROPERTY=VALUE</b>.<br>So, the class CLASS
* can set the value VALUE to its property PROPERTY.
*
* @param argc The count of the arguments.
* @param argv A NULL terminated field with the arguments.
*/
static void init ( int argc, char* argv[] );
/**
*
*/
static Boolean hasProperty( string name);
/**
* @doc Add a new property to the Properties object.
*
* @param name The name of the property.
* @param value The string value of the property.
*/
static void addProperty ( string name, string value );
/**
*
*/
static Integer getIntProperty ( string name );
/**
*
*/
static Double getDoubleProperty ( string name );
/**
*
*/
static double getdoubleProperty ( string name );
/**
*
*/
static Boolean getBoolProperty ( string name );
/**
*
*/
static const char* getProperty ( string name );
/**
*
*/
static const char* getProperty(string name, int index);
/**
*
*/
static string getConfigFilename(string name) {
if (name != "")
return properties[CFGPATH_KEY] + getProperty(name);
else
return properties[CFGPATH_KEY];
}
// assign value only if key is present
static void assignProperty(string name, Integer& target) {
try {
target = getIntProperty(name);
} catch (KeyNotFoundError e) {}
}
static void assignProperty(string name, unsigned& target) {
try {
target = (unsigned) getIntProperty(name);
} catch (KeyNotFoundError e) {}
}
static void assignProperty(string name, Double& target) {
try {
target = getDoubleProperty(name);
} catch (KeyNotFoundError e) {}
}
static void assignProperty(string name, double& target) {
try {
target = getdoubleProperty(name);
} catch (KeyNotFoundError e) {}
}
static void assignProperty(string name, Boolean& target) {
try {
target = getBoolProperty(name);
} catch (KeyNotFoundError e) {}
}
static void assignProperty(string name, string& target) {
try {
target = getProperty(name);
} catch (KeyNotFoundError e) {}
}
static void assignProperty(string name, const char*& target) {
try {
target = getProperty(name);
} catch (KeyNotFoundError e) {}
}
private:
Properties() {} // do not construct objects!
/**
*
*/
static void readLine (istream& strm );
private:
static map<string, string> properties;
static const char* parameternames[NUMPARNAMES];
};
/*
* Find the path to the executable, e.g. /opt/augustus/bin/augustus, /home/mario/augustus/bin/augustus
* code contributed by Bastien Chevreux
*/
string findLocationOfSelfBinary();
#endif // _PROPERTIES_HH
|