Audacity 3.2.0
Namespaces | Classes | Typedefs | Functions | Variables
audacity Namespace Reference

Namespaces

namespace  anonymous_namespace{Uuid.cpp}
 
namespace  network_manager
 
namespace  sentry
 

Classes

struct  GoldenRatio
 
struct  GoldenRatio< 4 >
 
struct  GoldenRatio< 8 >
 
class  TypedAny
 Generates distinct, non-interconvertible types wrapping std::any. More...
 
class  Uuid
 Utility class that generates and parses UUIDs. More...
 

Typedefs

using SystemTime = std::chrono::system_clock::time_point
 

Functions

std::string ToUTF8 (const std::wstring &wstr)
 
std::string ToUTF8 (const wchar_t *wstr)
 
std::string ToUTF8 (const wxString &wstr)
 
std::wstring ToWString (const std::string &str)
 
STRING_UTILS_API std::wstring ToWString (std::string_view str)
 
std::wstring ToWString (const char *str)
 
std::wstring ToWString (const wxString &str)
 
wxString ToWXString (const std::string &str)
 
STRING_UTILS_API wxString ToWXString (std::string_view str)
 
STRING_UTILS_API wxString ToWXString (const char *str)
 
wxString ToWXString (const std::wstring &str)
 
bool ParseRFC822Date (const std::string &dateString, SystemTime *time)
 
std::string SerializeRFC822Date (SystemTime timePoint)
 
uint8_t HexCharToNum (char c) noexcept
 
std::string UrlDecode (const std::string &url)
 
std::string UrlEncode (const std::string &url)
 
template<typename Tag >
void swap (TypedAny< Tag > &x, TypedAny< Tag > &y)
 Non-member swap. More...
 

Variables

constexpr int BRACED_UUID_LENGTH = 38
 
constexpr int UUID_LENGTH = 36
 
constexpr int HEX_UUID_LENGTH = 32
 

Typedef Documentation

◆ SystemTime

using audacity::SystemTime = typedef std::chrono::system_clock::time_point

Definition at line 19 of file DateTimeConversions.h.

Function Documentation

◆ HexCharToNum()

uint8_t audacity::HexCharToNum ( char  c)
inlinenoexcept

Definition at line 20 of file HexHelpers.h.

21{
22 assert (std::isxdigit (c) != 0);
23
24 if ('0' <= c && c <= '9')
25 return c - '0';
26 else if ('A' <= c && c <= 'F')
27 return c - 'A' + 10;
28 else if ('a' <= c && c <= 'f')
29 return c - 'a' + 10;
30
31 return 0;
32}

Referenced by audacity::anonymous_namespace{Uuid.cpp}::readByte(), and UrlDecode().

Here is the caller graph for this function:

◆ ParseRFC822Date()

STRING_UTILS_API bool audacity::ParseRFC822Date ( const std::string &  dateString,
SystemTime time 
)

Definition at line 20 of file DateTimeConversions.cpp.

21{
22 wxDateTime dt;
23 wxString::const_iterator end;
24
25 if (!dt.ParseRfc822Date (dateString, &end))
26 return false;
27
28 if (time != nullptr)
29 *time = std::chrono::system_clock::from_time_t (dt.GetTicks ());
30
31 return true;
32}
auto end(const Ptr< Type, BaseDeleter > &p)
Enables range-for.
Definition: PackedArray.h:159

References PackedArray::end().

Referenced by audacity::network_manager::Cookie::Parse().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SerializeRFC822Date()

STRING_UTILS_API std::string audacity::SerializeRFC822Date ( SystemTime  timePoint)

Definition at line 34 of file DateTimeConversions.cpp.

35{
36 const wxDateTime dt (
37 time_t (std::chrono::duration_cast<std::chrono::seconds> (
38 timePoint.time_since_epoch ()
39 ).count ()));
40
41 return ToUTF8 (dt.Format("%a, %d %b %Y %H:%M:%S %z"));
42}
std::string ToUTF8(const std::wstring &wstr)

References ToUTF8().

Referenced by audacity::network_manager::Cookie::toString().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ swap()

template<typename Tag >
void audacity::swap ( TypedAny< Tag > &  x,
TypedAny< Tag > &  y 
)
inline

Non-member swap.

Definition at line 89 of file TypedAny.h.

89{ x.swap(y); }
void swap(TypedAny &other) noexcept
Definition: TypedAny.h:62

References audacity::TypedAny< Tag >::swap().

Here is the call graph for this function:

◆ ToUTF8() [1/3]

STRING_UTILS_API std::string audacity::ToUTF8 ( const std::wstring &  wstr)

◆ ToUTF8() [2/3]

STRING_UTILS_API std::string audacity::ToUTF8 ( const wchar_t *  wstr)

Definition at line 24 of file CodeConversions.cpp.

25{
26 return std::wstring_convert<std::codecvt_utf8<wchar_t>> ().to_bytes (wstr);
27}

◆ ToUTF8() [3/3]

STRING_UTILS_API std::string audacity::ToUTF8 ( const wxString &  wstr)

Definition at line 29 of file CodeConversions.cpp.

30{
31 return wstr.ToStdString (wxGet_wxConvUTF8 ());
32}

◆ ToWString() [1/4]

STRING_UTILS_API std::wstring audacity::ToWString ( const char *  str)

Definition at line 45 of file CodeConversions.cpp.

46{
47 return std::wstring_convert<std::codecvt_utf8<wchar_t>> ().from_bytes (str);
48}
#define str(a)

References str.

◆ ToWString() [2/4]

STRING_UTILS_API std::wstring audacity::ToWString ( const std::string &  str)

Definition at line 34 of file CodeConversions.cpp.

35{
36 return std::wstring_convert<std::codecvt_utf8<wchar_t>> ().from_bytes (str);
37}

References str.

Referenced by ProjectFileIO::ShowError().

Here is the caller graph for this function:

◆ ToWString() [3/4]

STRING_UTILS_API std::wstring audacity::ToWString ( const wxString &  str)

Definition at line 50 of file CodeConversions.cpp.

51{
52 return str.ToStdWstring ();
53}

References str.

◆ ToWString() [4/4]

STRING_UTILS_API std::wstring audacity::ToWString ( std::string_view  str)

Definition at line 39 of file CodeConversions.cpp.

40{
41 return std::wstring_convert<std::codecvt_utf8<wchar_t>>().from_bytes(
42 str.data(), str.data() + str.length());
43}

References str.

◆ ToWXString() [1/4]

STRING_UTILS_API wxString audacity::ToWXString ( const char *  str)

Definition at line 65 of file CodeConversions.cpp.

66{
67 return wxString::FromUTF8(str);
68}

References str.

◆ ToWXString() [2/4]

STRING_UTILS_API wxString audacity::ToWXString ( const std::string &  str)

◆ ToWXString() [3/4]

STRING_UTILS_API wxString audacity::ToWXString ( const std::wstring &  str)

Definition at line 70 of file CodeConversions.cpp.

71{
72 return wxString (str);
73}

References str.

◆ ToWXString() [4/4]

STRING_UTILS_API wxString audacity::ToWXString ( std::string_view  str)

Definition at line 60 of file CodeConversions.cpp.

61{
62 return wxString::FromUTF8(str.data(), str.length());
63}

References str.

◆ UrlDecode()

STRING_UTILS_API std::string audacity::UrlDecode ( const std::string &  url)

Definition at line 18 of file UrlDecode.cpp.

19{
20 std::string result;
21
22 const size_t length = url.length ();
23
24 for (auto it = url.begin (), end = url.end (); it != end; ++it)
25 {
26 const char c = *it;
27
28 if (c != '%')
29 {
30 result.push_back (c);
31 }
32 else
33 {
34 if (++it == url.end ())
35 break; // Malformed input string
36
37 const char c1 = *it;
38
39 if (++it == url.end ())
40 break; // Malformed input string
41
42 const char c2 = *it;
43
44 result.push_back (HexCharToNum (c1) << 4 | HexCharToNum (c2));
45 }
46 }
47
48 return result;
49}
uint8_t HexCharToNum(char c) noexcept
Definition: HexHelpers.h:20

References PackedArray::end(), and HexCharToNum().

Referenced by cloud::audiocom::OAuthService::HandleLinkURI().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ UrlEncode()

STRING_UTILS_API std::string audacity::UrlEncode ( const std::string &  url)

Definition at line 16 of file UrlEncode.cpp.

17{
18 std::string escaped;
19
20 for (char c : url)
21 {
22 if (('0' <= c && c <= '9') ||
23 ('A' <= c && c <= 'Z') ||
24 ('a' <= c && c <= 'z') ||
25 (c == '~' || c == '-' || c == '_' || c == '.')
26 )
27 {
28 escaped.push_back (c);
29 }
30 else
31 {
32 static const char symbolLookup[] = "0123456789ABCDEF";
33
34 escaped.push_back ('%');
35
36 escaped.push_back (symbolLookup[(c & 0xF0) >> 4]);
37 escaped.push_back (symbolLookup[(c & 0x0F) >> 0]);
38 }
39 }
40
41 return escaped;
42}

Variable Documentation

◆ BRACED_UUID_LENGTH

constexpr int audacity::BRACED_UUID_LENGTH = 38
constexpr

Definition at line 38 of file Uuid.cpp.

Referenced by audacity::Uuid::FromString().

◆ HEX_UUID_LENGTH

constexpr int audacity::HEX_UUID_LENGTH = 32
constexpr

Definition at line 40 of file Uuid.cpp.

Referenced by audacity::Uuid::ToHexString().

◆ UUID_LENGTH

constexpr int audacity::UUID_LENGTH = 36
constexpr

Definition at line 39 of file Uuid.cpp.

Referenced by audacity::Uuid::FromString(), and audacity::Uuid::ToString().