Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main Repositories
otb
Commits
f82c2ec9
Commit
f82c2ec9
authored
11 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
commented out application info from otgui messages window to reduce noise
parent
ceb23340
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/ApplicationEngine/otbWrapperInputProcessXMLParameter.cxx
+21
-11
21 additions, 11 deletions
.../ApplicationEngine/otbWrapperInputProcessXMLParameter.cxx
Code/ApplicationEngine/otbWrapperInputProcessXMLParameter.h
+3
-0
3 additions, 0 deletions
Code/ApplicationEngine/otbWrapperInputProcessXMLParameter.h
with
24 additions
and
11 deletions
Code/ApplicationEngine/otbWrapperInputProcessXMLParameter.cxx
+
21
−
11
View file @
f82c2ec9
...
...
@@ -108,6 +108,11 @@ const std::string InputProcessXMLParameter::GetChildNodeTextOf(TiXmlElement *par
return
value
;
}
void
InputProcessXMLParameter
::
otbAppLogInfo
(
Application
::
Pointer
app
,
std
::
string
info
)
{
app
->
GetLogger
()
->
Write
(
itk
::
LoggerBase
::
INFO
,
info
);
}
int
InputProcessXMLParameter
::
Read
(
Application
::
Pointer
app
)
...
...
@@ -134,8 +139,12 @@ InputProcessXMLParameter::Read(Application::Pointer app)
TiXmlElement
*
n_OTB
;
n_OTB
=
handle
.
FirstChild
(
"OTB"
).
Element
();
if
(
!
n_OTB
)
itkExceptionMacro
(
<<
"Input XML file "
<<
this
->
GetFileName
()
<<
" is invalid."
);
{
std
::
string
info
=
"Input XML file "
+
std
::
string
(
this
->
GetFileName
())
+
" is invalid."
;
this
->
otbAppLogInfo
(
app
,
info
);
}
std
::
string
otb_Version
,
otb_Build
,
otb_Platform
;
otb_Version
=
GetChildNodeTextOf
(
n_OTB
,
"version"
);
...
...
@@ -158,19 +167,20 @@ InputProcessXMLParameter::Read(Application::Pointer app)
TiXmlElement
*
n_Tags
=
n_Doc
->
FirstChildElement
(
"tags"
);
std
::
vector
<
std
::
string
>
doc_TagList
;
//
GetChildNodeTextOf(n_Tags, "tag");
//GetChildNodeTextOf(n_Tags, "tag");
/*
app->otbAppLogINFO(<< "Application Name : " << app_Name );
otbAppLogINFO(<< "Description : " << app_Descr )
otbAppLogINFO(<< "OTB Version : " << otb_Version);
otbAppLogINFO(<< "Operating system : " << otb_Platform);
FIXME removed temporarily
this->otbAppLogInfo(app, "Application Name : " + app_Name);
this->otbAppLogInfo(app, "Description : " + app_Descr);
this->otbAppLogInfo(app, "OTB Version : " + otb_Version);
this->otbAppLogInfo(app, "Operating system : " + otb_Platform);
otbAppLogI
NFO(<<
"Doc Name : "
<<
doc_Name
);
otbAppLogI
NFO(<<
"Doc Description : "
<<
doc_Descr
)
otbAppLogI
NFO(<<
"Author : "
<<
doc_Author);
otbAppLogI
NFO(<<
"Limitation : "
<<
doc_Limitation);
otbAppLogI
NFO(<<
"Related : "
<<
doc_Related);
this->
otbAppLogI
nfo(app,
"Doc Name : "
+
doc_Name);
this->
otbAppLogI
nfo(app,
"Doc Description : "
+
doc_Descr)
;
this->
otbAppLogI
nfo(app,
"Author : "
+
doc_Author);
this->
otbAppLogI
nfo(app,
"Limitation : "
+
doc_Limitation);
this->
otbAppLogI
nfo(app,
"Related : "
+
doc_Related);
*/
if
(
app
->
GetName
()
!=
app_Name
)
...
...
This diff is collapsed.
Click to expand it.
Code/ApplicationEngine/otbWrapperInputProcessXMLParameter.h
+
3
−
0
View file @
f82c2ec9
...
...
@@ -2,6 +2,7 @@
#define __otbWrapperInputProcessXMLParameter_h
#include
"otbWrapperApplication.h"
#include
"otbTinyXML.h"
#include
<sstream>
namespace
otb
{
...
...
@@ -61,6 +62,8 @@ public:
ParameterType
GetParameterType
(
const
Parameter
*
param
)
const
;
int
Read
(
Application
::
Pointer
application
);
void
otbAppLogInfo
(
Application
::
Pointer
app
,
std
::
string
info
);
protected
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment