1 /*=========================================================================
4 Module: $RCSfile: gdcmUtil.cxx,v $
6 Date: $Date: 2005/06/24 10:55:59 $
7 Version: $Revision: 1.155 $
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.
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.
17 =========================================================================*/
20 #include "gdcmDebug.h"
23 // For GetCurrentDate, GetCurrentTime
25 #include <sys/types.h>
28 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
29 #include <sys/timeb.h>
34 #include <stdarg.h> //only included in implementation file
35 #include <stdio.h> //only included in implementation file
37 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
38 #include <winsock.h> // for gethostname and gethostbyname and GetTickCount...
43 #include <unistd.h> // for gethostname
44 #include <netdb.h> // for gethostbyname
55 #include <sys/types.h>
58 #ifdef CMAKE_HAVE_SYS_IOCTL_H
59 #include <sys/ioctl.h> // For SIOCGIFCONF on Linux
61 #ifdef CMAKE_HAVE_SYS_SOCKET_H
62 #include <sys/socket.h>
64 #ifdef CMAKE_HAVE_SYS_SOCKIO_H
65 #include <sys/sockio.h> // For SIOCGIFCONF on SunOS
67 #ifdef CMAKE_HAVE_NET_IF_H
70 #ifdef CMAKE_HAVE_NETINET_IN_H
71 #include <netinet/in.h> //For IPPROTO_IP
73 #ifdef CMAKE_HAVE_NET_IF_DL_H
74 #include <net/if_dl.h>
76 #if defined(CMAKE_HAVE_NET_IF_ARP_H) && defined(__sun)
77 // This is absolutely necessary on SunOS
78 #include <net/if_arp.h>
81 // For GetCurrentThreadID()
83 #include <sys/types.h>
84 #include <linux/unistd.h>
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();
99 //-------------------------------------------------------------------------
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);
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;
116 * result = gdcm::Util::Format("%04x|%04x", group , elem);
118 std::string Util::Format(const char *format, ...)
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'
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
138 void Util::Tokenize (const std::string &str,
139 std::vector<std::string> &tokens,
140 const std::string &delimiters)
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)
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);
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
159 int Util::CountSubstring (const std::string &str,
160 const std::string &subStr)
162 int count = 0; // counts how many times it appears
163 std::string::size_type x = 0; // The index position in the string
167 x = str.find(subStr,x); // Find the substring
168 if (x != std::string::npos) // If present
170 count++; // increase the count
171 x += subStr.length(); // Skip this word
174 while (x != std::string::npos);// Carry on until not present
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
184 std::string Util::CreateCleanString(std::string const &s)
188 for(unsigned int i=0; i<str.size(); i++)
190 if (!isprint((unsigned char)str[i]) )
198 if (!isprint((unsigned char)s[str.size()-1]) )
200 if (s[str.size()-1] == 0 )
202 str[str.size()-1] = ' ';
211 * \brief Add a SEPARATOR to the end of the name is necessary
212 * @param pathname file/directory name to normalize
214 std::string Util::NormalizePath(std::string const &pathname)
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();
222 if ( name[size-1] != SEPARATOR_X && name[size-1] != SEPARATOR_WIN )
230 * \brief Get the (directory) path from a full path file name
231 * @param fullName file/directory name to extract Path from
233 std::string Util::GetPath(std::string const &fullName)
235 std::string res = fullName;
236 int pos1 = res.rfind("/");
237 int pos2 = res.rfind("\\");
251 * \brief Get the (last) name of a full path file name
252 * @param fullName file/directory name to extract end name from
254 std::string Util::GetName(std::string const &fullName)
256 std::string filename = fullName;
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 )
263 return filename.substr(slash_pos + 1);
272 * \brief Get the current date of the system in a dicom string
274 std::string Util::GetCurrentDate()
279 strftime(tmp,512,"%Y%m%d", localtime(&tloc) );
284 * \brief Get the current time of the system in a dicom string
286 std::string Util::GetCurrentTime()
291 strftime(tmp,512,"%H%M%S", localtime(&tloc) );
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
299 std::string Util::GetCurrentDateTime()
305 // We need implementation specific functions to obtain millisecond precision
306 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
310 milliseconds = tb.millitm;
313 gettimeofday (&tv, NULL);
315 // Compute milliseconds from microseconds.
316 milliseconds = tv.tv_usec / 1000;
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);
324 // Don't use Util::Format to accelerate execution of code
326 sprintf(tmpAll,"%s%03ld",tmp,milliseconds);
331 unsigned int Util::GetCurrentThreadID()
333 // FIXME the implementation is far from complete
334 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
335 return (unsigned int)GetCurrentThreadId();
339 // Doesn't work on fedora, but is in the man page...
340 //return (unsigned int)gettid();
343 return (unsigned int)thr_self();
345 //default implementation
352 unsigned int Util::GetCurrentProcessID()
354 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
355 // NOTE: There is also a _getpid()...
356 return (unsigned int)GetCurrentProcessId();
358 // get process identification, POSIX
359 return (unsigned int)getpid();
364 * \brief tells us if the processor we are working with is BigEndian or not
366 bool Util::IsCurrentProcessorBigEndian()
368 #if defined(GDCM_WORDS_BIGENDIAN)
376 * \brief Create a /DICOM/ string:
377 * It should a of even length (no odd length ever)
378 * It can contain as many (if you are reading this from your
379 * editor the following character is is backslash followed by zero
380 * that needed to be escaped with an extra backslash for doxygen) \\0
383 std::string Util::DicomString(const char *s, size_t l)
385 std::string r(s, s+l);
386 gdcmAssertMacro( !(r.size() % 2) ); // == basically 'l' is even
391 * \brief Create a /DICOM/ string:
392 * It should a of even length (no odd length ever)
393 * It can contain as many (if you are reading this from your
394 * editor the following character is backslash followed by zero
395 * that needed to be escaped with an extra backslash for doxygen) \\0
397 * This function is similar to DicomString(const char*),
398 * except it doesn't take a length.
399 * It only pad with a null character if length is odd
401 std::string Util::DicomString(const char *s)
403 size_t l = strlen(s);
408 std::string r(s, s+l);
409 gdcmAssertMacro( !(r.size() % 2) );
414 * \brief Safely compare two Dicom String:
415 * - Both string should be of even length
416 * - We allow padding of even length string by either a null
417 * character of a space
419 bool Util::DicomStringEqual(const std::string &s1, const char *s2)
421 // s2 is the string from the DICOM reference: 'MONOCHROME1'
422 std::string s1_even = s1; //Never change input parameter
423 std::string s2_even = DicomString( s2 );
424 if ( s1_even[s1_even.size()-1] == ' ' )
426 s1_even[s1_even.size()-1] = '\0'; //replace space character by null
428 return s1_even == s2_even;
432 typedef BOOL(WINAPI * pSnmpExtensionInit) (
433 IN DWORD dwTimeZeroReference,
434 OUT HANDLE * hPollForTrapEvent,
435 OUT AsnObjectIdentifier * supportedView);
437 typedef BOOL(WINAPI * pSnmpExtensionTrap) (
438 OUT AsnObjectIdentifier * enterprise,
439 OUT AsnInteger * genericTrap,
440 OUT AsnInteger * specificTrap,
441 OUT AsnTimeticks * timeStamp,
442 OUT RFC1157VarBindList * variableBindings);
444 typedef BOOL(WINAPI * pSnmpExtensionQuery) (
446 IN OUT RFC1157VarBindList * variableBindings,
447 OUT AsnInteger * errorStatus,
448 OUT AsnInteger * errorIndex);
450 typedef BOOL(WINAPI * pSnmpExtensionInitEx) (
451 OUT AsnObjectIdentifier * supportedView);
454 /// \brief gets current M.A.C adress (for internal use only)
455 int GetMacAddrSys ( unsigned char *addr );
456 int GetMacAddrSys ( unsigned char *addr )
460 if ( (WSAStartup(MAKEWORD(2, 0), &WinsockData)) != 0)
462 std::cerr << "This program requires Winsock 2.x!" << std::endl;
466 HANDLE PollForTrapEvent;
467 AsnObjectIdentifier SupportedView;
468 UINT OID_ifEntryType[] = { 1, 3, 6, 1, 2, 1, 2, 2, 1, 3 };
469 UINT OID_ifEntryNum[] = { 1, 3, 6, 1, 2, 1, 2, 1 };
470 UINT OID_ipMACEntAddr[] = { 1, 3, 6, 1, 2, 1, 2, 2, 1, 6 };
471 AsnObjectIdentifier MIB_ifMACEntAddr = {
472 sizeof(OID_ipMACEntAddr) / sizeof(UINT), OID_ipMACEntAddr };
473 AsnObjectIdentifier MIB_ifEntryType = {
474 sizeof(OID_ifEntryType) / sizeof(UINT), OID_ifEntryType };
475 AsnObjectIdentifier MIB_ifEntryNum = {
476 sizeof(OID_ifEntryNum) / sizeof(UINT), OID_ifEntryNum };
477 RFC1157VarBindList varBindList;
478 RFC1157VarBind varBind[2];
479 AsnInteger errorStatus;
480 AsnInteger errorIndex;
481 AsnObjectIdentifier MIB_NULL = { 0, 0 };
486 // Load the SNMP dll and get the addresses of the functions necessary
487 HINSTANCE m_hInst = LoadLibrary("inetmib1.dll");
488 if (m_hInst < (HINSTANCE) HINSTANCE_ERROR)
492 pSnmpExtensionInit m_Init =
493 (pSnmpExtensionInit) GetProcAddress(m_hInst, "SnmpExtensionInit");
494 pSnmpExtensionQuery m_Query =
495 (pSnmpExtensionQuery) GetProcAddress(m_hInst, "SnmpExtensionQuery");
496 m_Init(GetTickCount(), &PollForTrapEvent, &SupportedView);
498 /* Initialize the variable list to be retrieved by m_Query */
499 varBindList.list = varBind;
500 varBind[0].name = MIB_NULL;
501 varBind[1].name = MIB_NULL;
503 // Copy in the OID to find the number of entries in the
505 varBindList.len = 1; // Only retrieving one item
506 SNMP_oidcpy(&varBind[0].name, &MIB_ifEntryNum);
507 m_Query(ASN_RFC1157_GETNEXTREQUEST, &varBindList, &errorStatus,
509 // printf("# of adapters in this system : %i\n",
510 // varBind[0].value.asnValue.number);
513 // Copy in the OID of ifType, the type of interface
514 SNMP_oidcpy(&varBind[0].name, &MIB_ifEntryType);
516 // Copy in the OID of ifPhysAddress, the address
517 SNMP_oidcpy(&varBind[1].name, &MIB_ifMACEntAddr);
521 // Submit the query. Responses will be loaded into varBindList.
522 // We can expect this call to succeed a # of times corresponding
523 // to the # of adapters reported to be in the system
524 ret = m_Query(ASN_RFC1157_GETNEXTREQUEST, &varBindList, &errorStatus,
532 // Confirm that the proper type has been returned
533 ret = SNMP_oidncmp(&varBind[0].name, &MIB_ifEntryType,
534 MIB_ifEntryType.idLength);
539 dtmp = varBind[0].value.asnValue.number;
541 // Type 6 describes ethernet interfaces
544 // Confirm that we have an address here
545 ret = SNMP_oidncmp(&varBind[1].name, &MIB_ifMACEntAddr,
546 MIB_ifMACEntAddr.idLength);
547 if ( !ret && varBind[1].value.asnValue.address.stream != NULL )
549 if ( (varBind[1].value.asnValue.address.stream[0] == 0x44)
550 && (varBind[1].value.asnValue.address.stream[1] == 0x45)
551 && (varBind[1].value.asnValue.address.stream[2] == 0x53)
552 && (varBind[1].value.asnValue.address.stream[3] == 0x54)
553 && (varBind[1].value.asnValue.address.stream[4] == 0x00) )
555 // Ignore all dial-up networking adapters
556 std::cerr << "Interface #" << j << " is a DUN adapter\n";
559 if ( (varBind[1].value.asnValue.address.stream[0] == 0x00)
560 && (varBind[1].value.asnValue.address.stream[1] == 0x00)
561 && (varBind[1].value.asnValue.address.stream[2] == 0x00)
562 && (varBind[1].value.asnValue.address.stream[3] == 0x00)
563 && (varBind[1].value.asnValue.address.stream[4] == 0x00)
564 && (varBind[1].value.asnValue.address.stream[5] == 0x00) )
566 // Ignore NULL addresses returned by other network
568 std::cerr << "Interface #" << j << " is a NULL address\n";
571 memcpy( addr, varBind[1].value.asnValue.address.stream, 6);
578 SNMP_FreeVarBind(&varBind[0]);
579 SNMP_FreeVarBind(&varBind[1]);
581 #endif //Win32 version
584 // implementation for POSIX system
585 #if defined(CMAKE_HAVE_NET_IF_ARP_H) && defined(__sun)
586 //The POSIX version is broken anyway on Solaris, plus would require full
588 struct arpreq parpreq;
589 struct sockaddr_in *psa;
590 struct hostent *phost;
591 char hostname[MAXHOSTNAMELEN];
595 if (gethostname(hostname, MAXHOSTNAMELEN) != 0 )
597 perror("gethostname");
600 phost = gethostbyname(hostname);
601 paddrs = phost->h_addr_list;
603 sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
609 memset(&parpreq, 0, sizeof(struct arpreq));
610 psa = (struct sockaddr_in *) &parpreq.arp_pa;
612 memset(psa, 0, sizeof(struct sockaddr_in));
613 psa->sin_family = AF_INET;
614 memcpy(&psa->sin_addr, *paddrs, sizeof(struct in_addr));
616 status = ioctl(sock, SIOCGARP, &parpreq);
622 memcpy(addr, parpreq.arp_ha.sa_data, 6);
626 #ifdef CMAKE_HAVE_NET_IF_H
628 struct ifreq ifr, *ifrp;
633 #if defined(AF_LINK) && (!defined(SIOCGIFHWADDR) && !defined(SIOCGENADDR))
634 struct sockaddr_dl *sdlp;
638 // BSD 4.4 defines the size of an ifreq to be
639 // max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len
640 // However, under earlier systems, sa_len isn't present, so the size is
641 // just sizeof(struct ifreq)
642 // We should investiage the use of SIZEOF_ADDR_IFREQ
646 #define max(a,b) ((a) > (b) ? (a) : (b))
648 #define ifreq_size(i) max(sizeof(struct ifreq),\
649 sizeof((i).ifr_name)+(i).ifr_addr.sa_len)
651 #define ifreq_size(i) sizeof(struct ifreq)
652 #endif // HAVE_SA_LEN
654 if ( (sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0 )
658 memset(buf, 0, sizeof(buf));
659 ifc.ifc_len = sizeof(buf);
661 if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0)
667 for (i = 0; i < n; i+= ifreq_size(*ifrp) )
669 ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
670 strncpy(ifr.ifr_name, ifrp->ifr_name, IFNAMSIZ);
672 if (ioctl(sd, SIOCGIFHWADDR, &ifr) < 0)
674 a = (unsigned char *) &ifr.ifr_hwaddr.sa_data;
677 // In theory this call should also work on Sun Solaris, but apparently
678 // SIOCGENADDR is not implemented properly thus the call
679 // ioctl(sd, SIOCGENADDR, &ifr) always returns errno=2
680 // (No such file or directory)
681 // Furthermore the DLAPI seems to require full root access
682 if (ioctl(sd, SIOCGENADDR, &ifr) < 0)
684 a = (unsigned char *) ifr.ifr_enaddr;
687 sdlp = (struct sockaddr_dl *) &ifrp->ifr_addr;
688 if ((sdlp->sdl_family != AF_LINK) || (sdlp->sdl_alen != 6))
690 a = (unsigned char *) &sdlp->sdl_data[sdlp->sdl_nlen];
692 perror("No way to access hardware");
696 #endif // SIOCGENADDR
697 #endif // SIOCGIFHWADDR
698 if (!a[0] && !a[1] && !a[2] && !a[3] && !a[4] && !a[5]) continue;
709 // Not implemented platforms
710 perror("There was a configuration problem on your plateform");
717 * \brief Mini function to return the last digit from a number express in base 256
718 * pre condition data contain an array of 6 unsigned char
719 * post condition carry contain the last digit
721 inline int getlastdigit(unsigned char *data)
723 int extended, carry = 0;
726 extended = (carry << 8) + data[i];
727 data[i] = extended / 10;
728 carry = extended % 10;
734 * \brief Encode the mac address on a fixed lenght string of 15 characters.
735 * we save space this way.
737 std::string Util::GetMACAddress()
739 // This code is the result of a long internet search to find something
740 // as compact as possible (not OS independant). We only have to separate
741 // 3 OS: Win32, SunOS and 'real' POSIX
742 // http://groups-beta.google.com/group/comp.unix.solaris/msg/ad36929d783d63be
743 // http://bdn.borland.com/article/0,1410,26040,00.html
744 unsigned char addr[6];
746 int stat = GetMacAddrSys(addr);
749 // We need to convert a 6 digit number from base 256 to base 10, using integer
750 // would requires a 48bits one. To avoid this we have to reimplement the div + modulo
757 res = getlastdigit(addr);
758 sres.insert(sres.begin(), '0' + res);
759 zero = (addr[0] == 0) && (addr[1] == 0) && (addr[2] == 0)
760 && (addr[3] == 0) && (addr[4] == 0) && (addr[5] == 0);
767 gdcmWarningMacro("Problem in finding the MAC Address");
773 * \brief Creates a new UID. As stipulate in the DICOM ref
774 * each time a DICOM image is create it should have
775 * a unique identifier (URI)
776 * @param root is the DICOM prefix assigned by IOS group
778 std::string Util::CreateUniqueUID(const std::string &root)
784 // gdcm UID prefix, as supplied by http://www.medicalconnections.co.uk
792 // A root was specified use it to forge our new UID:
794 //append += Util::GetMACAddress(); // to save CPU time
795 append += Util::GDCM_MAC_ADRESS;
797 append += Util::GetCurrentDateTime();
799 //Also add a mini random number just in case:
801 int r = (int) (100.0*rand()/RAND_MAX);
802 // Don't use Util::Format to accelerate the execution
803 sprintf(tmp,"%02d", r);
806 // If append is too long we need to rehash it
807 if ( (prefix + append).size() > 64 )
809 gdcmErrorMacro( "Size of UID is too long." );
810 // we need a hash function to truncate this number
811 // if only md5 was cross plateform
815 return prefix + append;
818 void Util::SetRootUID(const std::string &root)
826 const std::string &Util::GetRootUID()
831 //-------------------------------------------------------------------------
833 * \brief binary_write binary_write
834 * @param os ostream to write to
837 std::ostream &binary_write(std::ostream &os, const uint16_t &val)
839 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)
841 //swap = ((( val << 8 ) & 0xff00 ) | (( val >> 8 ) & 0x00ff ) );
843 swap = ( val << 8 | val >> 8 );
845 return os.write(reinterpret_cast<const char*>(&swap), 2);
847 return os.write(reinterpret_cast<const char*>(&val), 2);
848 #endif //GDCM_WORDS_BIGENDIAN
852 * \brief binary_write binary_write
853 * @param os ostream to write to
856 std::ostream &binary_write(std::ostream &os, const uint32_t &val)
858 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)
860 // swap = ( ((val<<24) & 0xff000000) | ((val<<8) & 0x00ff0000) |
861 // ((val>>8) & 0x0000ff00) | ((val>>24) & 0x000000ff) );
863 swap = ( (val<<24) | ((val<<8) & 0x00ff0000) |
864 ((val>>8) & 0x0000ff00) | (val>>24) );
865 return os.write(reinterpret_cast<const char*>(&swap), 4);
867 return os.write(reinterpret_cast<const char*>(&val), 4);
868 #endif //GDCM_WORDS_BIGENDIAN
872 * \brief binary_write binary_write
873 * @param os ostream to write to
876 std::ostream &binary_write(std::ostream &os, const char *val)
878 return os.write(val, strlen(val));
883 * @param os ostream to write to
886 std::ostream &binary_write(std::ostream &os, std::string const &val)
888 return os.write(val.c_str(), val.size());
892 * \brief binary_write binary_write
893 * @param os ostream to write to
895 * @param len length of the 'value' to be written
897 std::ostream &binary_write(std::ostream &os, const uint8_t *val, size_t len)
899 // We are writting sizeof(char) thus no need to swap bytes
900 return os.write(reinterpret_cast<const char*>(val), len);
904 * \brief binary_write binary_write
905 * @param os ostream to write to
907 * @param len length of the 'value' to be written
909 std::ostream &binary_write(std::ostream &os, const uint16_t *val, size_t len)
911 // This is tricky since we are writting two bytes buffer.
912 // Be carefull with little endian vs big endian.
913 // Also this other trick is to allocate a small (efficient) buffer that store
914 // intermediate result before writting it.
915 #if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION)
916 const int BUFFER_SIZE = 4096;
917 static char buffer[BUFFER_SIZE];
918 uint16_t *binArea16 = (uint16_t*)val; //for the const
920 // how many BUFFER_SIZE long pieces in binArea ?
921 int nbPieces = len/BUFFER_SIZE; //(16 bits = 2 Bytes)
922 int remainingSize = len%BUFFER_SIZE;
924 for (int j=0;j<nbPieces;j++)
926 uint16_t *pbuffer = (uint16_t*)buffer; //reinitialize pbuffer
927 for (int i = 0; i < BUFFER_SIZE/2; i++)
929 *pbuffer = *binArea16 >> 8 | *binArea16 << 8;
933 os.write ( buffer, BUFFER_SIZE );
935 if ( remainingSize > 0)
937 uint16_t *pbuffer = (uint16_t*)buffer; //reinitialize pbuffer
938 for (int i = 0; i < remainingSize/2; i++)
940 *pbuffer = *binArea16 >> 8 | *binArea16 << 8;
944 os.write ( buffer, remainingSize );
948 return os.write(reinterpret_cast<const char*>(val), len);
952 //-------------------------------------------------------------------------
955 //-------------------------------------------------------------------------
958 * \brief Return the IP adress of the machine writting the DICOM image
960 std::string Util::GetIPAddress()
962 // This is a rip from
963 // http://www.codeguru.com/Cpp/I-N/internet/network/article.php/c3445/
964 #ifndef HOST_NAME_MAX
965 // SUSv2 guarantees that `Host names are limited to 255 bytes'.
966 // POSIX 1003.1-2001 guarantees that `Host names (not including the
967 // terminating NUL) are limited to HOST_NAME_MAX bytes'.
968 #define HOST_NAME_MAX 255
969 // In this case we should maybe check the string was not truncated.
970 // But I don't known how to check that...
971 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
972 // with WinSock DLL we need to initialize the WinSock before using gethostname
973 WORD wVersionRequested = MAKEWORD(1,0);
975 int err = WSAStartup(wVersionRequested,&WSAData);
978 // Tell the user that we could not find a usable
985 #endif //HOST_NAME_MAX
988 char szHostName[HOST_NAME_MAX+1];
989 int r = gethostname(szHostName, HOST_NAME_MAX);
994 struct hostent *pHost = gethostbyname(szHostName);
996 for( int i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
998 for( int j = 0; j<pHost->h_length; j++ )
1000 if ( j > 0 ) str += ".";
1002 str += Util::Format("%u",
1003 (unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
1005 // str now contains one local IP address
1007 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
1013 // If an error occur r == -1
1014 // Most of the time it will return 127.0.0.1...
1018 //-------------------------------------------------------------------------
1019 } // end namespace gdcm