Salome HOME
Fix remote directories in file transfer and merge some tests
[tools/libbatch.git] / src / Core / Batch_Utils.cxx
1 //  Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 /*
23  * Batch_Utils.cxx
24  *
25  *  Created on: 30 jan. 2012
26  *  Author : Renaud BARATE - EDF R&D
27  */
28
29 #include <cstdlib>
30 #include <cstdio>
31 #include <unistd.h>
32 #include <iostream>
33 #include <fstream>
34
35 #include <Batch_config.h>
36 #include "Batch_Utils.hxx"
37 #include "Batch_RunTimeException.hxx"
38
39 #ifdef MSVC
40 #define popen _popen
41 #define pclose _pclose
42 #endif
43
44 using namespace std;
45 namespace Batch {
46
47 int Utils::getCommandOutput(const string & command, string & output)
48 {
49   // Reinitialize output
50   output = "";
51
52   // Call command
53   FILE * fp = popen(command.c_str(), "r");
54   if (fp == NULL) {
55     return -1;
56   }
57
58   // Read the output and store it
59   char buf[1024];
60   while (fgets(buf, sizeof(buf), fp) != NULL) {
61     output += buf;
62   }
63
64   // close and get status
65   int status = pclose(fp);
66   return status;
67 }
68
69 bool Utils::isAbsolutePath(const string & path)
70 {
71   if (path.size() == 0)
72     return false;
73   return path[0] == '/';
74 }
75
76 string Utils::createAndOpenTemporaryFile(const string & prefix, ofstream & outputStream)
77 {
78   if (outputStream.is_open())
79     outputStream.close();
80
81   // Find directory for temporary files
82   const char * tmpDirName = getenv("TEMP");
83   if (tmpDirName == NULL) tmpDirName = getenv("TMP");
84   if (tmpDirName == NULL) tmpDirName = getenv("TEMPDIR");
85   if (tmpDirName == NULL) tmpDirName = getenv("TMPDIR");
86   if (tmpDirName == NULL) tmpDirName = "/tmp";
87
88   string fileName = (string)tmpDirName + "/libbatch-" + prefix + "-XXXXXX";
89
90 #ifdef WIN32
91
92   char randstr[7];
93   srand(time(NULL));
94
95   do {
96     sprintf(randstr, "%06d", rand() % 1000000);
97     fileName.replace(fileName.size()-6, 6, randstr);
98   } while (EXISTS(fileName.c_str()));
99
100   // Open the file as binary to avoid problems with Windows newlines
101   outputStream.open(fileName.c_str(), ios_base::binary | ios_base::out);
102
103 #else
104
105   char * buf = new char[fileName.size()+1];
106   fileName.copy(buf, fileName.size());
107   buf[fileName.size()] = '\0';
108
109   int fd = mkstemp(buf);
110   if (fd == -1) {
111     delete[] buf;
112     throw RunTimeException(string("Can't create temporary file ") + fileName);
113   }
114   fileName = buf;
115   delete[] buf;
116
117   outputStream.open(fileName.c_str());
118   close(fd);  // Close the file descriptor so that the file is not opened twice
119
120 #endif
121
122   if (outputStream.fail())
123     throw RunTimeException(string("Can't open temporary file ") + fileName);
124
125   return fileName;
126 }
127
128 }