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