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