]> Creatis software - gdcm.git/blob - src/gdcmUtil.cxx
* src/gdcmUtil.cxx : bug fix to find the Windows MAC address. Now, there
[gdcm.git] / src / gdcmUtil.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmUtil.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/17 13:55:26 $
7   Version:   $Revision: 1.100 $
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 #include <stdarg.h>  //only included in implementation file
29 #include <stdio.h>   //only included in implementation file
30
31 #if defined(_MSC_VER)
32    #include <winsock.h>  // for gethostname & gethostbyname
33    #undef GetCurrentTime
34 #else
35 #ifndef __BORLANDC__
36    #include <unistd.h>  // for gethostname
37    #include <netdb.h>   // for gethostbyname
38 #endif
39 #endif
40
41 // For GetMACAddress
42 #ifdef _WIN32
43 #include <snmp.h>
44 #include <conio.h>
45 #else
46 #include <unistd.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <sys/types.h>
50 #endif
51
52 // How do I do that in CMake ?
53 #ifdef __APPLE__
54 #define HAVE_SA_LEN
55 #define CMAKE_HAVE_NET_IF_DL_H
56 #define CMAKE_HAVE_NETINET_IN_H
57 #define CMAKE_HAVE_NET_IF_H
58 #endif //APPLE
59
60 #ifdef CMAKE_HAVE_SYS_IOCTL_H
61 #include <sys/ioctl.h>  // For SIOCGIFCONF on Linux
62 #endif
63 #ifdef CMAKE_HAVE_SYS_SOCKET_H
64 #include <sys/socket.h>
65 #endif
66 #ifdef CMAKE_HAVE_SYS_SOCKIO_H
67 #include <sys/sockio.h>  // For SIOCGIFCONF on SunOS
68 #endif
69 #ifdef CMAKE_HAVE_NET_IF_H
70 #include <net/if.h>
71 #endif
72 #ifdef CMAKE_HAVE_NETINET_IN_H
73 #include <netinet/in.h>   //For IPPROTO_IP
74 #endif
75 #ifdef CMAKE_HAVE_NET_IF_DL_H
76 #include <net/if_dl.h>
77 #endif
78 #ifdef __sun
79 //#if defined(CMAKE_HAVE_NET_IF_ARP_H) && defined(__sun)
80 // This is absolutely necesseray on SunOS
81 #include <net/if_arp.h>
82 #endif
83
84 namespace gdcm 
85 {
86 /**
87  * \ingroup Globals
88  * \brief Provide a better 'c++' approach for sprintf
89  * For example c code is:
90  * sprintf(trash, "%04x|%04x", group , elem);
91  *
92  * c++ code is 
93  * std::ostringstream buf;
94  * buf << std::right << std::setw(4) << std::setfill('0') << std::hex
95  *     << group << "|" << std::right << std::setw(4) << std::setfill('0') 
96  *     << std::hex <<  elem;
97  * buf.str();
98  *
99  * gdcm style code is
100  * Format("%04x|%04x", group , elem);
101  */
102
103 std::string Util::Format(const char *format, ...)
104 {
105    char buffer[2048];
106    va_list args;
107    va_start(args, format);
108    vsprintf(buffer, format, args);  //might be a security flaw
109    va_end(args); // Each invocation of va_start should be matched 
110                  // by a corresponding invocation of va_end
111                  // args is then 'undefined'
112    return buffer;
113 }
114
115
116 /**
117  * \ingroup Globals
118  * \brief Because not available in C++ (?)
119  */
120 void Util::Tokenize (const std::string &str,
121                      std::vector<std::string> &tokens,
122                      const std::string& delimiters)
123 {
124    std::string::size_type lastPos = str.find_first_not_of(delimiters,0);
125    std::string::size_type pos     = str.find_first_of    (delimiters,lastPos);
126    while (std::string::npos != pos || std::string::npos != lastPos)
127    {
128       tokens.push_back(str.substr(lastPos, pos - lastPos));
129       lastPos = str.find_first_not_of(delimiters, pos);
130       pos     = str.find_first_of    (delimiters, lastPos);
131    }
132 }
133
134 /**
135  * \ingroup Globals
136  * \brief Because not available in C++ (?)
137  *        Counts the number of occurences of a substring within a string
138  */
139  
140 int Util::CountSubstring (const std::string &str,
141                           const std::string &subStr)
142 {
143    int count = 0;   // counts how many times it appears
144    std::string::size_type x = 0;       // The index position in the string
145
146    do
147    {
148       x = str.find(subStr,x);       // Find the substring
149       if (x != std::string::npos)   // If present
150       {
151          count++;                  // increase the count
152          x += subStr.length();     // Skip this word
153       }
154    }
155    while (x != std::string::npos);  // Carry on until not present
156
157    return count;
158 }
159
160 /**
161  * \ingroup Globals
162  * \brief  Weed out a string from the non-printable characters (in order
163  *         to avoid corrupting the terminal of invocation when printing)
164  * @param s string to remove non printable characters from
165  */
166 std::string Util::CreateCleanString(std::string const &s)
167 {
168    std::string str = s;
169
170    for(unsigned int i=0; i<str.size(); i++)
171    {
172       if(!isprint((unsigned char)str[i]))
173       {
174          str[i] = '.';
175       }
176    }
177
178    if(str.size() > 0)
179    {
180       if(!isprint((unsigned char)s[str.size()-1]))
181       {
182          if(s[str.size()-1] == 0)
183          {
184             str[str.size()-1] = ' ';
185          }
186       }
187    }
188
189    return str;
190 }
191
192 /**
193  * \ingroup Globals
194  * \brief   Add a SEPARATOR to the end of the name is necessary
195  * @param   pathname file/directory name to normalize 
196  */
197 std::string Util::NormalizePath(std::string const &pathname)
198 {
199    const char SEPARATOR_X      = '/';
200    const char SEPARATOR_WIN    = '\\';
201    const std::string SEPARATOR = "/";
202    std::string name = pathname;
203    int size = name.size();
204
205    if( name[size-1] != SEPARATOR_X && name[size-1] != SEPARATOR_WIN )
206    {
207       name += SEPARATOR;
208    }
209    return name;
210 }
211
212 /**
213  * \ingroup Globals
214  * \brief   Get the (directory) path from a full path file name
215  * @param   fullName file/directory name to extract Path from
216  */
217 std::string Util::GetPath(std::string const &fullName)
218 {
219    std::string res = fullName;
220    int pos1 = res.rfind("/");
221    int pos2 = res.rfind("\\");
222    if( pos1 > pos2)
223    {
224       res.resize(pos1);
225    }
226    else
227    {
228       res.resize(pos2);
229    }
230
231    return res;
232 }
233
234 /**
235  * \ingroup Util
236  * \brief   Get the (last) name of a full path file name
237  * @param   fullName file/directory name to extract end name from
238  */
239 std::string Util::GetName(std::string const &fullName)
240 {   
241   std::string filename = fullName;
242
243   std::string::size_type slash_pos = filename.rfind("/");
244   std::string::size_type backslash_pos = filename.rfind("\\");
245   slash_pos = slash_pos > backslash_pos ? slash_pos : backslash_pos;
246   if(slash_pos != std::string::npos)
247     {
248     return filename.substr(slash_pos + 1);
249     }
250   else
251     {
252     return filename;
253     }
254
255
256 /**
257  * \ingroup Util
258  * \brief   Get the current date of the system in a dicom string
259  */
260 std::string Util::GetCurrentDate()
261 {
262     char tmp[512];
263     time_t tloc;
264     time (&tloc);    
265     strftime(tmp,512,"%Y%m%d", localtime(&tloc) );
266     return tmp;
267 }
268
269 /**
270  * \ingroup Util
271  * \brief   Get the current time of the system in a dicom string
272  */
273 std::string Util::GetCurrentTime()
274 {
275     char tmp[512];
276     time_t tloc;
277     time (&tloc);
278     strftime(tmp,512,"%H%M%S", localtime(&tloc) );
279     return tmp;  
280 }
281
282 /**
283  * \brief Create a /DICOM/ string:
284  * It should a of even length (no odd length ever)
285  * It can contain as many (if you are reading this from your
286  * editor the following character is is backslash followed by zero
287  * that needed to be escaped with an extra backslash for doxygen) \\0
288  * as you want.
289  */
290 std::string Util::DicomString(const char *s, size_t l)
291 {
292    std::string r(s, s+l);
293    gdcmAssertMacro( !(r.size() % 2) ); // == basically 'l' is even
294    return r;
295 }
296
297 /**
298  * \ingroup Util
299  * \brief Create a /DICOM/ string:
300  * It should a of even lenght (no odd length ever)
301  * It can contain as many (if you are reading this from your
302  * editor the following character is is backslash followed by zero
303  * that needed to be escaped with an extra backslash for doxygen) \\0
304  * as you want.
305  * This function is similar to DicomString(const char*), 
306  * except it doesn't take a lenght. 
307  * It only pad with a null character if length is odd
308  */
309 std::string Util::DicomString(const char *s)
310 {
311    size_t l = strlen(s);
312    if( l%2 )
313    {
314       l++;
315    }
316    std::string r(s, s+l);
317    gdcmAssertMacro( !(r.size() % 2) );
318    return r;
319 }
320
321 /**
322  * \ingroup Util
323  * \brief Safely compare two Dicom String:
324  *        - Both string should be of even lenght
325  *        - We allow padding of even lenght string by either a null 
326  *          character of a space
327  */
328 bool Util::DicomStringEqual(const std::string &s1, const char *s2)
329 {
330   // s2 is the string from the DICOM reference: 'MONOCHROME1'
331   std::string s1_even = s1; //Never change input parameter
332   std::string s2_even = DicomString( s2 );
333   if( s1_even[s1_even.size()-1] == ' ')
334   {
335     s1_even[s1_even.size()-1] = '\0'; //replace space character by null
336   }
337   return s1_even == s2_even;
338 }
339
340
341
342 /**
343  * \ingroup Util
344  * \brief   tells us if the processor we are working with is BigEndian or not
345  */
346 bool Util::IsCurrentProcessorBigEndian()
347 {
348 #ifdef GDCM_WORDS_BIGENDIAN
349    return true;
350 #else
351    return false;
352 #endif
353 }
354
355
356
357 #ifdef _WIN32
358 typedef BOOL(WINAPI * pSnmpExtensionInit) (
359         IN DWORD dwTimeZeroReference,
360         OUT HANDLE * hPollForTrapEvent,
361         OUT AsnObjectIdentifier * supportedView);
362
363 typedef BOOL(WINAPI * pSnmpExtensionTrap) (
364         OUT AsnObjectIdentifier * enterprise,
365         OUT AsnInteger * genericTrap,
366         OUT AsnInteger * specificTrap,
367         OUT AsnTimeticks * timeStamp,
368         OUT RFC1157VarBindList * variableBindings);
369
370 typedef BOOL(WINAPI * pSnmpExtensionQuery) (
371         IN BYTE requestType,
372         IN OUT RFC1157VarBindList * variableBindings,
373         OUT AsnInteger * errorStatus,
374         OUT AsnInteger * errorIndex);
375
376 typedef BOOL(WINAPI * pSnmpExtensionInitEx) (
377         OUT AsnObjectIdentifier * supportedView);
378 #endif //_WIN32
379
380
381 int GetMacAddrSys ( unsigned char *addr )
382 {
383 #ifdef _WIN32
384    WSADATA WinsockData;
385    if (WSAStartup(MAKEWORD(2, 0), &WinsockData) != 0) 
386    {
387       std::cerr << "This program requires Winsock 2.x!" << std::endl;
388       return -1;
389    }
390
391    HANDLE PollForTrapEvent;
392    AsnObjectIdentifier SupportedView;
393    UINT OID_ifEntryType[] = { 1, 3, 6, 1, 2, 1, 2, 2, 1, 3 };
394    UINT OID_ifEntryNum[] = { 1, 3, 6, 1, 2, 1, 2, 1 };
395    UINT OID_ipMACEntAddr[] = { 1, 3, 6, 1, 2, 1, 2, 2, 1, 6 };
396    AsnObjectIdentifier MIB_ifMACEntAddr = {
397        sizeof(OID_ipMACEntAddr) / sizeof(UINT), OID_ipMACEntAddr };
398    AsnObjectIdentifier MIB_ifEntryType = {
399        sizeof(OID_ifEntryType) / sizeof(UINT), OID_ifEntryType };
400    AsnObjectIdentifier MIB_ifEntryNum = {
401        sizeof(OID_ifEntryNum) / sizeof(UINT), OID_ifEntryNum };
402    RFC1157VarBindList varBindList;
403    RFC1157VarBind varBind[2];
404    AsnInteger errorStatus;
405    AsnInteger errorIndex;
406    AsnObjectIdentifier MIB_NULL = { 0, 0 };
407    int ret;
408    int dtmp;
409    int i = 0, j = 0;
410    BOOL found = FALSE;
411
412    // Load the SNMP dll and get the addresses of the functions necessary
413    HINSTANCE m_hInst = LoadLibrary("inetmib1.dll");
414    if (m_hInst < (HINSTANCE) HINSTANCE_ERROR)
415    {
416       m_hInst = NULL;
417       return -1;
418    }
419    pSnmpExtensionInit m_Init =
420        (pSnmpExtensionInit) GetProcAddress(m_hInst, "SnmpExtensionInit");
421    pSnmpExtensionInitEx m_InitEx =
422        (pSnmpExtensionInitEx) GetProcAddress(m_hInst, "SnmpExtensionInitEx");
423    pSnmpExtensionQuery m_Query =
424        (pSnmpExtensionQuery) GetProcAddress(m_hInst, "SnmpExtensionQuery");
425    pSnmpExtensionTrap m_Trap =
426        (pSnmpExtensionTrap) GetProcAddress(m_hInst, "SnmpExtensionTrap");
427    m_Init(GetTickCount(), &PollForTrapEvent, &SupportedView);
428
429    /* Initialize the variable list to be retrieved by m_Query */
430    varBindList.list = varBind;
431    varBind[0].name = MIB_NULL;
432    varBind[1].name = MIB_NULL;
433
434    // Copy in the OID to find the number of entries in the
435    // Inteface table
436    varBindList.len = 1;        // Only retrieving one item
437    SNMP_oidcpy(&varBind[0].name, &MIB_ifEntryNum);
438    ret = m_Query(ASN_RFC1157_GETNEXTREQUEST, &varBindList, &errorStatus,
439                  &errorIndex);
440 //   printf("# of adapters in this system : %i\n",
441 //          varBind[0].value.asnValue.number); varBindList.len = 2;
442
443    // Copy in the OID of ifType, the type of interface
444    SNMP_oidcpy(&varBind[0].name, &MIB_ifEntryType);
445
446    // Copy in the OID of ifPhysAddress, the address
447    SNMP_oidcpy(&varBind[1].name, &MIB_ifMACEntAddr);
448
449    do
450    {
451       // Submit the query.  Responses will be loaded into varBindList.
452       // We can expect this call to succeed a # of times corresponding
453       // to the # of adapters reported to be in the system
454       ret = m_Query(ASN_RFC1157_GETNEXTREQUEST, &varBindList, &errorStatus,
455                     &errorIndex); 
456       if (!ret)
457       {
458          ret = 1;
459       }
460       else
461       {
462          // Confirm that the proper type has been returned
463          ret = SNMP_oidncmp(&varBind[0].name, &MIB_ifEntryType,
464                             MIB_ifEntryType.idLength);
465       }
466       if (!ret)
467       {
468          j++;
469          dtmp = varBind[0].value.asnValue.number;
470          std::cerr << "Interface #" << j << " type : " << dtmp << std::endl;
471
472          // Type 6 describes ethernet interfaces
473          if (dtmp == 6)
474          {
475             // Confirm that we have an address here
476             ret = SNMP_oidncmp(&varBind[1].name, &MIB_ifMACEntAddr,
477                                MIB_ifMACEntAddr.idLength);
478             if ( !ret && varBind[1].value.asnValue.address.stream != NULL )
479             {
480                if ( varBind[1].value.asnType != ASN_RFC1155_IPADDRESS )
481                {
482                    // Ignore all dial-up networking adapters
483                    std::cerr << "Interface #" << j << " is not an IP adress\n";
484                    continue;
485                }
486                   
487                if ( (varBind[1].value.asnValue.address.stream[0] == 0x44)
488                  && (varBind[1].value.asnValue.address.stream[1] == 0x45)
489                  && (varBind[1].value.asnValue.address.stream[2] == 0x53)
490                  && (varBind[1].value.asnValue.address.stream[3] == 0x54)
491                  && (varBind[1].value.asnValue.address.stream[4] == 0x00) )
492                {
493                    // Ignore all dial-up networking adapters
494                    std::cerr << "Interface #" << j << " is a DUN adapter\n";
495                    continue;
496                }
497                if ( (varBind[1].value.asnValue.address.stream[0] == 0x00)
498                  && (varBind[1].value.asnValue.address.stream[1] == 0x00)
499                  && (varBind[1].value.asnValue.address.stream[2] == 0x00)
500                  && (varBind[1].value.asnValue.address.stream[3] == 0x00)
501                  && (varBind[1].value.asnValue.address.stream[4] == 0x00)
502                  && (varBind[1].value.asnValue.address.stream[5] == 0x00) )
503                {
504                   // Ignore NULL addresses returned by other network
505                   // interfaces
506                   std::cerr << "Interface #" << j << " is a NULL address\n";
507                   continue;
508                }
509
510                memcpy( addr, varBind[1].value.asnValue.address.stream, 6);
511             }
512          }
513       }
514    } while (!ret);
515
516    // Free the bindings
517    SNMP_FreeVarBind(&varBind[0]);
518    SNMP_FreeVarBind(&varBind[1]);
519    return 0;
520 #endif //Win32 version
521
522
523 // implementation for POSIX system
524 #ifdef __sun
525    //The POSIX version is broken anyway on Solaris, plus would require full
526    //root power
527    int                     i;
528    struct  arpreq          parpreq;
529    struct  sockaddr_in     sa, *psa;
530    struct  in_addr         inaddr;
531    struct  hostent         *phost;
532    char                    hostname[MAXHOSTNAMELEN];
533    unsigned char           *ptr;
534    char                    **paddrs;
535    int                     sock, status=0;
536
537    if(gethostname(hostname,  MAXHOSTNAMELEN) != 0)
538    {
539       perror("gethostname");
540       return -1;
541    }
542    phost = gethostbyname(hostname);
543    paddrs = phost->h_addr_list;
544
545    sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
546    if(sock == -1)
547    {
548       perror("sock");
549       return -1;
550    }
551    memset(&parpreq, 0, sizeof(struct arpreq));
552    psa = (struct sockaddr_in *) &parpreq.arp_pa;
553
554    memset(psa, 0, sizeof(struct sockaddr_in));
555    psa->sin_family = AF_INET;
556    memcpy(&psa->sin_addr, *paddrs, sizeof(struct in_addr));
557
558    status = ioctl(sock, SIOCGARP, &parpreq);
559    if(status == -1)
560    {
561       perror("SIOCGARP");
562       return -1;
563    }
564    memcpy(addr, parpreq.arp_ha.sa_data, 6);
565
566    return 0;
567 #else
568 #ifdef CMAKE_HAVE_NET_IF_H
569    int       sd;
570    struct ifreq    ifr, *ifrp;
571    struct ifconf    ifc;
572    char buf[1024];
573    int      n, i;
574    unsigned char    *a;
575 #ifdef AF_LINK
576    struct sockaddr_dl *sdlp;
577 #endif
578
579 //
580 // BSD 4.4 defines the size of an ifreq to be
581 // max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len
582 // However, under earlier systems, sa_len isn't present, so the size is 
583 // just sizeof(struct ifreq)
584 // We should investiage the use of SIZEOF_ADDR_IFREQ
585 //
586 #ifdef HAVE_SA_LEN
587 #ifndef max
588 #define max(a,b) ((a) > (b) ? (a) : (b))
589 #endif
590 #define ifreq_size(i) max(sizeof(struct ifreq),\
591      sizeof((i).ifr_name)+(i).ifr_addr.sa_len)
592 #else
593 #define ifreq_size(i) sizeof(struct ifreq)
594 #endif // HAVE_SA_LEN
595
596    if( (sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0 )
597    {
598       return -1;
599    }
600    memset(buf, 0, sizeof(buf));
601    ifc.ifc_len = sizeof(buf);
602    ifc.ifc_buf = buf;
603    if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0)
604    {
605       close(sd);
606       return -1;
607    }
608    n = ifc.ifc_len;
609    for (i = 0; i < n; i+= ifreq_size(*ifrp) )
610    {
611       ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
612       strncpy(ifr.ifr_name, ifrp->ifr_name, IFNAMSIZ);
613 #ifdef SIOCGIFHWADDR
614       if (ioctl(sd, SIOCGIFHWADDR, &ifr) < 0)
615          continue;
616       a = (unsigned char *) &ifr.ifr_hwaddr.sa_data;
617 #else
618 #ifdef SIOCGENADDR
619       // In theory this call should also work on Sun Solaris, but apparently
620       // SIOCGENADDR is not implemented properly thus the call 
621       // ioctl(sd, SIOCGENADDR, &ifr) always returns errno=2 
622       // (No such file or directory)
623       // Furthermore the DLAPI seems to require full root access
624       if (ioctl(sd, SIOCGENADDR, &ifr) < 0)
625          continue;
626       a = (unsigned char *) ifr.ifr_enaddr;
627 #else
628 #ifdef AF_LINK
629       sdlp = (struct sockaddr_dl *) &ifrp->ifr_addr;
630       if ((sdlp->sdl_family != AF_LINK) || (sdlp->sdl_alen != 6))
631          continue;
632       a = (unsigned char *) &sdlp->sdl_data[sdlp->sdl_nlen];
633 #else
634       perror("No way to access hardware");
635       close(sd);
636       return -1;
637 #endif // AF_LINK
638 #endif // SIOCGENADDR
639 #endif // SIOCGIFHWADDR
640       if (!a[0] && !a[1] && !a[2] && !a[3] && !a[4] && !a[5]) continue;
641
642       if (addr) 
643       {
644          memcpy(addr, a, 6);
645          close(sd);
646          return 0;
647       }
648    }
649    close(sd);
650 #endif
651    return -1;
652 #endif //__sun
653 }
654
655 std::string Util::GetMACAddress()
656 {
657    // This code is the result of a long internet search to find something
658    // as compact as possible (not OS independant). We only have to separate
659    // 3 OS: Win32, SunOS and 'real' POSIX
660    // http://groups-beta.google.com/group/comp.unix.solaris/msg/ad36929d783d63be
661    // http://bdn.borland.com/article/0,1410,26040,00.html
662    unsigned char addr[6];
663    int stat = GetMacAddrSys(addr);
664
665    if (0 == stat)
666    {
667       std::string macaddr = "";
668       for (int i=0; i<6; ++i) 
669       {
670          //macaddr += Format("%2.2x", addr[i]);
671          if(i)
672             macaddr += ".";
673          macaddr += Format("%i", (int)addr[i]);
674       }
675       return macaddr;
676    }
677    else
678    {
679       gdcmVerboseMacro("Problem in finding the MAC Address");
680       return "";
681    }
682 }
683
684 /**
685  * \ingroup Util
686  * \brief   Return the IP adress of the machine writting the DICOM image
687  */
688 std::string Util::GetIPAddress()
689 {
690    // This is a rip from 
691    // http://www.codeguru.com/Cpp/I-N/internet/network/article.php/c3445/
692 #ifndef HOST_NAME_MAX
693    // SUSv2 guarantees that `Host names are limited to 255 bytes'.
694    // POSIX 1003.1-2001 guarantees that `Host names (not including the
695    // terminating NUL) are limited to HOST_NAME_MAX bytes'.
696 #  define HOST_NAME_MAX 255
697    // In this case we should maybe check the string was not truncated.
698    // But I don't known how to check that...
699 #if defined(_MSC_VER) || defined(__BORLANDC__)
700    // with WinSock DLL we need to initialise the WinSock before using gethostname
701    WORD wVersionRequested = MAKEWORD(1,0);
702    WSADATA WSAData;
703    int err = WSAStartup(wVersionRequested,&WSAData);
704    if (err != 0)
705    {
706       // Tell the user that we could not find a usable
707       // WinSock DLL.
708       WSACleanup();
709       return "127.0.0.1";
710    }
711 #endif
712   
713 #endif //HOST_NAME_MAX
714
715    std::string str;
716    char szHostName[HOST_NAME_MAX+1];
717    int r = gethostname(szHostName, HOST_NAME_MAX);
718  
719    if( r == 0 )
720    {
721       // Get host adresses
722       struct hostent *pHost = gethostbyname(szHostName);
723  
724       for( int i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
725       {
726          for( int j = 0; j<pHost->h_length; j++ )
727          {
728             if( j > 0 ) str += ".";
729  
730             str += Util::Format("%u", 
731                 (unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
732          }
733          // str now contains one local IP address 
734  
735 #if defined(_MSC_VER) || defined(__BORLANDC__)
736    WSACleanup();
737 #endif
738
739       }
740    }
741    // If an error occur r == -1
742    // Most of the time it will return 127.0.0.1...
743    return str;
744 }
745
746 /**
747  * \ingroup Util
748  * \brief Creates a new UID. As stipulate in the DICOM ref
749  *        each time a DICOM image is create it should have 
750  *        a unique identifier (URI)
751  */
752 std::string Util::CreateUniqueUID(const std::string &root)
753 {
754    std::string radical = root;
755    if( !root.size() )
756    {
757       // No root was specified use "GDCM" then
758       // echo "gdcm" | od -b
759       // 0000000 147 144 143 155 012
760       radical = "147.144.143.155"; // special easter egg 
761    }
762    // else
763    // A root was specified use it to forge our new UID:
764    radical += Util::GetMACAddress();
765    radical += ".";
766    radical += Util::GetCurrentDate();
767    radical += ".";
768    radical += Util::GetCurrentTime();
769
770    return radical;
771 }
772
773 template <class T>
774 std::ostream &binary_write(std::ostream &os, const T &val)
775 {
776    return os.write(reinterpret_cast<const char*>(&val), sizeof val);
777 }
778
779 std::ostream &binary_write(std::ostream &os, const uint16_t &val)
780 {
781 #ifdef GDCM_WORDS_BIGENDIAN
782    uint16_t swap;
783    swap = ((( val << 8 ) & 0x0ff00 ) | (( val >> 8 ) & 0x00ff ) );
784    return os.write(reinterpret_cast<const char*>(&swap), 2);
785 #else
786    return os.write(reinterpret_cast<const char*>(&val), 2);
787 #endif //GDCM_WORDS_BIGENDIAN
788 }
789
790 std::ostream &binary_write(std::ostream &os, const uint32_t &val)
791 {
792 #ifdef GDCM_WORDS_BIGENDIAN
793    uint32_t swap;
794    swap = ( ((val<<24) & 0xff000000) | ((val<<8)  & 0x00ff0000) | 
795             ((val>>8)  & 0x0000ff00) | ((val>>24) & 0x000000ff) );
796    return os.write(reinterpret_cast<const char*>(&swap), 4);
797 #else
798    return os.write(reinterpret_cast<const char*>(&val), 4);
799 #endif //GDCM_WORDS_BIGENDIAN
800 }
801
802 std::ostream &binary_write(std::ostream &os, const char *val)
803 {
804    return os.write(val, strlen(val));
805 }
806
807 std::ostream &binary_write(std::ostream &os, std::string const &val)
808 {
809    return os.write(val.c_str(), val.size());
810 }
811
812 } // end namespace gdcm
813