]> Creatis software - gdcm.git/blob - src/gdcmUtil.cxx
STYLE: Remove printf + minor improvements
[gdcm.git] / src / gdcmUtil.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmUtil.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/15 23:00:25 $
7   Version:   $Revision: 1.98 $
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.asnValue.address.stream[0] == 0x44)
481                  && (varBind[1].value.asnValue.address.stream[1] == 0x45)
482                  && (varBind[1].value.asnValue.address.stream[2] == 0x53)
483                  && (varBind[1].value.asnValue.address.stream[3] == 0x54)
484                  && (varBind[1].value.asnValue.address.stream[4] == 0x00) )
485                {
486                    // Ignore all dial-up networking adapters
487                    std::cerr << "Interface #" << j << " is a DUN adapter\n";
488                    continue;
489                }
490                if ( (varBind[1].value.asnValue.address.stream[0] == 0x00)
491                  && (varBind[1].value.asnValue.address.stream[1] == 0x00)
492                  && (varBind[1].value.asnValue.address.stream[2] == 0x00)
493                  && (varBind[1].value.asnValue.address.stream[3] == 0x00)
494                  && (varBind[1].value.asnValue.address.stream[4] == 0x00)
495                  && (varBind[1].value.asnValue.address.stream[5] == 0x00) )
496                {
497                   // Ignore NULL addresses returned by other network
498                   // interfaces
499                   std::cerr << "Interface #" << j << " is a NULL address\n";
500                   continue;
501                }
502                memcpy( addr, varBind[1].value.asnValue.address.stream, 6);
503             }
504          }
505       }
506    } while (!ret);
507
508    // Free the bindings
509    SNMP_FreeVarBind(&varBind[0]);
510    SNMP_FreeVarBind(&varBind[1]);
511    return 0;
512 #endif //Win32 version
513
514
515 // implementation for POSIX system
516 #ifdef __sun
517    //The POSIX version is broken anyway on Solaris, plus would require full
518    //root power
519    int                     i;
520    struct  arpreq          parpreq;
521    struct  sockaddr_in     sa, *psa;
522    struct  in_addr         inaddr;
523    struct  hostent         *phost;
524    char                    hostname[MAXHOSTNAMELEN];
525    unsigned char           *ptr;
526    char                    **paddrs;
527    int                     sock, status=0;
528
529    if(gethostname(hostname,  MAXHOSTNAMELEN) != 0)
530    {
531       perror("gethostname");
532       return -1;
533    }
534    phost = gethostbyname(hostname);
535    paddrs = phost->h_addr_list;
536
537    sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
538    if(sock == -1)
539    {
540       perror("sock");
541       return -1;
542    }
543    memset(&parpreq, 0, sizeof(struct arpreq));
544    psa = (struct sockaddr_in *) &parpreq.arp_pa;
545
546    memset(psa, 0, sizeof(struct sockaddr_in));
547    psa->sin_family = AF_INET;
548    memcpy(&psa->sin_addr, *paddrs, sizeof(struct in_addr));
549
550    status = ioctl(sock, SIOCGARP, &parpreq);
551    if(status == -1)
552    {
553       perror("SIOCGARP");
554       return -1;
555    }
556    memcpy(addr, parpreq.arp_ha.sa_data, 6);
557
558    return 0;
559 #else
560 #ifdef CMAKE_HAVE_NET_IF_H
561    int       sd;
562    struct ifreq    ifr, *ifrp;
563    struct ifconf    ifc;
564    char buf[1024];
565    int      n, i;
566    unsigned char    *a;
567 #ifdef AF_LINK
568    struct sockaddr_dl *sdlp;
569 #endif
570
571 //
572 // BSD 4.4 defines the size of an ifreq to be
573 // max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len
574 // However, under earlier systems, sa_len isn't present, so the size is 
575 // just sizeof(struct ifreq)
576 // We should investiage the use of SIZEOF_ADDR_IFREQ
577 //
578 #ifdef HAVE_SA_LEN
579 #ifndef max
580 #define max(a,b) ((a) > (b) ? (a) : (b))
581 #endif
582 #define ifreq_size(i) max(sizeof(struct ifreq),\
583      sizeof((i).ifr_name)+(i).ifr_addr.sa_len)
584 #else
585 #define ifreq_size(i) sizeof(struct ifreq)
586 #endif // HAVE_SA_LEN
587
588    if( (sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0 )
589    {
590       return -1;
591    }
592    memset(buf, 0, sizeof(buf));
593    ifc.ifc_len = sizeof(buf);
594    ifc.ifc_buf = buf;
595    if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0)
596    {
597       close(sd);
598       return -1;
599    }
600    n = ifc.ifc_len;
601    for (i = 0; i < n; i+= ifreq_size(*ifrp) )
602    {
603       ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
604       strncpy(ifr.ifr_name, ifrp->ifr_name, IFNAMSIZ);
605 #ifdef SIOCGIFHWADDR
606       if (ioctl(sd, SIOCGIFHWADDR, &ifr) < 0)
607          continue;
608       a = (unsigned char *) &ifr.ifr_hwaddr.sa_data;
609 #else
610 #ifdef SIOCGENADDR
611       // In theory this call should also work on Sun Solaris, but apparently
612       // SIOCGENADDR is not implemented properly thus the call 
613       // ioctl(sd, SIOCGENADDR, &ifr) always returns errno=2 
614       // (No such file or directory)
615       // Furthermore the DLAPI seems to require full root access
616       if (ioctl(sd, SIOCGENADDR, &ifr) < 0)
617          continue;
618       a = (unsigned char *) ifr.ifr_enaddr;
619 #else
620 #ifdef AF_LINK
621       sdlp = (struct sockaddr_dl *) &ifrp->ifr_addr;
622       if ((sdlp->sdl_family != AF_LINK) || (sdlp->sdl_alen != 6))
623          continue;
624       a = (unsigned char *) &sdlp->sdl_data[sdlp->sdl_nlen];
625 #else
626       perror("No way to access hardware");
627       close(sd);
628       return -1;
629 #endif // AF_LINK
630 #endif // SIOCGENADDR
631 #endif // SIOCGIFHWADDR
632       if (!a[0] && !a[1] && !a[2] && !a[3] && !a[4] && !a[5]) continue;
633
634       if (addr) 
635       {
636          memcpy(addr, a, 6);
637          close(sd);
638          return 0;
639       }
640    }
641    close(sd);
642 #endif
643    return -1;
644 #endif //__sun
645 }
646
647 std::string Util::GetMACAddress()
648 {
649    // This code is the result of a long internet search to find something
650    // as compact as possible (not OS independant). We only have to separate
651    // 3 OS: Win32, SunOS and 'real' POSIX
652    // http://groups-beta.google.com/group/comp.unix.solaris/msg/ad36929d783d63be
653    // http://bdn.borland.com/article/0,1410,26040,00.html
654    unsigned char addr[6];
655    std::string macaddr;
656  
657    int stat = GetMacAddrSys(addr);
658    if (0 == stat)
659    {
660       //printf( "MAC address = ");
661       for (int i=0; i<6; ++i) 
662       {
663          //printf("%2.2x", addr[i]);
664          macaddr += Format("%2.2x", addr[i]);
665       }
666        //printf( "\n");
667       return macaddr;
668    }
669    else
670    {
671       //printf( "No MAC address !\n" );
672       return "";
673    }
674 }
675
676 /**
677  * \ingroup Util
678  * \brief   Return the IP adress of the machine writting the DICOM image
679  */
680 std::string Util::GetIPAddress()
681 {
682   // This is a rip from 
683   // http://www.codeguru.com/Cpp/I-N/internet/network/article.php/c3445/
684 #ifndef HOST_NAME_MAX
685   // SUSv2 guarantees that `Host names are limited to 255 bytes'.
686   // POSIX 1003.1-2001 guarantees that `Host names (not including the
687   // terminating NUL) are limited to HOST_NAME_MAX bytes'.
688 #  define HOST_NAME_MAX 255
689   // In this case we should maybe check the string was not truncated.
690   // But I don't known how to check that...
691 #if defined(_MSC_VER) || defined(__BORLANDC__)
692   // with WinSock DLL we need to initialise the WinSock before using gethostname
693   WORD wVersionRequested = MAKEWORD(1,0);
694   WSADATA WSAData;
695   int err = WSAStartup(wVersionRequested,&WSAData);
696   if (err != 0)
697   {
698       // Tell the user that we could not find a usable
699       // WinSock DLL.
700       WSACleanup();
701       return "127.0.0.1";
702   }
703 #endif
704   
705 #endif //HOST_NAME_MAX
706
707   std::string str;
708   char szHostName[HOST_NAME_MAX+1];
709   int r = gethostname(szHostName, HOST_NAME_MAX);
710
711   if( r == 0 )
712   {
713     // Get host adresses
714     struct hostent *pHost = gethostbyname(szHostName);
715
716     for( int i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
717     {
718       for( int j = 0; j<pHost->h_length; j++ )
719       {
720         if( j > 0 ) str += ".";
721
722         str += Util::Format("%u", 
723             (unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
724       }
725       // str now contains one local IP address 
726
727 #if defined(_MSC_VER) || defined(__BORLANDC__)
728   WSACleanup();
729 #endif
730   
731     }
732   }
733   // If an error occur r == -1
734   // Most of the time it will return 127.0.0.1...
735   return str;
736 }
737
738 /**
739  * \ingroup Util
740  * \brief Creates a new UID. As stipulate in the DICOM ref
741  *        each time a DICOM image is create it should have 
742  *        a unique identifier (URI)
743  */
744 std::string Util::CreateUniqueUID(const std::string &root)
745 {
746   // The code works as follow:
747   // echo "gdcm" | od -b
748   // 0000000 147 144 143 155 012
749   // Therefore we return
750   // radical + 147.144.143.155 + IP + time()
751   std::string radical = root;
752   if( !root.size() ) //anything better ?
753   {
754     radical = "0.0."; // Is this really usefull ?
755   }
756   // else
757   // A root was specified use it to forge our new UID:
758   radical += "147.144.143.155"; // gdcm
759   radical += ".";
760   radical += Util::GetIPAddress();
761   radical += ".";
762   radical += Util::GetCurrentDate();
763   radical += ".";
764   radical += Util::GetCurrentTime();
765
766   return radical;
767 }
768
769 template <class T>
770 std::ostream &binary_write(std::ostream &os, const T &val)
771 {
772     return os.write(reinterpret_cast<const char*>(&val), sizeof val);
773 }
774
775 std::ostream &binary_write(std::ostream &os, const uint16_t &val)
776 {
777 #ifdef GDCM_WORDS_BIGENDIAN
778     uint16_t swap;
779     swap = ((( val << 8 ) & 0x0ff00 ) | (( val >> 8 ) & 0x00ff ) );
780     return os.write(reinterpret_cast<const char*>(&swap), 2);
781 #else
782     return os.write(reinterpret_cast<const char*>(&val), 2);
783 #endif //GDCM_WORDS_BIGENDIAN
784 }
785
786 std::ostream &binary_write(std::ostream &os, const uint32_t &val)
787 {
788 #ifdef GDCM_WORDS_BIGENDIAN
789     uint32_t swap;
790     swap = ( ((val<<24) & 0xff000000) | ((val<<8)  & 0x00ff0000) | 
791              ((val>>8)  & 0x0000ff00) | ((val>>24) & 0x000000ff) );
792     return os.write(reinterpret_cast<const char*>(&swap), 4);
793 #else
794     return os.write(reinterpret_cast<const char*>(&val), 4);
795 #endif //GDCM_WORDS_BIGENDIAN
796 }
797
798 std::ostream &binary_write(std::ostream &os, const char *val)
799 {
800     return os.write(val, strlen(val));
801 }
802
803 std::ostream &binary_write(std::ostream &os, std::string const &val)
804 {
805     return os.write(val.c_str(), val.size());
806 }
807
808 } // end namespace gdcm
809