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