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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
# -*- coding: utf-8 -*-
"""
***************************************************************************
generate_application_descriptors.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Email : volayaf at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Victor Olaya'
__date__ = 'August 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
import os
import otbApplication
from qgis.core import QgsApplication
outputpath = unicode(QgsApplication.qgisSettingsDirPath()
+ 'python/plugins/processing/otb/description')
endl = os.linesep
def convertendl(s):
"""Convert a string for compatibility in txt dump."""
return s.replace('\n', '\\n')
def get_app_list():
blackList = ['TestApplication']
appNames = [app for app in
otbApplication.Registry.GetAvailableApplications() if app
not in blackList]
return appNames
def generate_all_app_descriptors():
appliIdx = 0
for appliname in get_app_list():
appliIdx = appliIdx + 1
generate_app_descriptor(appliname)
def generate_app_descriptor(appliname):
print appliname
appInstance = otbApplication.Registry.CreateApplication(appliname)
appInstance.UpdateParameters() # TODO need this ?
out = ''
# the application key
out += appliname + endl
# the executable
out += 'otbcli_' + appliname + endl
# long name
out += convertendl(appInstance.GetDocName()) + endl
# group
out += get_group(appInstance) + endl
for paramKey in appInstance.GetParametersKeys():
pdesc = generate_param_descriptor(appInstance, paramKey)
if len(pdesc) > 0:
out += pdesc + endl
with open(os.path.join(outputpath, appliname + '.txt'), 'w') as outfile:
outfile.write(out)
def generate_app_doc(appliname):
appInstance = otbApplication.Registry.CreateApplication(appliname)
appInstance.UpdateParameters() # TODO need this ?
html = appInstance.GetHtmlExample()
docpath = os.path.join(outputpath, 'doc')
if not os.path.exists(docpath):
os.makedirs(docpath)
with open(os.path.join(docpath, appliname + '.html'), 'w') as outfile:
outfile.write(html)
def get_group(appInstance):
tags = appInstance.GetDocTags()
sectionTags = [
'Image Manipulation',
'Vector Data Manipulation',
'Calibration',
'Geometry',
'Image Filtering',
'Feature Extraction',
'Stereo',
'Learning',
'Segmentation',
]
for sectionTag in sectionTags:
for tag in tags:
if tag == sectionTag:
return sectionTag
return 'Miscellaneous'
def generate_param_descriptor(appInstance, paramKey):
paramcreationfunction = {
otbApplication.ParameterType_Empty: generate_parameter_Empty,
otbApplication.ParameterType_Int: generate_parameter_Int,
otbApplication.ParameterType_Float: generate_parameter_Float,
otbApplication.ParameterType_String: generate_parameter_String,
otbApplication.ParameterType_StringList: generate_parameter_NOTHANDLED,
otbApplication.ParameterType_InputFilename: generate_parameter_InputFilename,
otbApplication.ParameterType_OutputFilename: generate_parameter_OutputFilename,
otbApplication.ParameterType_Directory: generate_parameter_Directory,
otbApplication.ParameterType_Choice: generate_parameter_Choice,
otbApplication.ParameterType_InputImage: generate_parameter_InputImage,
otbApplication.ParameterType_InputImageList: generate_parameter_InputImageList,
otbApplication.ParameterType_InputVectorData: generate_parameter_InputVectorData,
otbApplication.ParameterType_InputVectorDataList: generate_parameter_InputVectorDataList,
otbApplication.ParameterType_OutputImage: generate_parameter_OutputImage,
otbApplication.ParameterType_OutputVectorData: generate_parameter_OutputVectorData,
otbApplication.ParameterType_Radius: generate_parameter_Radius,
otbApplication.ParameterType_Group: generate_parameter_NOTHANDLED,
otbApplication.ParameterType_ListView: generate_parameter_NOTHANDLED,
otbApplication.ParameterType_ComplexInputImage: generate_parameter_ComplexInputImage,
otbApplication.ParameterType_ComplexOutputImage: generate_parameter_ComplexOutputImage,
otbApplication.ParameterType_RAM: generate_parameter_RAM,
}
return paramcreationfunction[appInstance.GetParameterType(paramKey)](
appInstance, paramKey)
def generate_parameter_Empty(appInstance, paramKey):
out = 'ParameterBoolean'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
if appInstance.IsParameterEnabled(paramKey):
out += 'True'
return out
def generate_parameter_Int(appInstance, paramKey):
out = 'ParameterNumber'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
out += 'None'
out += '|'
out += 'None'
out += '|'
defaultVal = '0'
try:
defaultVal = unicode(appInstance.GetParameterInt(paramKey))
except:
pass
out += defaultVal
return out
def generate_parameter_Float(appInstance, paramKey):
out = 'ParameterNumber'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
out += 'None'
out += '|'
out += 'None'
out += '|'
defaultVal = '0.0'
try:
defaultVal = unicode(appInstance.GetParameterFloat(paramKey))
except:
pass
out += defaultVal
return out
def generate_parameter_String(appInstance, paramKey):
out = 'ParameterString'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
defaultVal = ''
try:
defaultVal = unicode(appInstance.GetParameterString(paramKey))
except:
pass
out += defaultVal
return out
def generate_parameter_InputFilename(appInstance, paramKey):
out = 'ParameterFile'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
try:
defaultVal = unicode(appInstance.GetParameterString(paramKey))
out += '|' + defaultVal
except:
pass
return out
def generate_parameter_OutputFilename(appInstance, paramKey):
out = 'OutputFile'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
return out
def generate_parameter_Directory(appInstance, paramKey):
out = 'ParameterFile'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
try:
defaultVal = unicode(appInstance.GetParameterString(paramKey))
out += '|' + defaultVal
except:
pass
return out
def generate_parameter_Choice(appInstance, paramKey):
out = 'ParameterSelection'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
choices = ''
for choice in appInstance.GetChoiceKeys(paramKey):
choices += choice
choices += ';'
out += choices[:-1]
out += '|'
out += unicode(appInstance.GetParameterInt(paramKey))
return out
def generate_parameter_InputImage(appInstance, paramKey):
out = 'ParameterRaster'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
out += unicode(not appInstance.IsMandatory(paramKey))
return out
def generate_parameter_InputImageList(appInstance, paramKey):
out = 'ParameterMultipleInput'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
out += '3'
out += '|'
out += unicode(not appInstance.IsMandatory(paramKey))
return out
def generate_parameter_InputVectorData(appInstance, paramKey):
out = 'ParameterVector'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
out += '-1'
out += '|'
out += unicode(not appInstance.IsMandatory(paramKey))
return out
def generate_parameter_InputVectorDataList(appInstance, paramKey):
out = 'ParameterMultipleInput'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
out += '|'
out += '-1'
out += '|'
out += unicode(not appInstance.IsMandatory(paramKey))
return out
def generate_parameter_OutputImage(appInstance, paramKey):
out = 'OutputRaster'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
return out
def generate_parameter_NOTHANDLED(appInstance, paramKey):
return ''
def generate_parameter_OutputVectorData(appInstance, paramKey):
out = 'OutputVector'
out += '|'
out += '-' + paramKey
out += '|'
out += convertendl(appInstance.GetParameterName(paramKey))
return out
def generate_parameter_Radius(appInstance, paramKey):
return generate_parameter_Int(appInstance, paramKey)
def generate_parameter_ComplexInputImage(appInstance, paramKey):
return generate_parameter_InputImage(appInstance, paramKey)
def generate_parameter_ComplexOutputImage(appInstance, paramKey):
return generate_parameter_OutputImage(appInstance, paramKey)
def generate_parameter_RAM(appInstance, paramKey):
return generate_parameter_Int(appInstance, paramKey)
if __name__ == '__main__':
generate_all_app_descriptors()
|