Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xtpcpp
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
PAPPSO
xtpcpp
Commits
9f1d4baa
Commit
9f1d4baa
authored
6 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
checking tandem.exe installation
parent
d51b2b8c
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
src/core/tandem_run/tandembatchprocess.cpp
+24
-3
24 additions, 3 deletions
src/core/tandem_run/tandembatchprocess.cpp
src/core/tandem_run/tandembatchprocess.h
+1
-7
1 addition, 7 deletions
src/core/tandem_run/tandembatchprocess.h
with
25 additions
and
10 deletions
src/core/tandem_run/tandembatchprocess.cpp
+
24
−
3
View file @
9f1d4baa
...
...
@@ -23,9 +23,6 @@
* You should have received a copy of the GNU General Public License
* along with XTPcpp. If not, see <http://www.gnu.org/licenses/>.
*
* Contributors:
* Olivier Langella <olivier.langella@u-psud.fr> - initial API and
*implementation
******************************************************************************/
#include
"tandembatchprocess.h"
...
...
@@ -132,6 +129,28 @@ TandemBatchProcess::run()
{
qDebug
()
<<
"TandemBatchProcess::run begin "
<<
_tandem_run_batch
.
_preset_file
;
// check tandem path
QFileInfo
tandem_exe
(
_tandem_run_batch
.
_tandem_bin_path
);
if
(
!
tandem_exe
.
exists
())
{
// dir.path() returns the unique directory path
throw
pappso
::
PappsoException
(
QObject
::
tr
(
"X!Tandem software not found at %1.
\n
Please check the X!Tandem "
"installation on your computer and set tandem.exe path."
)
.
arg
(
tandem_exe
.
absoluteFilePath
()));
}
if
(
!
tandem_exe
.
isReadable
())
{
// dir.path() returns the unique directory path
throw
pappso
::
PappsoException
(
QObject
::
tr
(
"Please check permissions on !Tandem software found at %1."
)
.
arg
(
tandem_exe
.
absoluteFilePath
()));
}
QTemporaryDir
tmp_dir
;
if
(
!
tmp_dir
.
isValid
())
{
...
...
@@ -262,6 +281,8 @@ TandemBatchProcess::writeXmlInputFile(QXmlStreamWriter *p_out,
void
TandemBatchProcess
::
runOne
(
const
QString
&
mz_file
)
{
QTemporaryFile
xml_input_file
;
xml_input_file
.
setAutoRemove
(
true
);
if
(
xml_input_file
.
open
())
...
...
This diff is collapsed.
Click to expand it.
src/core/tandem_run/tandembatchprocess.h
+
1
−
7
View file @
9f1d4baa
...
...
@@ -23,13 +23,9 @@
* You should have received a copy of the GNU General Public License
* along with XTPcpp. If not, see <http://www.gnu.org/licenses/>.
*
* Contributors:
* Olivier Langella <olivier.langella@u-psud.fr> - initial API and
*implementation
******************************************************************************/
#ifndef TANDEMBATCHPROCESS_H
#define TANDEMBATCHPROCESS_H
#pragma once
#include
"tandemrunbatch.h"
#include
"../../utils/workmonitor.h"
#include
<QTemporaryFile>
...
...
@@ -65,5 +61,3 @@ class TandemBatchProcess
QTemporaryFile
_tmp_database_file
;
MainWindow
*
_p_main_window
=
nullptr
;
};
#endif // TANDEMBATCHPROCESS_H
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