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