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