]> Creatis software - gdcm.git/blob - src/gdcmUtil.cxx
At least with my gcc4.0.1, unfound char results in pos=4294967295 ...
[gdcm.git] / src / gdcmUtil.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmUtil.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/12/21 14:41:34 $
7   Version:   $Revision: 1.180 $
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 #include <iostream>
23 #include <stdarg.h> // for va_list
24
25 // For GetCurrentDate, GetCurrentTime
26 #include <time.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29
30 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
31 #include <sys/timeb.h>
32 #else
33 #include <sys/time.h>
34 #endif
35
36 #include <stdarg.h>  //only included in implementation file
37 #include <stdio.h>   //only included in implementation file
38
39 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
40    #include <winsock.h>  // for gethostname and gethostbyname and GetTickCount...
41 // I haven't find a way to determine wether we need to under GetCurrentTime or not...
42 // I think the best solution would simply to get rid of this problematic function
43 // and use a 'less' common name...
44 #if !defined(__BORLANDC__) || (__BORLANDC__ >= 0x0560)
45    #undef GetCurrentTime
46 #endif
47 #else
48    #include <unistd.h>  // for gethostname
49    #include <netdb.h>   // for gethostbyname
50 #endif
51
52 // For GetMACAddress
53 #ifdef _WIN32
54    #include <snmp.h>
55    #include <conio.h>
56 #else
57    #include <unistd.h>
58    #include <stdlib.h>
59    #include <string.h>
60    #include <sys/types.h>
61 #endif
62
63 #ifdef CMAKE_HAVE_SYS_IOCTL_H
64    #include <sys/ioctl.h>  // For SIOCGIFCONF on Linux
65 #endif
66 #ifdef CMAKE_HAVE_SYS_SOCKET_H
67    #include <sys/socket.h>
68 #endif
69 #ifdef CMAKE_HAVE_SYS_SOCKIO_H
70    #include <sys/sockio.h>  // For SIOCGIFCONF on SunOS
71 #endif
72 #ifdef CMAKE_HAVE_NET_IF_H
73    #include <net/if.h>
74 #endif
75 #ifdef CMAKE_HAVE_NETINET_IN_H
76    #include <netinet/in.h>   //For IPPROTO_IP
77 #endif
78 #ifdef CMAKE_HAVE_NET_IF_DL_H
79    #include <net/if_dl.h>
80 #endif
81 #if defined(CMAKE_HAVE_NET_IF_ARP_H) && defined(__sun)
82    // This is absolutely necessary on SunOS
83    #include <net/if_arp.h>
84 #endif
85
86 // For GetCurrentThreadID()
87 #ifdef __linux__
88    #include <sys/types.h>
89    #include <linux/unistd.h>
90 #endif
91 #ifdef __sun
92    #include <thread.h>
93 #endif
94
95 namespace gdcm 
96 {
97 //-------------------------------------------------------------------------
98 const std::string Util::GDCM_UID = "1.2.826.0.1.3680043.2.1143";
99 std::string Util::RootUID        = GDCM_UID;
100 /*
101  * File Meta Information Version (0002,0001) shall contain a two byte OB 
102  * value consisting of a 0x00 byte, followed by 0x01 byte, and not the 
103  * value 0x0001 encoded as a little endian 16 bit short value, 
104  * which would be the other way around...
105  */
106 const uint16_t Util::FMIV = 0x0100;
107 uint8_t *Util::FileMetaInformationVersion = (uint8_t *)&FMIV;
108 std::string Util::GDCM_MAC_ADRESS = GetMACAddress();
109
110 //-------------------------------------------------------------------------
111 // Public
112 /**
113  * \brief Provide a better 'c++' approach for sprintf
114  * For example c code is:
115  * char result[2048]; // hope 2048 is enough
116  * sprintf(result, "%04x|%04x", group , elem);
117  *
118  * c++ code is 
119  * std::ostringstream buf;
120  * buf << std::right << std::setw(4) << std::setfill('0') << std::hex
121  *     << group << "|" << std::right << std::setw(4) << std::setfill('0') 
122  *     << std::hex <<  elem;
123  * buf.str();
124  *
125  * gdcm style code is
126  * string result;
127  * result = gdcm::Util::Format("%04x|%04x", group , elem);
128  */
129 std::string Util::Format(const char *format, ...)
130 {
131    char buffer[2048]; // hope 2048 is enough
132    va_list args;
133    va_start(args, format);
134    vsprintf(buffer, format, args);  //might be a security flaw
135    va_end(args); // Each invocation of va_start should be matched 
136                  // by a corresponding invocation of va_end
137                  // args is then 'undefined'
138    return buffer;
139 }
140
141
142 /**
143  * \brief Because not available in C++ (?)
144  * @param str string to check
145  * @param tokens std::vector to receive the tokenized substrings
146  * @param delimiters string containing the character delimitors
147  
148  */
149 void Util::Tokenize (const std::string &str,
150                      std::vector<std::string> &tokens,
151                      const std::string &delimiters)
152 {
153    std::string::size_type lastPos = str.find_first_not_of(delimiters,0);
154    std::string::size_type pos     = str.find_first_of    (delimiters,lastPos);
155    while (std::string::npos != pos || std::string::npos != lastPos)
156    {
157       tokens.push_back(str.substr(lastPos, pos - lastPos));
158       lastPos = str.find_first_not_of(delimiters, pos);
159       pos     = str.find_first_of    (delimiters, lastPos);
160    }
161 }
162
163 /**
164  * \brief Because not available in C++ (?)
165  *        Counts the number of occurences of a substring within a string
166  * @param str string to check
167  * @param subStr substring to count
168  */
169  
170 int Util::CountSubstring (const std::string &str,
171                           const std::string &subStr)
172 {
173    int count = 0;                 // counts how many times it appears
174    std::string::size_type x = 0;  // The index position in the string
175
176    do
177    {
178       x = str.find(subStr,x);     // Find the substring
179       if (x != std::string::npos) // If present
180       {
181          count++;                 // increase the count
182          x += subStr.length();    // Skip this word
183       }
184    }
185    while (x != std::string::npos);// Carry on until not present
186
187    return count;
188 }
189
190 /**
191  * \brief  Checks whether a 'string' is printable or not (in order
192  *         to avoid corrupting the terminal of invocation when printing)
193  * @param s string to check
194  */
195 bool Util::IsCleanString(std::string const &s)
196 {
197    //std::cout<< std::endl << s << std::endl;
198    for(unsigned int i=0; i<s.size(); i++)
199    {
200       if (!isprint((unsigned char)s[i]) )
201       {
202          return false;
203       }
204    }
205    return true;   
206 }
207
208 /**
209  * \brief  Checks whether an 'area' is printable or not (in order
210  *         to avoid corrupting the terminal of invocation when printing)
211  * @param s area to check (uint8_t is just for prototyping. feel free to cast)
212  * @param l area length to check
213  */
214 bool Util::IsCleanArea(uint8_t *s, int l)
215 {
216    for( int i=0; i<l; i++)
217    {
218       if (!isprint((unsigned char)s[i]) )
219       {
220          return false;
221       }
222    }
223    return true;   
224 }
225 /**
226  * \brief  Weed out a string from the non-printable characters (in order
227  *         to avoid corrupting the terminal of invocation when printing)
228  * @param s string to check (uint8_t is just for prototyping. feel free to cast)
229  */
230 std::string Util::CreateCleanString(std::string const &s)
231 {
232    std::string str = s;
233
234    for(unsigned int i=0; i<str.size(); i++)
235    {
236       if (!isprint((unsigned char)str[i]) )
237       {
238          str[i] = '.';
239       }
240    }
241
242    if (str.size() > 0 )
243    {
244       if (!isprint((unsigned char)s[str.size()-1]) )
245       {
246          if (s[str.size()-1] == 0 )
247          {
248             str[str.size()-1] = ' ';
249          }
250       }
251    }
252
253    return str;
254 }
255
256 /**
257  * \brief  Weed out a string from the non-printable characters (in order
258  *         to avoid corrupting the terminal of invocation when printing)
259  * @param s area to process (uint8_t is just for prototyping. feel free to cast)
260  * @param l area length to check
261  */
262 std::string Util::CreateCleanString(uint8_t *s, int l)
263 {
264    std::string str;
265
266    for( int i=0; i<l; i++)
267    {
268       if (!isprint((unsigned char)s[i]) )
269       {
270          str = str + '.';
271       }
272    else
273       {
274          str = str + (char )s[i];
275       }
276    }
277
278    return str;
279 }
280 /**
281  * \brief   Add a SEPARATOR to the end of the name is necessary
282  * @param   pathname file/directory name to normalize 
283  */
284 std::string Util::NormalizePath(std::string const &pathname)
285 {
286    const char SEPARATOR_X      = '/';
287    const char SEPARATOR_WIN    = '\\';
288    const std::string SEPARATOR = "/";
289    std::string name = pathname;
290    int size = name.size();
291
292    if ( name[size-1] != SEPARATOR_X && name[size-1] != SEPARATOR_WIN )
293    {
294       name += SEPARATOR;
295    }
296    return name;
297 }
298
299 /**
300  * \brief   Get the (directory) path from a full path file name
301  * @param   fullName file/directory name to extract Path from
302  */
303 std::string Util::GetPath(std::string const &fullName)
304 {
305    std::string res = fullName;
306    int pos1 = res.rfind("/");
307    int pos2 = res.rfind("\\");
308    if ( pos1 > pos2 )
309    {
310       res.resize(pos1);
311    }
312    else
313    {
314       res.resize(pos2);
315    }
316
317    return res;
318 }
319
320 /**
321  * \brief   Get the (last) name of a full path file name
322  * @param   fullName file/directory name to extract end name from
323  */
324 std::string Util::GetName(std::string const &fullName)
325 {   
326   std::string filename = fullName;
327
328   std::string::size_type slash_pos = filename.rfind("/");
329   std::string::size_type backslash_pos = filename.rfind("\\");
330   // At least with my gcc4.0.1, unfound char results in pos =4294967295 ...
331   //slash_pos = slash_pos > backslash_pos ? slash_pos : backslash_pos;
332   slash_pos = slash_pos < backslash_pos ? slash_pos : backslash_pos;
333   if (slash_pos != std::string::npos )
334     {
335     return filename.substr(slash_pos + 1);
336     }
337   else
338     {
339     return filename;
340     }
341
342
343 /**
344  * \brief   Get the current date of the system in a dicom string
345  */
346 std::string Util::GetCurrentDate()
347 {
348     char tmp[512];
349     time_t tloc;
350     time (&tloc);    
351     strftime(tmp,512,"%Y%m%d", localtime(&tloc) );
352     return tmp;
353 }
354
355 /**
356  * \brief   Get the current time of the system in a dicom string
357  */
358 std::string Util::GetCurrentTime()
359 {
360     char tmp[512];
361     time_t tloc;
362     time (&tloc);
363     strftime(tmp,512,"%H%M%S", localtime(&tloc) );
364     return tmp;  
365 }
366
367 /**
368  * \brief  Get both the date and time at the same time to avoid problem 
369  * around midnight where the two calls could be before and after midnight
370  */
371 std::string Util::GetCurrentDateTime()
372 {
373    char tmp[40];
374    long milliseconds;
375    time_t timep;
376   
377    // We need implementation specific functions to obtain millisecond precision
378 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
379    struct timeb tb;
380    ::ftime(&tb);
381    timep = tb.time;
382    milliseconds = tb.millitm;
383 #else
384    struct timeval tv;
385    gettimeofday (&tv, NULL);
386    timep = tv.tv_sec;
387    // Compute milliseconds from microseconds.
388    milliseconds = tv.tv_usec / 1000;
389 #endif
390    // Obtain the time of day, and convert it to a tm struct.
391    struct tm *ptm = localtime (&timep);
392    // Format the date and time, down to a single second.
393    strftime (tmp, sizeof (tmp), "%Y%m%d%H%M%S", ptm);
394
395    // Add milliseconds
396    // Don't use Util::Format to accelerate execution of code
397    char tmpAll[80];
398    sprintf(tmpAll,"%s%03ld",tmp,milliseconds);
399
400    return tmpAll;
401 }
402
403 unsigned int Util::GetCurrentThreadID()
404 {
405 // FIXME the implementation is far from complete
406 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
407   return (unsigned int)GetCurrentThreadId();
408 #else
409 #ifdef __linux__
410    return 0;
411    // Doesn't work on fedora, but is in the man page...
412    //return (unsigned int)gettid();
413 #else
414 #ifdef __sun
415    return (unsigned int)thr_self();
416 #else
417    //default implementation
418    return 0;
419 #endif // __sun
420 #endif // __linux__
421 #endif // Win32
422 }
423
424 unsigned int Util::GetCurrentProcessID()
425 {
426 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
427   // NOTE: There is also a _getpid()...
428   return (unsigned int)GetCurrentProcessId();
429 #else
430   // get process identification, POSIX
431   return (unsigned int)getpid();
432 #endif
433 }
434
435 /**
436  * \brief   tells us whether the processor we are working with is BigEndian or not
437  */
438 bool Util::IsCurrentProcessorBigEndian()
439 {
440 #if defined(GDCM_WORDS_BIGENDIAN)
441    return true;
442 #else
443    return false;
444 #endif
445 }
446
447 /**
448  * \brief Create a /DICOM/ string:
449  * It should a of even length (no odd length ever)
450  * It can contain as many (if you are reading this from your
451  * editor the following character is backslash followed by zero
452  * that needed to be escaped with an extra backslash for doxygen) \\0
453  * as you want.
454  */
455 std::string Util::DicomString(const char *s, size_t l)
456 {
457    std::string r(s, s+l);
458    gdcmAssertMacro( !(r.size() % 2) ); // == basically 'l' is even
459    return r;
460 }
461
462 /**
463  * \brief Create a /DICOM/ string:
464  * It should a of even length (no odd length ever)
465  * It can contain as many (if you are reading this from your
466  * editor the following character is backslash followed by zero
467  * that needed to be escaped with an extra backslash for doxygen) \\0
468  * as you want.
469  * This function is similar to DicomString(const char*), 
470  * except it doesn't take a length. 
471  * It only pad with a null character if length is odd
472  */
473 std::string Util::DicomString(const char *s)
474 {
475    size_t l = strlen(s);
476    if ( l%2 )
477    {
478       l++;
479    }
480    std::string r(s, s+l);
481    gdcmAssertMacro( !(r.size() % 2) );
482    return r;
483 }
484
485 /**
486  * \brief Safely check the equality of two Dicom String:
487  *        - Both strings should be of even length
488  *        - We allow padding of even length string by either 
489  *           a null character of a space
490  */
491 bool Util::DicomStringEqual(const std::string &s1, const char *s2)
492 {
493   // s2 is the string from the DICOM reference e.g. : 'MONOCHROME1'
494   std::string s1_even = s1; //Never change input parameter
495   std::string s2_even = DicomString( s2 );
496   if ( s1_even[s1_even.size()-1] == ' ' )
497   {
498     s1_even[s1_even.size()-1] = '\0'; //replace space character by null
499   }
500   return s1_even == s2_even;
501 }
502
503 /**
504  * \brief Safely compare two Dicom String:
505  *        - Both strings should be of even length
506  *        - We allow padding of even length string by either  
507  *          a null character of a space
508  */
509 bool Util::CompareDicomString(const std::string &s1, const char *s2, int op)
510 {
511   // s2 is the string from the DICOM reference e.g. : 'MONOCHROME1'
512   std::string s1_even = s1; //Never change input parameter
513   std::string s2_even = DicomString( s2 );
514   if ( s1_even[s1_even.size()-1] == ' ' )
515   {
516     s1_even[s1_even.size()-1] = '\0'; //replace space character by null
517   }
518   switch (op)
519   {
520      case GDCM_EQUAL :
521         return s1_even == s2_even;
522      case GDCM_DIFFERENT :  
523         return s1_even != s2_even;
524      case GDCM_GREATER :  
525         return s1_even >  s2_even;  
526      case GDCM_GREATEROREQUAL :  
527         return s1_even >= s2_even;
528      case GDCM_LESS :
529         return s1_even <  s2_even;
530      case GDCM_LESSOREQUAL :
531         return s1_even <= s2_even;
532      default :
533         gdcmDebugMacro(" Wrong operator : " << op);
534         return false;
535   }
536 }
537
538 #ifdef _WIN32
539    typedef BOOL(WINAPI * pSnmpExtensionInit) (
540            IN DWORD dwTimeZeroReference,
541            OUT HANDLE * hPollForTrapEvent,
542            OUT AsnObjectIdentifier * supportedView);
543
544    typedef BOOL(WINAPI * pSnmpExtensionTrap) (
545            OUT AsnObjectIdentifier * enterprise,
546            OUT AsnInteger * genericTrap,
547            OUT AsnInteger * specificTrap,
548            OUT AsnTimeticks * timeStamp,
549            OUT RFC1157VarBindList * variableBindings);
550
551    typedef BOOL(WINAPI * pSnmpExtensionQuery) (
552            IN BYTE requestType,
553            IN OUT RFC1157VarBindList * variableBindings,
554            OUT AsnInteger * errorStatus,
555            OUT AsnInteger * errorIndex);
556
557    typedef BOOL(WINAPI * pSnmpExtensionInitEx) (
558            OUT AsnObjectIdentifier * supportedView);
559 #endif //_WIN32
560
561 /// \brief gets current M.A.C adress (for internal use only)
562 int GetMacAddrSys ( unsigned char *addr );
563 int GetMacAddrSys ( unsigned char *addr )
564 {
565 #ifdef _WIN32
566    WSADATA WinsockData;
567    if ( (WSAStartup(MAKEWORD(2, 0), &WinsockData)) != 0 ) 
568    {
569       std::cerr << "in Get MAC Adress (internal) : This program requires Winsock 2.x!" 
570              << std::endl;
571       return -1;
572    }
573
574    HANDLE PollForTrapEvent;
575    AsnObjectIdentifier SupportedView;
576    UINT OID_ifEntryType[]  = { 1, 3, 6, 1, 2, 1, 2, 2, 1, 3 };
577    UINT OID_ifEntryNum[]   = { 1, 3, 6, 1, 2, 1, 2, 1 };
578    UINT OID_ipMACEntAddr[] = { 1, 3, 6, 1, 2, 1, 2, 2, 1, 6 };
579    AsnObjectIdentifier MIB_ifMACEntAddr = {
580        sizeof(OID_ipMACEntAddr) / sizeof(UINT), OID_ipMACEntAddr };
581    AsnObjectIdentifier MIB_ifEntryType = {
582        sizeof(OID_ifEntryType) / sizeof(UINT), OID_ifEntryType };
583    AsnObjectIdentifier MIB_ifEntryNum = {
584        sizeof(OID_ifEntryNum) / sizeof(UINT), OID_ifEntryNum };
585    RFC1157VarBindList varBindList;
586    RFC1157VarBind varBind[2];
587    AsnInteger errorStatus;
588    AsnInteger errorIndex;
589    AsnObjectIdentifier MIB_NULL = { 0, 0 };
590    int ret;
591    int dtmp;
592    int j = 0;
593
594    // Load the SNMP dll and get the addresses of the functions necessary
595    HINSTANCE m_hInst = LoadLibrary("inetmib1.dll");
596    if (m_hInst < (HINSTANCE) HINSTANCE_ERROR)
597    {
598       return -1;
599    }
600    pSnmpExtensionInit m_Init =
601        (pSnmpExtensionInit) GetProcAddress(m_hInst, "SnmpExtensionInit");
602    pSnmpExtensionQuery m_Query =
603        (pSnmpExtensionQuery) GetProcAddress(m_hInst, "SnmpExtensionQuery");
604    m_Init(GetTickCount(), &PollForTrapEvent, &SupportedView);
605
606    /* Initialize the variable list to be retrieved by m_Query */
607    varBindList.list = varBind;
608    varBind[0].name = MIB_NULL;
609    varBind[1].name = MIB_NULL;
610
611    // Copy in the OID to find the number of entries in the
612    // Inteface table
613    varBindList.len = 1;        // Only retrieving one item
614    SNMP_oidcpy(&varBind[0].name, &MIB_ifEntryNum);
615    m_Query(ASN_RFC1157_GETNEXTREQUEST, &varBindList, &errorStatus,
616                  &errorIndex);
617 //   printf("# of adapters in this system : %i\n",
618 //          varBind[0].value.asnValue.number);
619    varBindList.len = 2;
620
621    // Copy in the OID of ifType, the type of interface
622    SNMP_oidcpy(&varBind[0].name, &MIB_ifEntryType);
623
624    // Copy in the OID of ifPhysAddress, the address
625    SNMP_oidcpy(&varBind[1].name, &MIB_ifMACEntAddr);
626
627    do
628    {
629       // Submit the query.  Responses will be loaded into varBindList.
630       // We can expect this call to succeed a # of times corresponding
631       // to the # of adapters reported to be in the system
632       ret = m_Query(ASN_RFC1157_GETNEXTREQUEST, &varBindList, &errorStatus,
633                     &errorIndex); 
634       if (!ret)
635       {
636          ret = 1;
637       }
638       else
639       {
640          // Confirm that the proper type has been returned
641          ret = SNMP_oidncmp(&varBind[0].name, &MIB_ifEntryType,
642                             MIB_ifEntryType.idLength);
643       }
644       if (!ret)
645       {
646          j++;
647          dtmp = varBind[0].value.asnValue.number;
648
649          // Type 6 describes ethernet interfaces
650          if (dtmp == 6)
651          {
652             // Confirm that we have an address here
653             ret = SNMP_oidncmp(&varBind[1].name, &MIB_ifMACEntAddr,
654                                MIB_ifMACEntAddr.idLength);
655             if ( !ret && varBind[1].value.asnValue.address.stream != NULL )
656             {
657                if ( (varBind[1].value.asnValue.address.stream[0] == 0x44)
658                  && (varBind[1].value.asnValue.address.stream[1] == 0x45)
659                  && (varBind[1].value.asnValue.address.stream[2] == 0x53)
660                  && (varBind[1].value.asnValue.address.stream[3] == 0x54)
661                  && (varBind[1].value.asnValue.address.stream[4] == 0x00) )
662                {
663                    // Ignore all dial-up networking adapters
664                    std::cerr << "in Get MAC Adress (internal) : Interface #" 
665                              << j << " is a DUN adapter\n";
666                    continue;
667                }
668                if ( (varBind[1].value.asnValue.address.stream[0] == 0x00)
669                  && (varBind[1].value.asnValue.address.stream[1] == 0x00)
670                  && (varBind[1].value.asnValue.address.stream[2] == 0x00)
671                  && (varBind[1].value.asnValue.address.stream[3] == 0x00)
672                  && (varBind[1].value.asnValue.address.stream[4] == 0x00)
673                  && (varBind[1].value.asnValue.address.stream[5] == 0x00) )
674                {
675                   // Ignore NULL addresses returned by other network
676                   // interfaces
677                   std::cerr << "in Get MAC Adress (internal) :  Interface #" 
678                             << j << " is a NULL address\n";
679                   continue;
680                }
681                memcpy( addr, varBind[1].value.asnValue.address.stream, 6);
682             }
683          }
684       }
685    } while (!ret);
686
687    // Free the bindings
688    SNMP_FreeVarBind(&varBind[0]);
689    SNMP_FreeVarBind(&varBind[1]);
690    return 0;
691 #endif //Win32 version
692
693
694 // implementation for POSIX system
695 #if defined(CMAKE_HAVE_NET_IF_ARP_H) && defined(__sun)
696    //The POSIX version is broken anyway on Solaris, plus would require full
697    //root power
698    struct  arpreq          parpreq;
699    struct  sockaddr_in     *psa;
700    struct  hostent         *phost;
701    char                    hostname[MAXHOSTNAMELEN];
702    char                    **paddrs;
703    int                     sock, status=0;
704
705    if (gethostname(hostname,  MAXHOSTNAMELEN) != 0 )
706    {
707       perror("in Get MAC Adress (internal) : gethostname");
708       return -1;
709    }
710    phost = gethostbyname(hostname);
711    paddrs = phost->h_addr_list;
712
713    sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
714    if (sock == -1 )
715    {
716       perror("in Get MAC Adress (internal) : sock");
717       return -1;
718    }
719    memset(&parpreq, 0, sizeof(struct arpreq));
720    psa = (struct sockaddr_in *) &parpreq.arp_pa;
721
722    memset(psa, 0, sizeof(struct sockaddr_in));
723    psa->sin_family = AF_INET;
724    memcpy(&psa->sin_addr, *paddrs, sizeof(struct in_addr));
725
726    status = ioctl(sock, SIOCGARP, &parpreq);
727    if (status == -1 )
728    {
729       perror("in Get MAC Adress (internal) : SIOCGARP");
730       return -1;
731    }
732    memcpy(addr, parpreq.arp_ha.sa_data, 6);
733
734    return 0;
735 #else
736 #ifdef CMAKE_HAVE_NET_IF_H
737    int       sd;
738    struct ifreq    ifr, *ifrp;
739    struct ifconf    ifc;
740    char buf[1024];
741    int      n, i;
742    unsigned char    *a;
743 #if defined(AF_LINK) && (!defined(SIOCGIFHWADDR) && !defined(SIOCGENADDR))
744    struct sockaddr_dl *sdlp;
745 #endif
746
747 //
748 // BSD 4.4 defines the size of an ifreq to be
749 // max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len
750 // However, under earlier systems, sa_len isn't present, so the size is 
751 // just sizeof(struct ifreq)
752 // We should investigate the use of SIZEOF_ADDR_IFREQ
753 //
754 #ifdef HAVE_SA_LEN
755    #ifndef max
756       #define max(a,b) ((a) > (b) ? (a) : (b))
757    #endif
758    #define ifreq_size(i) max(sizeof(struct ifreq),\
759         sizeof((i).ifr_name)+(i).ifr_addr.sa_len)
760 #else
761    #define ifreq_size(i) sizeof(struct ifreq)
762 #endif // HAVE_SA_LEN
763
764    if ( (sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0 )
765    {
766       return -1;
767    }
768    memset(buf, 0, sizeof(buf));
769    ifc.ifc_len = sizeof(buf);
770    ifc.ifc_buf = buf;
771    if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0)
772    {
773       close(sd);
774       return -1;
775    }
776    n = ifc.ifc_len;
777    for (i = 0; i < n; i+= ifreq_size(*ifrp) )
778    {
779       ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
780       strncpy(ifr.ifr_name, ifrp->ifr_name, IFNAMSIZ);
781 #ifdef SIOCGIFHWADDR
782       if (ioctl(sd, SIOCGIFHWADDR, &ifr) < 0)
783          continue;
784       a = (unsigned char *) &ifr.ifr_hwaddr.sa_data;
785 #else
786 #ifdef SIOCGENADDR
787       // In theory this call should also work on Sun Solaris, but apparently
788       // SIOCGENADDR is not implemented properly thus the call 
789       // ioctl(sd, SIOCGENADDR, &ifr) always returns errno=2 
790       // (No such file or directory)
791       // Furthermore the DLAPI seems to require full root access
792       if (ioctl(sd, SIOCGENADDR, &ifr) < 0)
793          continue;
794       a = (unsigned char *) ifr.ifr_enaddr;
795 #else
796 #ifdef AF_LINK
797       sdlp = (struct sockaddr_dl *) &ifrp->ifr_addr;
798       if ((sdlp->sdl_family != AF_LINK) || (sdlp->sdl_alen != 6))
799          continue;
800       a = (unsigned char *) &sdlp->sdl_data[sdlp->sdl_nlen];
801 #else
802       perror("in Get MAC Adress (internal) : No way to access hardware");
803       close(sd);
804       return -1;
805 #endif // AF_LINK
806 #endif // SIOCGENADDR
807 #endif // SIOCGIFHWADDR
808       if (!a[0] && !a[1] && !a[2] && !a[3] && !a[4] && !a[5]) continue;
809
810       if (addr) 
811       {
812          memcpy(addr, a, 6);
813          close(sd);
814          return 0;
815       }
816    }
817    close(sd);
818 #endif
819    // Not implemented platforms (or no cable !)
820    perror("in Get MAC Adress (internal) : There was a configuration problem (or no cable !) on your plateform");
821    memset(addr,0,6);
822    return -1;
823 #endif //__sun
824 }
825
826 /**
827  * \brief Mini function to return the last digit from a number express in base 256
828  *        pre condition data contain an array of 6 unsigned char
829  *        post condition carry contain the last digit
830  */
831 inline int getlastdigit(unsigned char *data)
832 {
833   int extended, carry = 0;
834   for(int i=0;i<6;i++)
835     {
836     extended = (carry << 8) + data[i];
837     data[i] = extended / 10;
838     carry = extended % 10;
839     }
840   return carry;
841 }
842
843 /**
844  * \brief Encode the mac address on a fixed length string of 15 characters.
845  * we save space this way.
846  */
847 std::string Util::GetMACAddress()
848 {
849    // This code is the result of a long internet search to find something
850    // as compact as possible (not OS independant). We only have to separate
851    // 3 OS: Win32, SunOS and 'real' POSIX
852    // http://groups-beta.google.com/group/comp.unix.solaris/msg/ad36929d783d63be
853    // http://bdn.borland.com/article/0,1410,26040,00.html
854    unsigned char addr[6];
855
856    int stat = GetMacAddrSys(addr);
857    if (stat == 0)
858    {
859       // We need to convert a 6 digit number from base 256 to base 10, using integer
860       // would requires a 48bits one. To avoid this we have to reimplement the div + modulo 
861       // with string only
862       bool zero = false;
863       int res;
864       std::string sres;
865       while(!zero)
866       {
867          res = getlastdigit(addr);
868          sres.insert(sres.begin(), '0' + res);
869          zero = (addr[0] == 0) && (addr[1] == 0) && (addr[2] == 0) 
870              && (addr[3] == 0) && (addr[4] == 0) && (addr[5] == 0);
871       }
872
873       return sres;
874    }
875    else
876    {
877       gdcmStaticWarningMacro("Problem in finding the MAC Address");
878       return "";
879    }
880 }
881
882 /**
883  * \brief Creates a new UID. As stipulated in the DICOM ref
884  *        each time a DICOM image is created it should have 
885  *        a unique identifier (URI)
886  * @param root is the DICOM prefix assigned by IOS group
887  */
888 std::string Util::CreateUniqueUID(const std::string &root)
889 {
890    std::string prefix;
891    std::string append;
892    if ( root.empty() )
893    {
894       // gdcm UID prefix, as supplied by http://www.medicalconnections.co.uk
895       prefix = RootUID; 
896    }
897    else
898    {
899       prefix = root;
900    }
901
902    // A root was specified use it to forge our new UID:
903    append += ".";
904    //append += Util::GetMACAddress(); // to save CPU time
905    append += Util::GDCM_MAC_ADRESS;
906    append += ".";
907    append += Util::GetCurrentDateTime();
908    append += ".";
909    //Also add a mini random number just in case:
910    char tmp[10];
911    int r = (int) (100.0*rand()/RAND_MAX);
912    // Don't use Util::Format to accelerate the execution
913    sprintf(tmp,"%02d", r);
914    append += tmp;
915
916    // If append is too long we need to rehash it
917    if ( (prefix + append).size() > 64 )
918    {
919       gdcmStaticErrorMacro( "Size of UID is too long." );
920       // we need a hash function to truncate this number
921       // if only md5 was cross plateform
922       // MD5(append);
923    }
924
925    return prefix + append;
926 }
927
928 void Util::SetRootUID(const std::string &root)
929 {
930    if ( root.empty() )
931       RootUID = GDCM_UID;
932    else
933       RootUID = root;
934 }
935
936 const std::string &Util::GetRootUID()
937 {
938    return RootUID;
939 }
940
941 //-------------------------------------------------------------------------
942 /**
943  * \brief binary_write binary_write
944  * @param os ostream to write to 
945  * @param val 16 bits value to write
946  */ 
947 std::ostream &binary_write(std::ostream &os, const uint16_t &val)
948 {
949 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)
950    uint16_t swap;
951    swap = ( val << 8 | val >> 8 );
952
953    return os.write(reinterpret_cast<const char*>(&swap), 2);
954 #else
955    return os.write(reinterpret_cast<const char*>(&val), 2);
956 #endif //GDCM_WORDS_BIGENDIAN
957 }
958
959 /**
960  * \brief binary_write binary_write
961  * @param os ostream to write to
962  * @param val 32 bits value to write
963  */ 
964 std::ostream &binary_write(std::ostream &os, const uint32_t &val)
965 {
966 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)
967    uint32_t swap;
968    swap = (  (val<<24)               | ((val<<8)  & 0x00ff0000) | 
969             ((val>>8)  & 0x0000ff00) |  (val>>24)               );
970    return os.write(reinterpret_cast<const char*>(&swap), 4);
971 #else
972    return os.write(reinterpret_cast<const char*>(&val), 4);
973 #endif //GDCM_WORDS_BIGENDIAN
974 }
975
976
977 /**
978  * \brief binary_write binary_write
979  * @param os ostream to write to
980  * @param val double (64 bits) value to write
981  */ 
982 std::ostream &binary_write(std::ostream &os, const double &val)
983 {
984 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)    
985    double swap = val;
986    
987    char *beg = (char *)&swap;
988    char *end = beg + 7;
989    char t;
990    for (unsigned int i = 0; i<7; i++)
991    {
992       t    = *beg;
993       *beg = *end;
994       *end = t;
995       beg++,
996       end--;  
997    }  
998    return os.write(reinterpret_cast<const char*>(&swap), 8);
999 #else
1000    return os.write(reinterpret_cast<const char*>(&val), 8);
1001 #endif //GDCM_WORDS_BIGENDIAN
1002 }
1003
1004
1005 /**
1006  * \brief  binary_write binary_write
1007  * @param os ostream to write to
1008  * @param val 8 bits characters aray to write
1009  */ 
1010 std::ostream &binary_write(std::ostream &os, const char *val)
1011 {
1012    return os.write(val, strlen(val));
1013 }
1014
1015 /**
1016  * \brief  binary_write binary_write
1017  * @param os ostream to write to
1018  * @param val std::string value to write
1019  */ 
1020 std::ostream &binary_write(std::ostream &os, std::string const &val)
1021 {
1022    return os.write(val.c_str(), val.size());
1023 }
1024
1025 /**
1026  * \brief  binary_write binary_write
1027  * @param os ostream to write to
1028  * @param val 8 bits 'characters' aray to write
1029  * @param len length of the 'value' to be written
1030  */ 
1031 std::ostream &binary_write(std::ostream &os, const uint8_t *val, size_t len)
1032 {
1033    // We are writting sizeof(char) thus no need to swap bytes
1034    return os.write(reinterpret_cast<const char*>(val), len);
1035 }
1036
1037 /**
1038  * \brief  binary_write binary_write
1039  * @param os ostream to write to
1040  * @param val 16 bits words aray to write
1041  * @param len length (in bytes) of the 'value' to be written 
1042  */ 
1043 std::ostream &binary_write(std::ostream &os, const uint16_t *val, size_t len)
1044 {
1045 // This is tricky since we are writting two bytes buffer. 
1046 // Be carefull with little endian vs big endian. 
1047 // Also this other trick is to allocate a small (efficient) buffer that store
1048 // intermediate result before writting it.
1049 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)
1050    const int BUFFER_SIZE = 4096;
1051    static char buffer[BUFFER_SIZE];
1052    uint16_t *binArea16 = (uint16_t*)val; //for the const
1053  
1054    // how many BUFFER_SIZE long pieces in binArea ?
1055    int nbPieces = len/BUFFER_SIZE; //(16 bits = 2 Bytes)
1056    int remainingSize = len%BUFFER_SIZE;
1057
1058    for (int j=0;j<nbPieces;j++)
1059    {
1060       uint16_t *pbuffer  = (uint16_t*)buffer; //reinitialize pbuffer
1061       for (int i = 0; i < BUFFER_SIZE/2; i++)
1062       {
1063          *pbuffer = *binArea16 >> 8 | *binArea16 << 8;
1064          pbuffer++;
1065          binArea16++;
1066       }
1067       os.write ( buffer, BUFFER_SIZE );
1068    }
1069    if ( remainingSize > 0)
1070    {
1071       uint16_t *pbuffer  = (uint16_t*)buffer; //reinitialize pbuffer
1072       for (int i = 0; i < remainingSize/2; i++)
1073       {
1074          *pbuffer = *binArea16 >> 8 | *binArea16 << 8;
1075          pbuffer++;
1076          binArea16++;
1077       }
1078       os.write ( buffer, remainingSize );
1079    }
1080    return os;
1081 #else
1082    return os.write(reinterpret_cast<const char*>(val), len);
1083 #endif
1084 }
1085
1086 //-------------------------------------------------------------------------
1087 // Protected
1088
1089 //-------------------------------------------------------------------------
1090 // Private
1091 /**
1092  * \brief   Return the IP adress of the machine writting the DICOM image
1093  */
1094 std::string Util::GetIPAddress()
1095 {
1096    // This is a rip from 
1097    // http://www.codeguru.com/Cpp/I-N/internet/network/article.php/c3445/
1098 #ifndef HOST_NAME_MAX
1099    // SUSv2 guarantees that `Host names are limited to 255 bytes'.
1100    // POSIX 1003.1-2001 guarantees that `Host names (not including the
1101    // terminating NUL) are limited to HOST_NAME_MAX bytes'.
1102 #define HOST_NAME_MAX 255
1103    // In this case we should maybe check the string was not truncated.
1104    // But I don't known how to check that...
1105 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
1106    // with WinSock DLL we need to initialize the WinSock before using gethostname
1107    WORD wVersionRequested = MAKEWORD(1,0);
1108    WSADATA WSAData;
1109    int err = WSAStartup(wVersionRequested,&WSAData);
1110    if (err != 0)
1111    {
1112       // Tell the user that we could not find a usable
1113       // WinSock DLL.
1114       WSACleanup();
1115       return "127.0.0.1";
1116    }
1117 #endif
1118   
1119 #endif //HOST_NAME_MAX
1120
1121    std::string str;
1122    char szHostName[HOST_NAME_MAX+1];
1123    int r = gethostname(szHostName, HOST_NAME_MAX);
1124  
1125    if ( r == 0 )
1126    {
1127       // Get host adresses
1128       struct hostent *pHost = gethostbyname(szHostName);
1129  
1130       for( int i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
1131       {
1132          for( int j = 0; j<pHost->h_length; j++ )
1133          {
1134             if ( j > 0 ) str += ".";
1135  
1136             str += Util::Format("%u", 
1137                 (unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
1138          }
1139          // str now contains one local IP address 
1140  
1141 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
1142    WSACleanup();
1143 #endif
1144
1145       }
1146    }
1147    // If an error occur r == -1
1148    // Most of the time it will return 127.0.0.1...
1149    return str;
1150 }
1151
1152 void Util::hfpswap(double *a, double *b)
1153 {
1154    double tmp;
1155    tmp=*a;
1156    *a=*b;
1157    *b=tmp;
1158 }
1159
1160 //-------------------------------------------------------------------------
1161 } // end namespace gdcm
1162