Verovio
Source code documentation
vrv.h
1 // Name: vrv.h
3 // Author: Laurent Pugin
4 // Created: 2013
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_H__
9 #define __VRV_H__
10 
11 #include <cstdarg>
12 #include <cstdio>
13 #include <cstring>
14 #include <map>
15 #include <string>
16 #include <unordered_map>
17 #include <vector>
18 
19 #ifndef _WIN32
20 #include <sys/time.h>
21 #else
22 #include <time.h>
23 #endif
24 
25 #include "attdef.h"
26 #include "atttypes.h"
27 #include "toolkitdef.h"
28 
29 namespace vrv {
30 
31 class Object;
32 
38 void LogDebug(const char *fmt, ...);
39 void LogError(const char *fmt, ...);
40 void LogInfo(const char *fmt, ...);
41 void LogWarning(const char *fmt, ...);
42 
46 extern std::vector<std::string> logBuffer;
47 bool LogBufferContains(const std::string &s);
48 void LogString(std::string message, LogLevel level);
49 
53 LogLevel StrToLogLevel(const std::string &level);
54 
58 bool ApproximatelyEqual(double firstVal, double secondVal);
59 
63 bool IsValidInteger(const std::string &value);
64 
68 bool IsValidDouble(const std::string &value);
69 
73 bool IsDigits(const std::string &value);
74 
78 std::string ExtractIDFragment(std::string refID);
79 
83 std::string UTF32to8(const std::u32string &in);
84 
88 std::u32string UTF8to32(const std::string &in);
89 
93 std::string UTF16to8(const std::u16string &in);
94 
99 std::string StringFormat(const char *fmt, ...);
100 // This is the implementation callable with variable arguments
101 std::string StringFormatVariable(const char *format, va_list arg);
102 
107 std::string GetFileVersion(int vmaj, int vmin, int vrev);
108 
112 std::string GetFilename(std::string fullpath);
113 
117 std::string GetVersion();
118 
123 std::string BaseEncodeInt(uint32_t value, uint8_t base);
124 
128 std::string FromCamelCase(const std::string &s);
129 
133 std::string ToCamelCase(const std::string &s);
134 
138 inline data_DURATION DurationMin(data_DURATION dur1, data_DURATION dur2)
139 {
140  return std::min(dur1, dur2);
141 }
142 inline data_DURATION DurationMax(data_DURATION dur1, data_DURATION dur2)
143 {
144  return std::max(dur1, dur2);
145 }
146 
150 extern LogLevel logLevel;
151 extern bool loggingToBuffer;
152 
164 extern struct timeval start;
165 void LogElapsedTimeStart();
166 void LogElapsedTimeStop(const char *msg = "unspecified operation");
167 
168 //----------------------------------------------------------------------------
169 // Notation type checks
170 //----------------------------------------------------------------------------
171 
172 bool IsMensuralType(data_NOTATIONTYPE notationType);
173 bool IsNeumeType(data_NOTATIONTYPE notationType);
174 bool IsTabType(data_NOTATIONTYPE notationType);
175 
176 //----------------------------------------------------------------------------
177 // Base64 code borrowed
178 //----------------------------------------------------------------------------
179 
180 std::string Base64Encode(unsigned char const *bytesToEncode, unsigned int len);
181 std::vector<unsigned char> Base64Decode(std::string const &encodedString);
182 
183 } // namespace vrv
184 
185 #endif