138{
140
141
142
143
144
147 for(ii = 0; ii < wsiz; ++ii)
148 {
149 wordlist.pop_back();
150 }
151
152
153 const G4int NMAXLIN = 1000;
154 char ltemp[NMAXLIN];
155 for(;;)
156 {
157 (theLineNo[theCurrentFile])++;
158 for(ii = 0; ii < NMAXLIN; ++ii)
159 {
160 ltemp[ii] = ' ';
161 }
162 theFiles[theCurrentFile]->getline(ltemp, NMAXLIN);
163
164
165 for(ii = 0; ii < NMAXLIN; ++ii)
166 {
167 if(ltemp[ii] == '\0')
168 {
169 break;
170 }
171 }
172 if(ii == NMAXLIN - 1)
173 {
175 G4String ErrMessage = "Too long line. Please split it " +
176 G4String("putting a '\\' at the end!");
177 G4Exception(
"G4tgrFileIn::GetWordsInLine()",
"InvalidInput",
179 }
180
181
183 {
184 return 0;
185 }
186
187
188 std::istringstream istr_line(ltemp);
189
190
191
193 char* tt = ltemp;
194
195 G4String stemp(ltemp);
196 do
197 {
198 if(*tt != ' ' && *(tt) != '\0')
199 {
200 if(tt == ltemp)
201 {
202 ++NoWords;
203#ifdef G4VERBOSE
205 {
206 G4cout <<
"G4tgrFileIn::GetWordsInLine() - NoWords" << NoWords
208 }
209#endif
210 }
211 else if(*(tt - 1) == ' ' || *(tt - 1) == '\015' || *(tt - 1) == '\t')
212 {
213 ++NoWords;
214#ifdef G4VERBOSE
216 {
217 G4cout <<
"G4tgrFileIn::GetWordsInLine() - NoWords" << NoWords
219 }
220#endif
221 }
222 }
223 ++tt;
224 } while((*tt != '\0') && (stemp.length() != 0));
225
226 if(stemp.length() == 0)
227 {
228 NoWords = 0;
229 }
230
231
232 for(ii = 0; ii < NoWords; ++ii)
233 {
234 stemp = "";
235 istr_line >> stemp;
236 if(stemp.length() == 0)
237 {
238 break;
239 }
240 G4int comment = (
G4int)stemp.find(G4String(
"//"));
241#ifdef G4VERBOSE
243 {
244 G4cout <<
"!!!COMMENT" << comment << stemp.c_str() <<
G4endl;
245 }
246#endif
247 if(comment == 0)
248 {
249 break;
250 }
251 else if(comment > 0)
252 {
253 stemp = stemp.substr(0, comment);
254 wordlist.push_back(std::move(stemp));
255 break;
256 }
257 wordlist.push_back(std::move(stemp));
258 }
259
260
261
262
263
264
265
266
267
268
269 if(wordlist.size() != 0)
270 {
271 if((*(wordlist.end() - 1)).compare("\\") == 0)
272 {
273 wordlist.pop_back();
274 }
275 else
276 {
277 break;
278 }
279 }
280 }
281
282
283
284 std::vector<G4String> wordlist2;
285 G4String wordq = "";
286 unsigned int imerge = 0;
287 for(std::size_t jj = 0; jj < wordlist.size(); ++jj)
288 {
289 if(wordlist[jj].substr(0, 1) == "\"")
290 {
291 imerge = 1;
292 }
293 if(wordlist[jj][
G4int(wordlist[jj].size() - 1)] ==
'\"')
294 {
295 if(imerge != 1)
296 {
297 const G4String& err1 = " word with trailing '\"' while there is no";
298 const G4String& err2 = " previous word with leading '\"' in line ";
299 const G4String& err = err1 + err2;
301 }
302 imerge = 2;
303 }
304 if(imerge == 0)
305 {
306 wordlist2.push_back(wordlist[jj]);
307 }
308 else if(imerge == 1)
309 {
310 if(wordq == "")
311 {
312 wordq.append(wordlist[jj].substr(1, wordlist[jj].size()));
313 }
314 else
315 {
316 wordq.append(wordlist[jj].substr(0, wordlist[jj].size()));
317 }
318 wordq.append(" ");
319 }
320 else if(imerge == 2)
321 {
322 if(wordq == "")
323 {
324 wordq.append(wordlist[jj].substr(1, wordlist[jj].size() - 2));
325 }
326 else
327 {
328 wordq.append(wordlist[jj].substr(0, wordlist[jj].size() - 1));
329 }
330 wordlist2.push_back(wordq);
331 wordq = "";
332 imerge = 0;
333 }
334 }
335 if(imerge == 1)
336 {
337 const G4String& err1 = " word with leading '\"' in line while there is no";
338 const G4String& err2 = " later word with trailing '\"' in line ";
339 const G4String& err = err1 + err2;
341 }
342
343 wordlist = std::move(wordlist2);
344
345
346
347
348
349
350 if(wordlist[0] == "#include")
351 {
352 if(wordlist.size() != 2)
353 {
355 G4String ErrMessage =
356 "'#include' should have as second argument, the filename !";
357 G4Exception(
"G4tgrFileIn::GetWordsInLine()",
"InvalidInput",
359 }
360
361#ifdef G4VERBOSE
363 {
364 G4cout <<
" G4tgrFileIn::GetWordsInLine() - Include found !" <<
G4endl;
365 }
366#endif
369 }
370
371 return isok;
372}
void OpenNewFile(const char *filename)
G4int GetWordsInLine(std::vector< G4String > &wl)
void DumpException(const G4String &sent)