1 /*=========================================================================
4 Module: $RCSfile: gdcmUtil.h,v $
6 Date: $Date: 2005/01/11 15:15:38 $
7 Version: $Revision: 1.49 $
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 =========================================================================*/
22 #include "gdcmCommon.h"
29 * \ingroup Globals Utility functions
30 * \brief Here are some utility functions, belonging to the Util class,
31 * dealing with strings, file names... that can be called
32 * from anywhere by whomsoever they can help.
35 //-----------------------------------------------------------------------------
37 class GDCM_EXPORT Util
40 static std::string Format(const char *format, ...);
41 static void Tokenize (const std::string &str,
42 std::vector<std::string> &tokens,
43 const std::string &delimiters = " ");
44 static int CountSubstring (const std::string &str,
45 const std::string &subStr);
47 static std::string CreateCleanString(std::string const &s);
48 static std::string NormalizePath(std::string const &name);
49 static std::string GetPath(std::string const &fullName);
50 static std::string GetName(std::string const &fullName);
51 static std::string GetCurrentDate();
52 static std::string GetCurrentTime();
54 static std::string DicomString(const char *s, size_t l);
55 static std::string DicomString(const char *s);
56 static bool DicomStringEqual(const std::string &s1, const char *s2);
57 static std::string CreateUniqueUID(const std::string &root = "");
58 static bool IsCurrentProcessorBigEndian();
60 static std::string GetMACAddress();
63 static std::string GetIPAddress(); //Do not expose this method
67 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const T &val);
68 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint16_t &val);
69 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint32_t &val);
70 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const char *val);
71 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const & val);
72 } // end namespace gdcm
73 //-----------------------------------------------------------------------------