]> Creatis software - gdcm.git/blob - src/gdcmUtil.cxx
BUG: This solve the infinite loop on gcc-64bits
[gdcm.git] / src / gdcmUtil.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmUtil.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/12/05 21:46:44 $
7   Version:   $Revision: 1.69 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmUtil.h"
20 #include "gdcmDebug.h"
21
22 // For GetCurrentDate, GetCurrentTime
23 #include <time.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26
27 #include <stdarg.h>  //only included in implementation file
28 #include <stdio.h>   //only included in implementation file
29
30 #if defined _MSC_VER
31    #include <winsock.h>  // for gethostname & gethostbyname
32    #undef GetCurrentTime
33 #else
34 #ifndef __BORLANDC__
35    #include <unistd.h>  // for gethostname
36    #include <netdb.h>   // for gethostbyname
37 #endif
38 #endif
39
40 namespace gdcm 
41 {
42 /**
43  * \ingroup Globals
44  * \brief Provide a better 'c++' approach for sprintf
45  * For example c code is:
46  * sprintf(trash, "%04x|%04x", group , element);
47  *
48  * c++ is 
49  * std::ostringstream buf;
50  * buf << std::right << std::setw(4) << std::setfill('0') << std::hex
51  *     << group << "|" << std::right << std::setw(4) << std::setfill('0') 
52  *     << std::hex <<  element;
53  * buf.str();
54  */
55
56 std::string Util::Format(const char* format, ...)
57 {
58    char buffer[2048];
59    va_list args;
60    va_start(args, format);
61    vsprintf(buffer, format, args);  //might be a security flaw
62    va_end(args); // Each invocation of va_start should be matched 
63                  // by a corresponding invocation of va_end
64                  // args is then 'undefined'
65    return buffer;
66 }
67
68
69 /**
70  * \ingroup Globals
71  * \brief Because not available in C++ (?)
72  */
73 void Util::Tokenize (const std::string& str,
74                      std::vector<std::string>& tokens,
75                      const std::string& delimiters)
76 {
77    std::string::size_type lastPos = str.find_first_not_of(delimiters,0);
78    std::string::size_type pos     = str.find_first_of    (delimiters,lastPos);
79    while (std::string::npos != pos || std::string::npos != lastPos)
80    {
81       tokens.push_back(str.substr(lastPos, pos - lastPos));
82       lastPos = str.find_first_not_of(delimiters, pos);
83       pos     = str.find_first_of    (delimiters, lastPos);
84    }
85 }
86
87 /**
88  * \ingroup Globals
89  * \brief Because not available in C++ (?)
90  *        Counts the number of occurences of a substring within a string
91  */
92  
93 int Util::CountSubstring (const std::string& str,
94                           const std::string& subStr)
95 {
96    int count = 0;   // counts how many times it appears
97    std::string::size_type x = 0;       // The index position in the string
98
99    do
100    {
101       x = str.find(subStr,x);       // Find the substring
102       if (x != std::string::npos)   // If present
103       {
104          count++;                  // increase the count
105          x += subStr.length();     // Skip this word
106       }
107    }
108    while (x != std::string::npos);  // Carry on until not present
109
110    return count;
111 }
112
113 /**
114  * \ingroup Globals
115  * \brief  Weed out a string from the non-printable characters (in order
116  *         to avoid corrupting the terminal of invocation when printing)
117  * @param s string to remove non printable characters from
118  */
119 std::string Util::CreateCleanString(std::string const & s)
120 {
121    std::string str = s;
122
123    for(unsigned int i=0; i<str.size(); i++)
124    {
125       if(!isprint((unsigned char)str[i]))
126       {
127          str[i] = '.';
128       }
129    }
130
131    if(str.size() > 0)
132    {
133       if(!isprint((unsigned char)s[str.size()-1]))
134       {
135          if(s[str.size()-1] == 0)
136          {
137             str[str.size()-1] = ' ';
138          }
139       }
140    }
141
142    return str;
143 }
144
145 /**
146  * \ingroup Globals
147  * \brief   Add a SEPARATOR to the end of the name is necessary
148  * @param   pathname file/directory name to normalize 
149  */
150 std::string Util::NormalizePath(std::string const & pathname)
151 {
152    const char SEPARATOR_X      = '/';
153    const char SEPARATOR_WIN    = '\\';
154    const std::string SEPARATOR = "/";
155    std::string name = pathname;
156    int size = name.size();
157
158    if( name[size-1] != SEPARATOR_X && name[size-1] != SEPARATOR_WIN )
159    {
160       name += SEPARATOR;
161    }
162    return name;
163 }
164
165 /**
166  * \ingroup Globals
167  * \brief   Get the (directory) path from a full path file name
168  * @param   fullName file/directory name to extract Path from
169  */
170 std::string Util::GetPath(std::string const & fullName)
171 {
172    std::string res = fullName;
173    int pos1 = res.rfind("/");
174    int pos2 = res.rfind("\\");
175    if( pos1 > pos2)
176    {
177       res.resize(pos1);
178    }
179    else
180    {
181       res.resize(pos2);
182    }
183
184    return res;
185 }
186
187 /**
188  * \ingroup Util
189  * \brief   Get the (last) name of a full path file name
190  * @param   fullName file/directory name to extract end name from
191  */
192 std::string Util::GetName(std::string const & fullName)
193 {   
194   std::string filename = fullName;
195
196   std::string::size_type slash_pos = filename.rfind("/");
197   std::string::size_type backslash_pos = filename.rfind("\\");
198   slash_pos = slash_pos > backslash_pos ? slash_pos : backslash_pos;
199   if(slash_pos != std::string::npos)
200     {
201     return filename.substr(slash_pos + 1);
202     }
203   else
204     {
205     return filename;
206     }
207
208
209 /**
210  * \ingroup Util
211  * \brief   Get the current date of the system in a dicom string
212  */
213 std::string Util::GetCurrentDate()
214 {
215     char tmp[512];
216     time_t tloc;
217     time (&tloc);    
218     strftime(tmp,512,"%Y%m%d", localtime(&tloc) );
219     return tmp;
220 }
221
222 /**
223  * \ingroup Util
224  * \brief   Get the current time of the system in a dicom string
225  */
226 std::string Util::GetCurrentTime()
227 {
228     char tmp[512];
229     time_t tloc;
230     time (&tloc);
231     strftime(tmp,512,"%H%M%S", localtime(&tloc) );
232     return tmp;  
233 }
234
235 /**
236  * \brief Create a /DICOM/ string:
237  * It should a of even length (no odd length ever)
238  * It can contain as many (if you are reading this from your
239  * editor the following character is is backslash followed by zero
240  * that needed to be escaped with an extra backslash for doxygen) \\0
241  * as you want.
242  */
243 std::string Util::DicomString(const char* s, size_t l)
244 {
245    std::string r(s, s+l);
246    assert( !(r.size() % 2) ); // == basically 'l' is even
247    return r;
248 }
249
250 /**
251  * \ingroup Util
252  * \brief Create a /DICOM/ string:
253  * It should a of even lenght (no odd length ever)
254  * It can contain as many (if you are reading this from your
255  * editor the following character is is backslash followed by zero
256  * that needed to be escaped with an extra backslash for doxygen) \\0
257  * as you want.
258  * This function is similar to DicomString(const char*), 
259  * except it doesn't take a lenght. 
260  * It only pad with a null character if length is odd
261  */
262 std::string Util::DicomString(const char* s)
263 {
264    size_t l = strlen(s);
265    if( l%2 )
266    {
267       l++;
268    }
269    std::string r(s, s+l);
270    assert( !(r.size() % 2) );
271    return r;
272 }
273
274 /**
275  * \ingroup Util
276  * \brief Safely compare two Dicom String:
277  *        - Both string should be of even lenght
278  *        - We allow padding of even lenght string by either a null 
279  *          character of a space
280  */
281 bool Util::DicomStringEqual(const std::string& s1, const char *s2)
282 {
283   // s2 is the string from the DICOM reference: 'MONOCHROME1'
284   std::string s1_even = s1; //Never change input parameter
285   std::string s2_even = DicomString( s2 );
286   if( s1_even[s1_even.size()-1] == ' ')
287   {
288     s1_even[s1_even.size()-1] = '\0'; //replace space character by null
289   }
290   return s1_even == s2_even;
291 }
292
293 /**
294  * \ingroup Util
295  * \brief   Return the IP adress of the machine writting the DICOM image
296  */
297 std::string Util::GetIPAddress()
298 {
299   // This is a rip from http://www.codeguru.com/Cpp/I-N/internet/network/article.php/c3445/
300 #ifndef HOST_NAME_MAX
301   // SUSv2 guarantees that `Host names are limited to 255 bytes'.
302   // POSIX 1003.1-2001 guarantees that `Host names (not including the
303   // terminating NUL) are limited to HOST_NAME_MAX bytes'.
304 #  define HOST_NAME_MAX 255
305   // In this case we should maybe check the string was not truncated.
306   // But I don't known how to check that...
307 #endif //HOST_NAME_MAX
308
309   std::string str;
310   char szHostName[HOST_NAME_MAX+1];
311   int r = gethostname(szHostName, HOST_NAME_MAX);
312
313   if( r == 0 )
314   {
315     // Get host adresses
316     struct hostent * pHost = gethostbyname(szHostName);
317
318     for( int i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
319     {
320       for( int j = 0; j<pHost->h_length; j++ )
321       {
322         if( j > 0 ) str += ".";
323
324         str += Util::Format("%u", 
325             (unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
326       }
327       // str now contains one local IP address 
328     }
329   }
330   // If an error occur r == -1
331   // Most of the time it will return 127.0.0.1...
332   return str;
333 }
334
335 /**
336  * \ingroup Util
337  * \brief Creates a new UID. As stipulate in the DICOM ref
338  *        each time a DICOM image is create it should have 
339  *        a unique identifier (URI)
340  */
341 std::string Util::CreateUniqueUID(const std::string& root)
342 {
343   // The code works as follow:
344   // echo "gdcm" | od -b
345   // 0000000 147 144 143 155 012
346   // Therefore we return
347   // radical + 147.144.143.155 + IP + time()
348   std::string radical = root;
349   if( !root.size() ) //anything better ?
350   {
351     radical = "0.0."; // Is this really usefull ?
352   }
353   // else
354   // A root was specified use it to forge our new UID:
355   radical += "147.144.143.155"; // gdcm
356   radical += ".";
357   radical += Util::GetIPAddress();
358   radical += ".";
359   radical += Util::GetCurrentDate();
360   radical += ".";
361   radical += Util::GetCurrentTime();
362
363   return radical;
364 }
365
366 template <class T>
367 std::ostream& binary_write(std::ostream& os, const T& val)
368 {
369     return os.write(reinterpret_cast<const char*>(&val), sizeof val);
370 }
371
372 std::ostream& binary_write(std::ostream& os, const uint16_t& val)
373 {
374 #ifdef GDCM_WORDS_BIGENDIAN
375     uint16_t swap;
376     swap = ((( val << 8 ) & 0x0ff00 ) | (( val >> 8 ) & 0x00ff ) );
377     return os.write(reinterpret_cast<const char*>(&swap), 2);
378 #else
379     return os.write(reinterpret_cast<const char*>(&val), 2);
380 #endif //GDCM_WORDS_BIGENDIAN
381 }
382
383 std::ostream& binary_write(std::ostream& os, const uint32_t& val)
384 {
385 #ifdef GDCM_WORDS_BIGENDIAN
386     uint32_t swap;
387     swap = ( ((val<<24) & 0xff000000) | ((val<<8)  & 0x00ff0000) | 
388              ((val>>8)  & 0x0000ff00) | ((val>>24) & 0x000000ff) );
389     return os.write(reinterpret_cast<const char*>(&swap), 4);
390 #else
391     return os.write(reinterpret_cast<const char*>(&val), 4);
392 #endif //GDCM_WORDS_BIGENDIAN
393 }
394
395 std::ostream& binary_write(std::ostream& os, const char* val)
396 {
397     return os.write(val, strlen(val));
398 }
399
400 std::ostream& binary_write(std::ostream& os, std::string const & val)
401 {
402     return os.write(val.c_str(), val.size());
403 }
404
405 } // end namespace gdcm
406