-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathPipelineRunner.cpp
More file actions
165 lines (144 loc) · 6.31 KB
/
PipelineRunner.cpp
File metadata and controls
165 lines (144 loc) · 6.31 KB
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
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice, this
* list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
*
* Neither the name of BlueQuartz Software, the US Air Force, nor the names of its
* contributors may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The code contained herein was partially funded by the followig contracts:
* United States Air Force Prime Contract FA8650-07-D-5800
* United States Air Force Prime Contract FA8650-10-D-5210
* United States Prime Contract Navy N00173-07-C-2068
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
// C Includes
#include <cassert>
#include <cstdlib>
// C++ Includes
#include <iostream>
// Qt Includes
#include <QtCore/QCommandLineOption>
#include <QtCore/QCommandLineParser>
#include <QtCore/QCoreApplication>
#include <QtCore/QDir>
#include <QtCore/QFile>
#include <QtCore/QSettings>
#include <QtCore/QString>
#include <QtCore/QtDebug>
// DREAM3DLib includes
#include "SIMPLib/Common/Constants.h"
#include "SIMPLib/FilterParameters/H5FilterParametersReader.h"
#include "SIMPLib/FilterParameters/JsonFilterParametersReader.h"
#include "SIMPLib/Filtering/FilterFactory.hpp"
#include "SIMPLib/Filtering/FilterManager.h"
#include "SIMPLib/Filtering/FilterPipeline.h"
#include "SIMPLib/Filtering/QMetaObjectUtilities.h"
#include "SIMPLib/Plugin/ISIMPLibPlugin.h"
#include "SIMPLib/Plugin/SIMPLibPluginLoader.h"
#include "SIMPLib/SIMPLib.h"
#include "SIMPLib/SIMPLibVersion.h"
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
int main(int argc, char* argv[])
{
// Instantiate the QCoreApplication that we need to get the current path and load plugins.
QCoreApplication* app = new QCoreApplication(argc, argv);
QCoreApplication::setOrganizationName("BlueQuartz Software");
QCoreApplication::setOrganizationDomain("bluequartz.net");
QCoreApplication::setApplicationName("PipelineRunner");
QCoreApplication::setApplicationVersion(SIMPLib::Version::Major() + "." + SIMPLib::Version::Minor() + "." + SIMPLib::Version::Patch());
QCommandLineParser parser;
QString str;
QTextStream ss(&str);
ss << "Pipeline Runner (" << SIMPLib::Version::Major() << "." << SIMPLib::Version::Minor() << "." << SIMPLib::Version::Patch()
<< "): This application will run a SIMPLView pipeline stored in a JSON formatted pipeline file. ";
parser.setApplicationDescription(str);
parser.addHelpOption();
parser.addVersionOption();
// A boolean option with a single name (-p)
QCommandLineOption pipelineFileArg(QStringList() << "p"
<< "pipeline",
"Pipeline File as a JSON file.", "file");
parser.addOption(pipelineFileArg);
// Process the actual command line arguments given by the user
parser.process(*app);
QString pipelineFile = parser.value(pipelineFileArg);
std::cout << "PipelineRunner Starting. " << std::endl;
std::cout << " " << SIMPLib::Version::PackageComplete().toStdString() << std::endl;
// Register all the filters including trying to load those from Plugins
FilterManager* fm = FilterManager::Instance();
SIMPLibPluginLoader::LoadPluginFilters(fm);
QMetaObjectUtilities::RegisterMetaTypes();
int err = 0;
// Sanity Check the filepath to make sure it exists, Report an error and bail if it does not
QFileInfo fi(pipelineFile);
if(!fi.exists())
{
std::cout << "The input file '" << pipelineFile.toStdString() << "' does not exist" << std::endl;
return EXIT_FAILURE;
}
// Use the static method to read the Pipeline file and return a Filter Pipeline
QString ext = fi.suffix();
FilterPipeline::Pointer pipeline;
if(ext == "dream3d")
{
H5FilterParametersReader::Pointer dream3dReader = H5FilterParametersReader::New();
pipeline = dream3dReader->readPipelineFromFile(pipelineFile);
}
else if(ext == "json")
{
JsonFilterParametersReader::Pointer jsonReader = JsonFilterParametersReader::New();
pipeline = jsonReader->readPipelineFromFile(pipelineFile);
}
else
{
std::cout << "Unsupported pipeline file type '" << ext.toStdString() << "'. Exiting now." << std::endl;
return EXIT_FAILURE;
}
if(nullptr == pipeline.get())
{
std::cout << "An error occurred trying to read the pipeline file. Exiting now." << std::endl;
return EXIT_FAILURE;
}
std::cout << "Pipeline Count: " << pipeline->size() << std::endl;
Observer obs; // Create an Observer to report errors/progress from the executing pipeline
pipeline->addMessageReceiver(&obs);
// Preflight the pipeline
err = pipeline->preflightPipeline();
if(err < 0)
{
std::cout << "Errors preflighting the pipeline. Exiting Now." << std::endl;
return EXIT_FAILURE;
}
// Now actually execute the pipeline
pipeline->execute();
err = pipeline->getErrorCode();
if(err < 0)
{
std::cout << "Error Condition of Pipeline: " << err << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}