]> Creatis software - gdcm.git/blob - src/gdcmUtil.h
In order to prepare the future extension of SerieHelper::AddRestriction (key,
[gdcm.git] / src / gdcmUtil.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmUtil.h,v $
5   Language:  C++
6   Date:      $Date: 2005/07/18 10:20:20 $
7   Version:   $Revision: 1.58 $
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 #ifndef GDCMUTIL_H
20 #define GDCMUTIL_H
21
22 #include "gdcmCommon.h"
23 #include <vector>
24 #include <string>
25
26 namespace gdcm 
27 {
28 /**
29  * \brief    Here are some utility functions, belonging to the gdcm::Util class,
30  *           dealing with strings, file names... that can be called
31  *           from anywhere by whomsoever they can help.
32  */
33
34 //-----------------------------------------------------------------------------
35
36 class GDCM_EXPORT Util
37 {
38 public:
39    static std::string Format(const char *format, ...);
40    static void        Tokenize (const std::string &str,
41                                 std::vector<std::string> &tokens,
42                                 const std::string &delimiters = " ");
43    static int         CountSubstring (const std::string &str,
44                                       const std::string &subStr);       
45
46    static std::string CreateCleanString(std::string const &s);
47    static std::string NormalizePath(std::string const &name);
48    static std::string GetPath(std::string const &fullName);
49    static std::string GetName(std::string const &fullName);
50    static std::string GetCurrentDate();
51    static std::string GetCurrentTime();
52    static std::string GetCurrentDateTime();
53    static unsigned int GetCurrentThreadID();
54    static unsigned int GetCurrentProcessID();
55    static bool         IsCurrentProcessorBigEndian();
56
57    static std::string DicomString(const char *s, size_t l);
58    static std::string DicomString(const char *s);
59    static bool        DicomStringEqual(const std::string &s1, const char *s2);
60    static bool        CompareDicomString(const std::string &s1, const char *s2, int op);
61    static std::string GetMACAddress();
62
63    static std::string CreateUniqueUID(const std::string &root = "");
64    static void SetRootUID(const std::string &root = "");
65    static const std::string &GetRootUID();
66
67    static const uint8_t *GetFileMetaInformationVersion() 
68                      { return FileMetaInformationVersion;};
69    static void SetFileMetaInformationVersion( uint16_t fmiv )
70                      { FileMetaInformationVersion = (uint8_t *)&fmiv; };
71
72 private:
73    static std::string GetIPAddress(); //Do not expose this method
74
75    static std::string RootUID;
76    static const std::string GDCM_UID;
77    static uint8_t *FileMetaInformationVersion;
78    static const uint16_t FMIV;
79    static std::string GDCM_MAC_ADRESS;
80 };
81
82 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint16_t &val);
83 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint32_t &val);
84 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const char *val);
85 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const &val);
86 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint8_t *val, size_t len);
87 GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint16_t *val, size_t len);
88 } // end namespace gdcm
89 //-----------------------------------------------------------------------------
90 #endif