]> Creatis software - gdcm.git/blob - src/gdcmUtil.cxx
* src/*.cxx : first parss to normalize file organisation
[gdcm.git] / src / gdcmUtil.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmUtil.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/02/01 10:29:56 $
7   Version:   $Revision: 1.128 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmUtil.h"
20 #include "gdcmDebug.h"
21 #include <iostream>
22
23 // For GetCurrentDate, GetCurrentTime
24 #include <time.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27
28 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
29 #include <sys/timeb.h>
30 #else
31 #include <sys/time.h>
32 #endif
33
34 #include <stdarg.h>  //only included in implementation file
35 #include <stdio.h>   //only included in implementation file
36
37 #if defined(_MSC_VER) || defined(__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 const std::string Util::GDCM_UID = "1.2.826.0.1.3680043.2.1143";
94 std::string Util::RootUID        = GDCM_UID;
95
96 //-------------------------------------------------------------------------
97 /**
98  * \brief Provide a better 'c++' approach for sprintf
99  * For example c code is:
100  * sprintf(trash, "%04x|%04x", group , elem);
101  *
102  * c++ code is 
103  * std::ostringstream buf;
104  * buf << std::right << std::setw(4) << std::setfill('0') << std::hex
105  *     << group << "|" << std::right << std::setw(4) << std::setfill('0') 
106  *     << std::hex <<  elem;
107  * buf.str();
108  *
109  * gdcm style code is
110  * Format("%04x|%04x", group , elem);
111  */
112 std::string Util::Format(const char *format, ...)
113 {
114    char buffer[2048];
115    va_list args;
116    va_start(args, format);
117    vsprintf(buffer, format, args);  //might be a security flaw
118    va_end(args); // Each invocation of va_start should be matched 
119                  // by a corresponding invocation of va_end
120                  // args is then 'undefined'
121    return buffer;
122 }
123
124
125 /**
126  * \brief Because not available in C++ (?)
127  */
128 void Util::Tokenize (const std::string &str,
129                      std::vector<std::string> &tokens,
130                      const std::string& delimiters)
131 {
132    std::string::size_type lastPos = str.find_first_not_of(delimiters,0);
133    std::string::size_type pos     = str.find_first_of    (delimiters,lastPos);
134    while (std::string::npos != pos || std::string::npos != lastPos)
135    {
136       tokens.push_back(str.substr(lastPos, pos - lastPos));
137       lastPos = str.find_first_not_of(delimiters, pos);
138       pos     = str.find_first_of    (delimiters, lastPos);
139    }
140 }
141
142 /**
143  * \brief Because not available in C++ (?)
144  *        Counts the number of occurences of a substring within a string
145  */
146  
147 int Util::CountSubstring (const std::string &str,
148                           const std::string &subStr)
149 {
150    int count = 0;   // counts how many times it appears
151    std::string::size_type x = 0;       // The index position in the string
152
153    do
154    {
155       x = str.find(subStr,x);       // Find the substring
156       if (x != std::string::npos)   // If present
157       {
158          count++;                  // increase the count
159          x += subStr.length();     // Skip this word
160       }
161    }
162    while (x != std::string::npos);  // Carry on until not present
163
164    return count;
165 }
166
167 /**
168  * \brief  Weed out a string from the non-printable characters (in order
169  *         to avoid corrupting the terminal of invocation when printing)
170  * @param s string to remove non printable characters from
171  */
172 std::string Util::CreateCleanString(std::string const &s)
173 {
174    std::string str = s;
175
176    for(unsigned int i=0; i<str.size(); i++)
177    {
178       if(!isprint((unsigned char)str[i]))
179       {
180          str[i] = '.';
181       }
182    }
183
184    if(str.size() > 0)
185    {
186       if(!isprint((unsigned char)s[str.size()-1]))
187       {
188          if(s[str.size()-1] == 0)
189          {
190             str[str.size()-1] = ' ';
191          }
192       }
193    }
194
195    return str;
196 }
197
198 /**
199  * \brief   Add a SEPARATOR to the end of the name is necessary
200  * @param   pathname file/directory name to normalize 
201  */
202 std::string Util::NormalizePath(std::string const &pathname)
203 {
204    const char SEPARATOR_X      = '/';
205    const char SEPARATOR_WIN    = '\\';
206    const std::string SEPARATOR = "/";
207    std::string name = pathname;
208    int size = name.size();
209
210    if( name[size-1] != SEPARATOR_X && name[size-1] != SEPARATOR_WIN )
211    {
212       name += SEPARATOR;
213    }
214    return name;
215 }
216
217 /**
218  * \brief   Get the (directory) path from a full path file name
219  * @param   fullName file/directory name to extract Path from
220  */
221 std::string Util::GetPath(std::string const &fullName)
222 {
223    std::string res = fullName;
224    int pos1 = res.rfind("/");
225    int pos2 = res.rfind("\\");
226    if( pos1 > pos2)
227    {
228       res.resize(pos1);
229    }
230    else
231    {
232       res.resize(pos2);
233    }
234
235    return res;
236 }
237
238 /**
239  * \brief   Get the (last) name of a full path file name
240  * @param   fullName file/directory name to extract end name from
241  */
242 std::string Util::GetName(std::string const &fullName)
243 {   
244   std::string filename = fullName;
245
246   std::string::size_type slash_pos = filename.rfind("/");
247   std::string::size_type backslash_pos = filename.rfind("\\");
248   slash_pos = slash_pos > backslash_pos ? slash_pos : backslash_pos;
249   if(slash_pos != std::string::npos)
250     {
251     return filename.substr(slash_pos + 1);
252     }
253   else
254     {
255     return filename;
256     }
257
258
259 /**
260  * \brief   Get the current date of the system in a dicom string
261  */
262 std::string Util::GetCurrentDate()
263 {
264     char tmp[512];
265     time_t tloc;
266     time (&tloc);    
267     strftime(tmp,512,"%Y%m%d", localtime(&tloc) );
268     return tmp;
269 }
270
271 /**
272  * \brief   Get the current time of the system in a dicom string
273  */
274 std::string Util::GetCurrentTime()
275 {
276     char tmp[512];
277     time_t tloc;
278     time (&tloc);
279     strftime(tmp,512,"%H%M%S", localtime(&tloc) );
280     return tmp;  
281 }
282
283 /**
284  * \brief  Get both the date and time at the same time to avoid problem 
285  * around midnight where two call could be before and after midnight
286  */
287 std::string Util::GetCurrentDateTime()
288 {
289    char tmp[40];
290    long milliseconds;
291    time_t timep;
292   
293    // We need implementation specific functions to obtain millisecond precision
294 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
295    struct timeb tb;
296    ::ftime(&tb);
297    timep = tb.time;
298    milliseconds = tb.millitm;
299 #else
300    struct timeval tv;
301    gettimeofday (&tv, NULL);
302    timep = tv.tv_sec;
303    // Compute milliseconds from microseconds.
304    milliseconds = tv.tv_usec / 1000;
305 #endif
306    // Obtain the time of day, and convert it to a tm struct.
307    struct tm *ptm = localtime (&timep);
308    // Format the date and time, down to a single second.
309    strftime (tmp, sizeof (tmp), "%Y%m%d%H%M%S", ptm);
310
311    // Add milliseconds
312    std::string r = tmp;
313    r += Format("%03ld", milliseconds);
314
315    return r;
316 }
317
318 /**
319  * \brief Create a /DICOM/ string:
320  * It should a of even length (no odd length ever)
321  * It can contain as many (if you are reading this from your
322  * editor the following character is is backslash followed by zero
323  * that needed to be escaped with an extra backslash for doxygen) \\0
324  * as you want.
325  */
326 std::string Util::DicomString(const char *s, size_t l)
327 {
328    std::string r(s, s+l);
329    gdcmAssertMacro( !(r.size() % 2) ); // == basically 'l' is even
330    return r;
331 }
332
333 /**
334  * \brief Create a /DICOM/ string:
335  * It should a of even length (no odd length ever)
336  * It can contain as many (if you are reading this from your
337  * editor the following character is is backslash followed by zero
338  * that needed to be escaped with an extra backslash for doxygen) \\0
339  * as you want.
340  * This function is similar to DicomString(const char*), 
341  * except it doesn't take a length. 
342  * It only pad with a null character if length is odd
343  */
344 std::string Util::DicomString(const char *s)
345 {
346    size_t l = strlen(s);
347    if( l%2 )
348    {
349       l++;
350    }
351    std::string r(s, s+l);
352    gdcmAssertMacro( !(r.size() % 2) );
353    return r;
354 }
355
356 /**
357  * \brief Safely compare two Dicom String:
358  *        - Both string should be of even length
359  *        - We allow padding of even length string by either a null 
360  *          character of a space
361  */
362 bool Util::DicomStringEqual(const std::string &s1, const char *s2)
363 {
364   // s2 is the string from the DICOM reference: 'MONOCHROME1'
365   std::string s1_even = s1; //Never change input parameter
366   std::string s2_even = DicomString( s2 );
367   if( s1_even[s1_even.size()-1] == ' ')
368   {
369     s1_even[s1_even.size()-1] = '\0'; //replace space character by null
370   }
371   return s1_even == s2_even;
372 }
373
374 /**
375  * \brief   tells us if the processor we are working with is BigEndian or not
376  */
377 bool Util::IsCurrentProcessorBigEndian()
378 {
379 #ifdef GDCM_WORDS_BIGENDIAN
380    return true;
381 #else
382    return false;
383 #endif
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  * Mini function to return the last digit from a number express in base 256
672  * pre condition data contain an array of 6 unsigned char
673  * post condition carry contain the last digit
674  */
675 inline int getlastdigit(unsigned char *data)
676 {
677   int extended, carry = 0;
678   for(int i=0;i<6;i++)
679     {
680     extended = (carry << 8) + data[i];
681     data[i] = extended / 10;
682     carry = extended % 10;
683     }
684   return carry;
685 }
686
687 /**
688  * \brief Encode the mac address on a fixed lenght string of 15 characters.
689  * we save space this way.
690  */
691 std::string Util::GetMACAddress()
692 {
693    // This code is the result of a long internet search to find something
694    // as compact as possible (not OS independant). We only have to separate
695    // 3 OS: Win32, SunOS and 'real' POSIX
696    // http://groups-beta.google.com/group/comp.unix.solaris/msg/ad36929d783d63be
697    // http://bdn.borland.com/article/0,1410,26040,00.html
698    unsigned char addr[6];
699
700    int stat = GetMacAddrSys(addr);
701    if (stat == 0)
702    {
703       // We need to convert a 6 digit number from base 256 to base 10, using integer
704       // would requires a 48bits one. To avoid this we have to reimplement the div + modulo 
705       // with string only
706       bool zero = false;
707       int res;
708       std::string sres;
709       while(!zero)
710       {
711          res = getlastdigit(addr);
712          sres.insert(sres.begin(), '0' + res);
713          zero = (addr[0] == 0) && (addr[1] == 0) && (addr[2] == 0) && (addr[3] == 0) && (addr[4] == 0) && (addr[5] == 0);
714       }
715
716       return sres;
717    }
718    else
719    {
720       gdcmVerboseMacro("Problem in finding the MAC Address");
721       return "";
722    }
723 }
724
725 /**
726  * \brief   Return the IP adress of the machine writting the DICOM image
727  */
728 std::string Util::GetIPAddress()
729 {
730    // This is a rip from 
731    // http://www.codeguru.com/Cpp/I-N/internet/network/article.php/c3445/
732 #ifndef HOST_NAME_MAX
733    // SUSv2 guarantees that `Host names are limited to 255 bytes'.
734    // POSIX 1003.1-2001 guarantees that `Host names (not including the
735    // terminating NUL) are limited to HOST_NAME_MAX bytes'.
736 #define HOST_NAME_MAX 255
737    // In this case we should maybe check the string was not truncated.
738    // But I don't known how to check that...
739 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
740    // with WinSock DLL we need to initialize the WinSock before using gethostname
741    WORD wVersionRequested = MAKEWORD(1,0);
742    WSADATA WSAData;
743    int err = WSAStartup(wVersionRequested,&WSAData);
744    if (err != 0)
745    {
746       // Tell the user that we could not find a usable
747       // WinSock DLL.
748       WSACleanup();
749       return "127.0.0.1";
750    }
751 #endif
752   
753 #endif //HOST_NAME_MAX
754
755    std::string str;
756    char szHostName[HOST_NAME_MAX+1];
757    int r = gethostname(szHostName, HOST_NAME_MAX);
758  
759    if( r == 0 )
760    {
761       // Get host adresses
762       struct hostent *pHost = gethostbyname(szHostName);
763  
764       for( int i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
765       {
766          for( int j = 0; j<pHost->h_length; j++ )
767          {
768             if( j > 0 ) str += ".";
769  
770             str += Util::Format("%u", 
771                 (unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
772          }
773          // str now contains one local IP address 
774  
775 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
776    WSACleanup();
777 #endif
778
779       }
780    }
781    // If an error occur r == -1
782    // Most of the time it will return 127.0.0.1...
783    return str;
784 }
785
786 unsigned int Util::GetCurrentThreadID()
787 {
788 // FIXME the implementation is far from complete
789 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
790   return (unsigned int)GetCurrentThreadId();
791 #endif
792 #ifdef __linux__
793    return 0;
794    // Doesn't work on fedora, but is in the man page...
795    //return (unsigned int)gettid();
796 #endif
797 #ifdef __sun
798    return (unsigned int)thr_self();
799 #else
800    //default implementation
801    return 0;
802 #endif
803 }
804
805 unsigned int Util::GetCurrentProcessID()
806 {
807 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
808   // NOTE: There is also a _getpid()...
809   return (unsigned int)GetCurrentProcessId();
810 #else
811   // get process identification, POSIX
812   return (unsigned int)getpid();
813 #endif
814 }
815
816 /**
817  * \brief Creates a new UID. As stipulate in the DICOM ref
818  *        each time a DICOM image is create it should have 
819  *        a unique identifier (URI)
820  * @param root is the DICOM prefix assigned by IOS group
821  */
822 std::string Util::CreateUniqueUID(const std::string &root)
823 {
824    std::string prefix;
825    std::string append;
826    if( root.empty() )
827    {
828       // gdcm UID prefix, as supplied by http://www.medicalconnections.co.uk
829       prefix = RootUID; 
830    }
831    else
832    {
833       prefix = root;
834    }
835
836    // A root was specified use it to forge our new UID:
837    append += ".";
838    append += Util::GetMACAddress();
839    append += ".";
840    append += Util::GetCurrentDateTime();
841
842    //Also add a mini random number just in case:
843    int r = (int) (100.0*rand()/RAND_MAX);
844    append += Format("%02d", r);
845
846    // If append is too long we need to rehash it
847    if( (prefix + append).size() > 64 )
848    {
849       gdcmErrorMacro( "Size of UID is too long." );
850       // we need a hash function to truncate this number
851       // if only md5 was cross plateform
852       // MD5(append);
853    }
854
855    return prefix + append;
856 }
857
858 void Util::SetRootUID(const std::string &root)
859 {
860    if( root.empty() )
861       RootUID = GDCM_UID;
862    else
863       RootUID = root;
864 }
865
866 const std::string &Util::GetRootUID()
867 {
868    return RootUID;
869 }
870
871 //-------------------------------------------------------------------------
872 /**
873  * \brief
874  * @param os ostream to write to
875  * @param val val
876  */ 
877 template <class T>
878 std::ostream &binary_write(std::ostream &os, const T &val)
879 {
880    return os.write(reinterpret_cast<const char*>(&val), sizeof val);
881 }
882
883 /**
884  * \brief binary_write binary_write
885  * @param os ostream to write to 
886  * @param val val
887  */ 
888 std::ostream &binary_write(std::ostream &os, const uint16_t &val)
889 {
890 #ifdef GDCM_WORDS_BIGENDIAN
891    uint16_t swap;
892    swap = ((( val << 8 ) & 0x0ff00 ) | (( val >> 8 ) & 0x00ff ) );
893    return os.write(reinterpret_cast<const char*>(&swap), 2);
894 #else
895    return os.write(reinterpret_cast<const char*>(&val), 2);
896 #endif //GDCM_WORDS_BIGENDIAN
897 }
898
899 /**
900  * \brief binary_write binary_write
901  * @param os ostream to write to
902  * @param val val
903  */ 
904 std::ostream &binary_write(std::ostream &os, const uint32_t &val)
905 {
906 #ifdef GDCM_WORDS_BIGENDIAN
907    uint32_t swap;
908    swap = ( ((val<<24) & 0xff000000) | ((val<<8)  & 0x00ff0000) | 
909             ((val>>8)  & 0x0000ff00) | ((val>>24) & 0x000000ff) );
910    return os.write(reinterpret_cast<const char*>(&swap), 4);
911 #else
912    return os.write(reinterpret_cast<const char*>(&val), 4);
913 #endif //GDCM_WORDS_BIGENDIAN
914 }
915
916 /**
917  * \brief  binary_write binary_write
918  * @param os ostream to write to
919  * @param val val
920  */ 
921 std::ostream &binary_write(std::ostream &os, const char *val)
922 {
923    return os.write(val, strlen(val));
924 }
925
926 /**
927  * \brief
928  * @param os ostream to write to
929  * @param val val
930  */ 
931 std::ostream &binary_write(std::ostream &os, std::string const &val)
932 {
933    return os.write(val.c_str(), val.size());
934 }
935
936 //-------------------------------------------------------------------------
937 } // end namespace gdcm
938