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