-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfthread.cpp
More file actions
182 lines (155 loc) · 5.97 KB
/
fthread.cpp
File metadata and controls
182 lines (155 loc) · 5.97 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
* International Chemical Identifier (InChI)
* Version 1
* Software version 1.07
* April 30, 2024
*
* The InChI library and programs are free software developed under the
* auspices of the International Union of Pure and Applied Chemistry (IUPAC).
* Originally developed at NIST.
* Modifications and additions by IUPAC and the InChI Trust.
* Some portions of code were developed/changed by external contributors
* (either contractor or volunteer) which are listed in the file
* 'External-contributors' included in this distribution.
*
* IUPAC/InChI-Trust Licence No.1.0 for the
* International Chemical Identifier (InChI)
* Copyright (C) IUPAC and InChI Trust
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the IUPAC/InChI Trust InChI Licence No.1.0,
* or any later version.
*
* Please note that this library is distributed WITHOUT ANY WARRANTIES
* whatsoever, whether expressed or implied.
* See the IUPAC/InChI-Trust InChI Licence No.1.0 for more details.
*
* You should have received a copy of the IUPAC/InChI Trust InChI
* Licence No. 1.0 with this library; if not, please e-mail:
*
* info@inchi-trust.org
*
*/
#include "stdafx.h"
#include "fthread.h"
#include "mainfrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
UINT ThreadFunction(void * data)
{
ThreadData * pThreadData = (ThreadData *) data;
if( pThreadData->pf )
pThreadData->pf(THREAD_STARTED);
int nRet =
ProcessOneStructureEx( pThreadData->pINChIParams->ic,
pThreadData->pINChIParams->pCG,
&pThreadData->pINChIParams->struct_data,
&pThreadData->pINChIParams->inp_parms,
pThreadData->pINChIParams->szTitle,
pThreadData->pINChIParams->pINChI,
pThreadData->pINChIParams->pINChI_Aux,
&pThreadData->pINChIParams->inp_file,
&pThreadData->pINChIParams->log_file,
&pThreadData->pINChIParams->output_file,
&pThreadData->pINChIParams->prb_file,
&pThreadData->pINChIParams->OrigAtData,
pThreadData->pINChIParams->PrepAtData,
pThreadData->pINChIParams->num_inp,
pThreadData->pINChIParams->strbuf,
0 );
if ( pThreadData->pINChIParams->output_file.f )
fflush( pThreadData->pINChIParams->output_file.f );
if ( pThreadData->pINChIParams->log_file.f )
fflush( pThreadData->pINChIParams->log_file.f );
if ( pThreadData->pINChIParams->prb_file.f )
fflush( pThreadData->pINChIParams->prb_file.f );
if( pThreadData->pf )
pThreadData->pf(THREAD_FINISHED);
return nRet;
}
/////////////////////////////////////////////////////////////////////////////
UINT ThreadBatchFunction(void * data)
{
CString msg;
int nRet, num_err;
unsigned long ulTotalProcessingTime;
void (*pf)(DrawData * pDrawData) = DRAWDATA;
DRAWDATA = NULL;
ThreadData * pThreadData = (ThreadData *) data;
if( pThreadData->pf )
pThreadData->pf(THREAD_STARTED);
ulTotalProcessingTime = 0;
num_err = 0;
while ( 1 ) {
// read one structure from input and display optionally it
CleanOneStructData_(pThreadData->pINChIParams);
nRet = GetOneStructure( pThreadData->pINChIParams->ic,
&pThreadData->pINChIParams->struct_data,
&pThreadData->pINChIParams->inp_parms,
pThreadData->pINChIParams->szTitle,
&pThreadData->pINChIParams->inp_file,
&pThreadData->pINChIParams->log_file,
&pThreadData->pINChIParams->output_file,
&pThreadData->pINChIParams->prb_file,
&pThreadData->pINChIParams->OrigAtData,
&pThreadData->pINChIParams->num_inp,
NULL);
switch ( nRet ) {
case _IS_FATAL:
num_err++;
case _IS_EOF:
goto exit_function;
case _IS_ERROR:
num_err++;
case _IS_SKIP:
continue;
}
/* create INChI for each connected component of the structure and optionally display them */
/* output INChI for the whole structure */
nRet = ProcessOneStructureEx( pThreadData->pINChIParams->ic,
pThreadData->pINChIParams->pCG,
&pThreadData->pINChIParams->struct_data,
&pThreadData->pINChIParams->inp_parms,
pThreadData->pINChIParams->szTitle,
pThreadData->pINChIParams->pINChI,
pThreadData->pINChIParams->pINChI_Aux,
&pThreadData->pINChIParams->inp_file,
&pThreadData->pINChIParams->log_file,
&pThreadData->pINChIParams->output_file,
&pThreadData->pINChIParams->prb_file,
&pThreadData->pINChIParams->OrigAtData,
pThreadData->pINChIParams->PrepAtData,
pThreadData->pINChIParams->num_inp,
pThreadData->pINChIParams->strbuf,
0 );
ulTotalProcessingTime += pThreadData->pINChIParams->struct_data.ulStructTime;
switch ( nRet ) {
case _IS_FATAL:
num_err++;
goto exit_function;
case _IS_ERROR:
num_err++;
continue;
}
msg.Format("Processing structure #%d",pThreadData->pINChIParams->num_inp);
SetStatusText(msg);
}
exit_function:
if ( pThreadData->pINChIParams->log_file.f )
{ // block
int hours, minutes, seconds, mseconds;
SplitTime( ulTotalProcessingTime, &hours, &minutes, &seconds, &mseconds );
inchi_ios_print( &pThreadData->pINChIParams->log_file, "Finished processing %d structure%s: %d error%s, processing time %d:%02d:%02d.%02d\n",
pThreadData->pINChIParams->num_inp, pThreadData->pINChIParams->num_inp==1?"":"s",
num_err, num_err==1?"":"s",
hours, minutes, seconds,mseconds/10);
}
DRAWDATA = pf;
if( pThreadData->pf )
pThreadData->pf(THREAD_FINISHED);
return nRet;
}