123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311 |
- /*
- *
- * Copyright (c) 2004
- * John Maddock
- *
- * Use, modification and distribution are subject to the
- * Boost Software License, Version 1.0. (See accompanying file
- * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- *
- */
-
- /*
- * LOCATION: see http://www.boost.org for most recent version.
- * FILE w32_regex_traits.hpp
- * VERSION see <boost/version.hpp>
- * DESCRIPTION: Declares regular expression traits class w32_regex_traits.
- */
- #ifndef BOOST_W32_REGEX_TRAITS_HPP_INCLUDED
- #define BOOST_W32_REGEX_TRAITS_HPP_INCLUDED
- #ifndef BOOST_REGEX_NO_WIN32_LOCALE
- #include <boost/regex/pattern_except.hpp>
- #include <boost/regex/v5/regex_traits_defaults.hpp>
- #ifdef BOOST_HAS_THREADS
- #include <mutex>
- #endif
- #include <boost/regex/v5/primary_transform.hpp>
- #include <boost/regex/v5/object_cache.hpp>
- #if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(UNDER_CE)
- #pragma comment(lib, "user32.lib")
- #endif
- #ifdef BOOST_REGEX_MSVC
- #pragma warning(push)
- #pragma warning(disable:4786)
- #if BOOST_REGEX_MSVC < 1910
- #pragma warning(disable:4800)
- #endif
- #endif
- #ifndef BASETYPES
- //
- // windows.h not included, so lets forward declare what we need:
- //
- #ifndef NO_STRICT
- #ifndef STRICT
- #define STRICT 1
- #endif
- #endif
- #if defined(STRICT)
- #define BOOST_RE_DETAIL_DECLARE_HANDLE(x) struct x##__; typedef struct x##__ *x
- #else
- #define BOOST_RE_DETAIL_DECLARE_HANDLE(x) typedef void* x
- #endif
- //
- // This must be in the global namespace:
- //
- extern "C" {
- BOOST_RE_DETAIL_DECLARE_HANDLE(HINSTANCE);
- typedef HINSTANCE HMODULE;
- }
- #endif
- namespace boost{
- //
- // forward declaration is needed by some compilers:
- //
- template <class charT>
- class w32_regex_traits;
-
- namespace BOOST_REGEX_DETAIL_NS{
- //
- // start by typedeffing the types we'll need:
- //
- typedef unsigned long lcid_type; // placeholder for LCID.
- typedef std::shared_ptr<void> cat_type; // placeholder for dll HANDLE.
- //
- // then add wrappers around the actual Win32 API's (ie implementation hiding):
- //
- lcid_type w32_get_default_locale();
- bool w32_is_lower(char, lcid_type);
- #ifndef BOOST_NO_WREGEX
- bool w32_is_lower(wchar_t, lcid_type);
- #endif
- bool w32_is_upper(char, lcid_type);
- #ifndef BOOST_NO_WREGEX
- bool w32_is_upper(wchar_t, lcid_type);
- #endif
- cat_type w32_cat_open(const std::string& name);
- std::string w32_cat_get(const cat_type& cat, lcid_type state_id, int i, const std::string& def);
- #ifndef BOOST_NO_WREGEX
- std::wstring w32_cat_get(const cat_type& cat, lcid_type state_id, int i, const std::wstring& def);
- #endif
- std::string w32_transform(lcid_type state_id, const char* p1, const char* p2);
- #ifndef BOOST_NO_WREGEX
- std::wstring w32_transform(lcid_type state_id, const wchar_t* p1, const wchar_t* p2);
- #endif
- char w32_tolower(char c, lcid_type);
- #ifndef BOOST_NO_WREGEX
- wchar_t w32_tolower(wchar_t c, lcid_type);
- #endif
- char w32_toupper(char c, lcid_type);
- #ifndef BOOST_NO_WREGEX
- wchar_t w32_toupper(wchar_t c, lcid_type);
- #endif
- bool w32_is(lcid_type, std::uint32_t mask, char c);
- #ifndef BOOST_NO_WREGEX
- bool w32_is(lcid_type, std::uint32_t mask, wchar_t c);
- #endif
- #ifndef BASETYPES
- //
- // Forward declarations of the small number of windows types and API's we use:
- //
- #if !defined(__LP64__)
- using dword = unsigned long;
- #else
- using DWORD = unsigned int;
- #endif
- using word = unsigned short;
- using lctype = dword;
- static constexpr dword ct_ctype1 = 0x00000001;
- static constexpr dword c1_upper = 0x0001; // upper case
- static constexpr dword c1_lower = 0x0002; // lower case
- static constexpr dword c1_digit = 0x0004; // decimal digits
- static constexpr dword c1_space = 0x0008; // spacing characters
- static constexpr dword c1_punct = 0x0010; // punctuation characters
- static constexpr dword c1_cntrl = 0x0020; // control characters
- static constexpr dword c1_blank = 0x0040; // blank characters
- static constexpr dword c1_xdigit = 0x0080; // other digits
- static constexpr dword c1_alpha = 0x0100; // any linguistic character
- static constexpr dword c1_defined = 0x0200; // defined character
- static constexpr unsigned int cp_acp = 0;
- static constexpr dword lcmap_lowercase = 0x00000100;
- static constexpr dword lcmap_uppercase = 0x00000200;
- static constexpr dword lcmap_sortkey = 0x00000400; // WC sort key (normalize)
- static constexpr lctype locale_idefaultansicodepage = 0x00001004;
- # ifdef UNDER_CE
- # ifndef WINAPI
- # ifndef _WIN32_WCE_EMULATION
- # define BOOST_RE_STDCALL __cdecl // Note this doesn't match the desktop definition
- # else
- # define BOOST_RE_STDCALL __stdcall
- # endif
- # endif
- # else
- # if defined(_M_IX86) || defined(__i386__)
- # define BOOST_RE_STDCALL __stdcall
- # else
- // On architectures other than 32-bit x86 __stdcall is ignored. Clang also issues a warning.
- # define BOOST_RE_STDCALL
- # endif
- # endif
- #if defined (WIN32_PLATFORM_PSPC)
- #define BOOST_RE_IMPORT __declspec( dllimport )
- #elif defined (_WIN32_WCE)
- #define BOOST_RE_IMPORT
- #else
- #define BOOST_RE_IMPORT __declspec( dllimport )
- #endif
- extern "C" {
- BOOST_RE_IMPORT int BOOST_RE_STDCALL FreeLibrary(HMODULE hLibModule);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL LCMapStringA(lcid_type Locale, dword dwMapFlags, const char* lpSrcStr, int cchSrc, char* lpDestStr, int cchDest);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL LCMapStringW(lcid_type Locale, dword dwMapFlags, const wchar_t* lpSrcStr, int cchSrc, wchar_t* lpDestStr, int cchDest);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL MultiByteToWideChar(unsigned int CodePage, dword dwFlags, const char* lpMultiByteStr, int cbMultiByte, wchar_t* lpWideCharStr, int cchWideChar);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL LCMapStringW(lcid_type Locale, dword dwMapFlags, const wchar_t* lpSrcStr, int cchSrc, wchar_t* lpDestStr, int cchDest);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL WideCharToMultiByte(unsigned int CodePage, dword dwFlags, const wchar_t* lpWideCharStr, int cchWideChar, char* lpMultiByteStr, int cbMultiByte, const char* lpDefaultChar, int* lpUsedDefaultChar);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL GetStringTypeExA(lcid_type Locale, dword dwInfoType, const char* lpSrcStr, int cchSrc, word* lpCharType);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL GetStringTypeExW(lcid_type Locale, dword dwInfoType, const wchar_t* lpSrcStr, int cchSrc, word* lpCharType);
- BOOST_RE_IMPORT lcid_type BOOST_RE_STDCALL GetUserDefaultLCID();
- BOOST_RE_IMPORT int BOOST_RE_STDCALL GetStringTypeExA(lcid_type Locale, dword dwInfoType, const char* lpSrcStr, int cchSrc, word* lpCharType);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL GetStringTypeExW(lcid_type Locale, dword dwInfoType, const wchar_t* lpSrcStr, int cchSrc, word* lpCharType);
- BOOST_RE_IMPORT HMODULE BOOST_RE_STDCALL LoadLibraryA(const char* lpLibFileName);
- BOOST_RE_IMPORT HMODULE BOOST_RE_STDCALL LoadLibraryW(const wchar_t* lpLibFileName);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL LoadStringW(HINSTANCE hInstance, unsigned int uID, wchar_t* lpBuffer, int cchBufferMax);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL LoadStringA(HINSTANCE hInstance, unsigned int uID, char* lpBuffer, int cchBufferMax);
- BOOST_RE_IMPORT int BOOST_RE_STDCALL GetLocaleInfoW(lcid_type Locale, lctype LCType, wchar_t* lpLCData, int cchData);
- }
- #else
- //
- // We have windows.h already included:
- //
- using dword = DWORD;
- using word = WORD;
- using lctype = LCTYPE;
- static constexpr dword ct_ctype1 = 0x00000001;
- static constexpr dword c1_upper = 0x0001; // upper case
- static constexpr dword c1_lower = 0x0002; // lower case
- static constexpr dword c1_digit = 0x0004; // decimal digits
- static constexpr dword c1_space = 0x0008; // spacing characters
- static constexpr dword c1_punct = 0x0010; // punctuation characters
- static constexpr dword c1_cntrl = 0x0020; // control characters
- static constexpr dword c1_blank = 0x0040; // blank characters
- static constexpr dword c1_xdigit = 0x0080; // other digits
- static constexpr dword c1_alpha = 0x0100; // any linguistic character
- static constexpr dword c1_defined = 0x0200; // defined character
- static constexpr unsigned int cp_acp = 0;
- static constexpr dword lcmap_lowercase = 0x00000100;
- static constexpr dword lcmap_uppercase = 0x00000200;
- static constexpr dword lcmap_sortkey = 0x00000400; // WC sort key (normalize)
- static constexpr lctype locale_idefaultansicodepage = 0x00001004;
- using ::FreeLibrary;
- using ::LCMapStringA;
- using ::LCMapStringW;
- using ::MultiByteToWideChar;
- using ::LCMapStringW;
- using ::WideCharToMultiByte;
- using ::GetStringTypeExA;
- using ::GetStringTypeExW;
- using ::GetUserDefaultLCID;
- using ::GetStringTypeExA;
- using ::GetStringTypeExW;
- using ::LoadLibraryA;
- using ::LoadLibraryW;
- using ::LoadStringW;
- using ::LoadStringA;
- using ::GetLocaleInfoW;
- #endif
- //
- // class w32_regex_traits_base:
- // acts as a container for locale and the facets we are using.
- //
- template <class charT>
- struct w32_regex_traits_base
- {
- w32_regex_traits_base(lcid_type l)
- { imbue(l); }
- lcid_type imbue(lcid_type l);
- lcid_type m_locale;
- };
- template <class charT>
- inline lcid_type w32_regex_traits_base<charT>::imbue(lcid_type l)
- {
- lcid_type result(m_locale);
- m_locale = l;
- return result;
- }
- //
- // class w32_regex_traits_char_layer:
- // implements methods that require specialisation for narrow characters:
- //
- template <class charT>
- class w32_regex_traits_char_layer : public w32_regex_traits_base<charT>
- {
- typedef std::basic_string<charT> string_type;
- typedef std::map<charT, regex_constants::syntax_type> map_type;
- typedef typename map_type::const_iterator map_iterator_type;
- public:
- w32_regex_traits_char_layer(const lcid_type l);
- regex_constants::syntax_type syntax_type(charT c)const
- {
- map_iterator_type i = m_char_map.find(c);
- return ((i == m_char_map.end()) ? 0 : i->second);
- }
- regex_constants::escape_syntax_type escape_syntax_type(charT c) const
- {
- map_iterator_type i = m_char_map.find(c);
- if(i == m_char_map.end())
- {
- if(::boost::BOOST_REGEX_DETAIL_NS::w32_is_lower(c, this->m_locale)) return regex_constants::escape_type_class;
- if(::boost::BOOST_REGEX_DETAIL_NS::w32_is_upper(c, this->m_locale)) return regex_constants::escape_type_not_class;
- return 0;
- }
- return i->second;
- }
- charT tolower(charT c)const
- {
- return ::boost::BOOST_REGEX_DETAIL_NS::w32_tolower(c, this->m_locale);
- }
- bool isctype(std::uint32_t mask, charT c)const
- {
- return ::boost::BOOST_REGEX_DETAIL_NS::w32_is(this->m_locale, mask, c);
- }
- private:
- string_type get_default_message(regex_constants::syntax_type);
- // TODO: use a hash table when available!
- map_type m_char_map;
- };
- template <class charT>
- w32_regex_traits_char_layer<charT>::w32_regex_traits_char_layer(::boost::BOOST_REGEX_DETAIL_NS::lcid_type l)
- : w32_regex_traits_base<charT>(l)
- {
- // we need to start by initialising our syntax map so we know which
- // character is used for which purpose:
- cat_type cat;
- std::string cat_name(w32_regex_traits<charT>::get_catalog_name());
- if(cat_name.size())
- {
- cat = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_open(cat_name);
- if(!cat)
- {
- std::string m("Unable to open message catalog: ");
- std::runtime_error err(m + cat_name);
- boost::BOOST_REGEX_DETAIL_NS::raise_runtime_error(err);
- }
- }
- //
- // if we have a valid catalog then load our messages:
- //
- if(cat)
- {
- for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i)
- {
- string_type mss = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, i, get_default_message(i));
- for(typename string_type::size_type j = 0; j < mss.size(); ++j)
- {
- this->m_char_map[mss[j]] = i;
- }
- }
- }
- else
- {
- for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i)
- {
- const char* ptr = get_default_syntax(i);
- while(ptr && *ptr)
- {
- this->m_char_map[static_cast<charT>(*ptr)] = i;
- ++ptr;
- }
- }
- }
- }
- template <class charT>
- typename w32_regex_traits_char_layer<charT>::string_type
- w32_regex_traits_char_layer<charT>::get_default_message(regex_constants::syntax_type i)
- {
- const char* ptr = get_default_syntax(i);
- string_type result;
- while(ptr && *ptr)
- {
- result.append(1, static_cast<charT>(*ptr));
- ++ptr;
- }
- return result;
- }
- //
- // specialised version for narrow characters:
- //
- template <>
- class w32_regex_traits_char_layer<char> : public w32_regex_traits_base<char>
- {
- typedef std::string string_type;
- public:
- w32_regex_traits_char_layer(::boost::BOOST_REGEX_DETAIL_NS::lcid_type l)
- : w32_regex_traits_base<char>(l)
- {
- init<char>();
- }
- regex_constants::syntax_type syntax_type(char c)const
- {
- return m_char_map[static_cast<unsigned char>(c)];
- }
- regex_constants::escape_syntax_type escape_syntax_type(char c) const
- {
- return m_char_map[static_cast<unsigned char>(c)];
- }
- char tolower(char c)const
- {
- return m_lower_map[static_cast<unsigned char>(c)];
- }
- bool isctype(std::uint32_t mask, char c)const
- {
- return m_type_map[static_cast<unsigned char>(c)] & mask;
- }
- private:
- regex_constants::syntax_type m_char_map[1u << CHAR_BIT];
- char m_lower_map[1u << CHAR_BIT];
- std::uint16_t m_type_map[1u << CHAR_BIT];
- template <class U>
- void init();
- };
- //
- // class w32_regex_traits_implementation:
- // provides pimpl implementation for w32_regex_traits.
- //
- template <class charT>
- class w32_regex_traits_implementation : public w32_regex_traits_char_layer<charT>
- {
- public:
- typedef typename w32_regex_traits<charT>::char_class_type char_class_type;
- static const char_class_type mask_word = 0x0400; // must be C1_DEFINED << 1
- static const char_class_type mask_unicode = 0x0800; // must be C1_DEFINED << 2
- static const char_class_type mask_horizontal = 0x1000; // must be C1_DEFINED << 3
- static const char_class_type mask_vertical = 0x2000; // must be C1_DEFINED << 4
- static const char_class_type mask_base = 0x3ff; // all the masks used by the CT_CTYPE1 group
- typedef std::basic_string<charT> string_type;
- typedef charT char_type;
- w32_regex_traits_implementation(::boost::BOOST_REGEX_DETAIL_NS::lcid_type l);
- std::string error_string(regex_constants::error_type n) const
- {
- if(!m_error_strings.empty())
- {
- std::map<int, std::string>::const_iterator p = m_error_strings.find(n);
- return (p == m_error_strings.end()) ? std::string(get_default_error_string(n)) : p->second;
- }
- return get_default_error_string(n);
- }
- char_class_type lookup_classname(const charT* p1, const charT* p2) const
- {
- char_class_type result = lookup_classname_imp(p1, p2);
- if(result == 0)
- {
- typedef typename string_type::size_type size_type;
- string_type temp(p1, p2);
- for(size_type i = 0; i < temp.size(); ++i)
- temp[i] = this->tolower(temp[i]);
- result = lookup_classname_imp(&*temp.begin(), &*temp.begin() + temp.size());
- }
- return result;
- }
- string_type lookup_collatename(const charT* p1, const charT* p2) const;
- string_type transform_primary(const charT* p1, const charT* p2) const;
- string_type transform(const charT* p1, const charT* p2) const
- {
- return ::boost::BOOST_REGEX_DETAIL_NS::w32_transform(this->m_locale, p1, p2);
- }
- private:
- std::map<int, std::string> m_error_strings; // error messages indexed by numberic ID
- std::map<string_type, char_class_type> m_custom_class_names; // character class names
- std::map<string_type, string_type> m_custom_collate_names; // collating element names
- unsigned m_collate_type; // the form of the collation string
- charT m_collate_delim; // the collation group delimiter
- //
- // helpers:
- //
- char_class_type lookup_classname_imp(const charT* p1, const charT* p2) const;
- };
- template <class charT>
- typename w32_regex_traits_implementation<charT>::string_type
- w32_regex_traits_implementation<charT>::transform_primary(const charT* p1, const charT* p2) const
- {
- string_type result;
- //
- // What we do here depends upon the format of the sort key returned by
- // sort key returned by this->transform:
- //
- switch(m_collate_type)
- {
- case sort_C:
- case sort_unknown:
- // the best we can do is translate to lower case, then get a regular sort key:
- {
- result.assign(p1, p2);
- typedef typename string_type::size_type size_type;
- for(size_type i = 0; i < result.size(); ++i)
- result[i] = this->tolower(result[i]);
- result = this->transform(&*result.begin(), &*result.begin() + result.size());
- break;
- }
- case sort_fixed:
- {
- // get a regular sort key, and then truncate it:
- result.assign(this->transform(p1, p2));
- result.erase(this->m_collate_delim);
- break;
- }
- case sort_delim:
- // get a regular sort key, and then truncate everything after the delim:
- result.assign(this->transform(p1, p2));
- std::size_t i;
- for(i = 0; i < result.size(); ++i)
- {
- if(result[i] == m_collate_delim)
- break;
- }
- result.erase(i);
- break;
- }
- if(result.empty())
- result = string_type(1, charT(0));
- return result;
- }
- template <class charT>
- typename w32_regex_traits_implementation<charT>::string_type
- w32_regex_traits_implementation<charT>::lookup_collatename(const charT* p1, const charT* p2) const
- {
- typedef typename std::map<string_type, string_type>::const_iterator iter_type;
- if(m_custom_collate_names.size())
- {
- iter_type pos = m_custom_collate_names.find(string_type(p1, p2));
- if(pos != m_custom_collate_names.end())
- return pos->second;
- }
- std::string name(p1, p2);
- name = lookup_default_collate_name(name);
- if(name.size())
- return string_type(name.begin(), name.end());
- if(p2 - p1 == 1)
- return string_type(1, *p1);
- return string_type();
- }
- template <class charT>
- w32_regex_traits_implementation<charT>::w32_regex_traits_implementation(::boost::BOOST_REGEX_DETAIL_NS::lcid_type l)
- : w32_regex_traits_char_layer<charT>(l)
- {
- cat_type cat;
- std::string cat_name(w32_regex_traits<charT>::get_catalog_name());
- if(cat_name.size())
- {
- cat = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_open(cat_name);
- if(!cat)
- {
- std::string m("Unable to open message catalog: ");
- std::runtime_error err(m + cat_name);
- boost::BOOST_REGEX_DETAIL_NS::raise_runtime_error(err);
- }
- }
- //
- // if we have a valid catalog then load our messages:
- //
- if(cat)
- {
- //
- // Error messages:
- //
- for(boost::regex_constants::error_type i = static_cast<boost::regex_constants::error_type>(0);
- i <= boost::regex_constants::error_unknown;
- i = static_cast<boost::regex_constants::error_type>(i + 1))
- {
- const char* p = get_default_error_string(i);
- string_type default_message;
- while(*p)
- {
- default_message.append(1, static_cast<charT>(*p));
- ++p;
- }
- string_type s = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, i+200, default_message);
- std::string result;
- for(std::string::size_type j = 0; j < s.size(); ++j)
- {
- result.append(1, static_cast<char>(s[j]));
- }
- m_error_strings[i] = result;
- }
- //
- // Custom class names:
- //
- static const char_class_type masks[14] =
- {
- 0x0104u, // C1_ALPHA | C1_DIGIT
- 0x0100u, // C1_ALPHA
- 0x0020u, // C1_CNTRL
- 0x0004u, // C1_DIGIT
- (~(0x0020u|0x0008u) & 0x01ffu) | 0x0400u, // not C1_CNTRL or C1_SPACE
- 0x0002u, // C1_LOWER
- (~0x0020u & 0x01ffu) | 0x0400, // not C1_CNTRL
- 0x0010u, // C1_PUNCT
- 0x0008u, // C1_SPACE
- 0x0001u, // C1_UPPER
- 0x0080u, // C1_XDIGIT
- 0x0040u, // C1_BLANK
- w32_regex_traits_implementation<charT>::mask_word,
- w32_regex_traits_implementation<charT>::mask_unicode,
- };
- static const string_type null_string;
- for(unsigned int j = 0; j <= 13; ++j)
- {
- string_type s(::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, j+300, null_string));
- if(s.size())
- this->m_custom_class_names[s] = masks[j];
- }
- }
- //
- // get the collation format used by m_pcollate:
- //
- m_collate_type = BOOST_REGEX_DETAIL_NS::find_sort_syntax(this, &m_collate_delim);
- }
- template <class charT>
- typename w32_regex_traits_implementation<charT>::char_class_type
- w32_regex_traits_implementation<charT>::lookup_classname_imp(const charT* p1, const charT* p2) const
- {
- static const char_class_type masks[22] =
- {
- 0,
- 0x0104u, // C1_ALPHA | C1_DIGIT
- 0x0100u, // C1_ALPHA
- 0x0040u, // C1_BLANK
- 0x0020u, // C1_CNTRL
- 0x0004u, // C1_DIGIT
- 0x0004u, // C1_DIGIT
- (~(0x0020u|0x0008u|0x0040) & 0x01ffu) | 0x0400u, // not C1_CNTRL or C1_SPACE or C1_BLANK
- w32_regex_traits_implementation<charT>::mask_horizontal,
- 0x0002u, // C1_LOWER
- 0x0002u, // C1_LOWER
- (~0x0020u & 0x01ffu) | 0x0400, // not C1_CNTRL
- 0x0010u, // C1_PUNCT
- 0x0008u, // C1_SPACE
- 0x0008u, // C1_SPACE
- 0x0001u, // C1_UPPER
- w32_regex_traits_implementation<charT>::mask_unicode,
- 0x0001u, // C1_UPPER
- w32_regex_traits_implementation<charT>::mask_vertical,
- 0x0104u | w32_regex_traits_implementation<charT>::mask_word,
- 0x0104u | w32_regex_traits_implementation<charT>::mask_word,
- 0x0080u, // C1_XDIGIT
- };
- if(m_custom_class_names.size())
- {
- typedef typename std::map<std::basic_string<charT>, char_class_type>::const_iterator map_iter;
- map_iter pos = m_custom_class_names.find(string_type(p1, p2));
- if(pos != m_custom_class_names.end())
- return pos->second;
- }
- std::size_t state_id = 1u + (std::size_t)BOOST_REGEX_DETAIL_NS::get_default_class_id(p1, p2);
- if(state_id < sizeof(masks) / sizeof(masks[0]))
- return masks[state_id];
- return masks[0];
- }
- template <class charT>
- std::shared_ptr<const w32_regex_traits_implementation<charT> > create_w32_regex_traits(::boost::BOOST_REGEX_DETAIL_NS::lcid_type l)
- {
- // TODO: create a cache for previously constructed objects.
- return boost::object_cache< ::boost::BOOST_REGEX_DETAIL_NS::lcid_type, w32_regex_traits_implementation<charT> >::get(l, 5);
- }
- } // BOOST_REGEX_DETAIL_NS
- template <class charT>
- class w32_regex_traits
- {
- public:
- typedef charT char_type;
- typedef std::size_t size_type;
- typedef std::basic_string<char_type> string_type;
- typedef ::boost::BOOST_REGEX_DETAIL_NS::lcid_type locale_type;
- typedef std::uint_least32_t char_class_type;
- struct boost_extensions_tag{};
- w32_regex_traits()
- : m_pimpl(BOOST_REGEX_DETAIL_NS::create_w32_regex_traits<charT>(::boost::BOOST_REGEX_DETAIL_NS::w32_get_default_locale()))
- { }
- static size_type length(const char_type* p)
- {
- return std::char_traits<charT>::length(p);
- }
- regex_constants::syntax_type syntax_type(charT c)const
- {
- return m_pimpl->syntax_type(c);
- }
- regex_constants::escape_syntax_type escape_syntax_type(charT c) const
- {
- return m_pimpl->escape_syntax_type(c);
- }
- charT translate(charT c) const
- {
- return c;
- }
- charT translate_nocase(charT c) const
- {
- return this->m_pimpl->tolower(c);
- }
- charT translate(charT c, bool icase) const
- {
- return icase ? this->m_pimpl->tolower(c) : c;
- }
- charT tolower(charT c) const
- {
- return this->m_pimpl->tolower(c);
- }
- charT toupper(charT c) const
- {
- return ::boost::BOOST_REGEX_DETAIL_NS::w32_toupper(c, this->m_pimpl->m_locale);
- }
- string_type transform(const charT* p1, const charT* p2) const
- {
- return ::boost::BOOST_REGEX_DETAIL_NS::w32_transform(this->m_pimpl->m_locale, p1, p2);
- }
- string_type transform_primary(const charT* p1, const charT* p2) const
- {
- return m_pimpl->transform_primary(p1, p2);
- }
- char_class_type lookup_classname(const charT* p1, const charT* p2) const
- {
- return m_pimpl->lookup_classname(p1, p2);
- }
- string_type lookup_collatename(const charT* p1, const charT* p2) const
- {
- return m_pimpl->lookup_collatename(p1, p2);
- }
- bool isctype(charT c, char_class_type f) const
- {
- if((f & BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_base)
- && (this->m_pimpl->isctype(f & BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_base, c)))
- return true;
- else if((f & BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_unicode) && BOOST_REGEX_DETAIL_NS::is_extended(c))
- return true;
- else if((f & BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_word) && (c == '_'))
- return true;
- else if((f & BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_vertical)
- && (::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) || (c == '\v')))
- return true;
- else if((f & BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_horizontal)
- && this->isctype(c, 0x0008u) && !this->isctype(c, BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT>::mask_vertical))
- return true;
- return false;
- }
- std::intmax_t toi(const charT*& p1, const charT* p2, int radix)const
- {
- return ::boost::BOOST_REGEX_DETAIL_NS::global_toi(p1, p2, radix, *this);
- }
- int value(charT c, int radix)const
- {
- int result = (int)::boost::BOOST_REGEX_DETAIL_NS::global_value(c);
- return result < radix ? result : -1;
- }
- locale_type imbue(locale_type l)
- {
- ::boost::BOOST_REGEX_DETAIL_NS::lcid_type result(getloc());
- m_pimpl = BOOST_REGEX_DETAIL_NS::create_w32_regex_traits<charT>(l);
- return result;
- }
- locale_type getloc()const
- {
- return m_pimpl->m_locale;
- }
- std::string error_string(regex_constants::error_type n) const
- {
- return m_pimpl->error_string(n);
- }
- //
- // extension:
- // set the name of the message catalog in use (defaults to "boost_regex").
- //
- static std::string catalog_name(const std::string& name);
- static std::string get_catalog_name();
- private:
- std::shared_ptr<const BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation<charT> > m_pimpl;
- //
- // catalog name handler:
- //
- static std::string& get_catalog_name_inst();
- #ifdef BOOST_HAS_THREADS
- static std::mutex& get_mutex_inst();
- #endif
- };
- template <class charT>
- std::string w32_regex_traits<charT>::catalog_name(const std::string& name)
- {
- #ifdef BOOST_HAS_THREADS
- std::lock_guard<std::mutex> lk(get_mutex_inst());
- #endif
- std::string result(get_catalog_name_inst());
- get_catalog_name_inst() = name;
- return result;
- }
- template <class charT>
- std::string& w32_regex_traits<charT>::get_catalog_name_inst()
- {
- static std::string s_name;
- return s_name;
- }
- template <class charT>
- std::string w32_regex_traits<charT>::get_catalog_name()
- {
- #ifdef BOOST_HAS_THREADS
- std::lock_guard<std::mutex> lk(get_mutex_inst());
- #endif
- std::string result(get_catalog_name_inst());
- return result;
- }
- #ifdef BOOST_HAS_THREADS
- template <class charT>
- std::mutex& w32_regex_traits<charT>::get_mutex_inst()
- {
- static std::mutex s_mutex;
- return s_mutex;
- }
- #endif
- namespace BOOST_REGEX_DETAIL_NS {
- #ifdef BOOST_NO_ANSI_APIS
- inline unsigned int get_code_page_for_locale_id(lcid_type idx)
- {
- wchar_t code_page_string[7];
- if (boost::BOOST_REGEX_DETAIL_NS::GetLocaleInfoW(idx, locale_idefaultansicodepage, code_page_string, 7) == 0)
- return 0;
- return static_cast<unsigned int>(_wtol(code_page_string));
- }
- #endif
- template <class U>
- inline void w32_regex_traits_char_layer<char>::init()
- {
- // we need to start by initialising our syntax map so we know which
- // character is used for which purpose:
- std::memset(m_char_map, 0, sizeof(m_char_map));
- cat_type cat;
- std::string cat_name(w32_regex_traits<char>::get_catalog_name());
- if (cat_name.size())
- {
- cat = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_open(cat_name);
- if (!cat)
- {
- std::string m("Unable to open message catalog: ");
- std::runtime_error err(m + cat_name);
- ::boost::BOOST_REGEX_DETAIL_NS::raise_runtime_error(err);
- }
- }
- //
- // if we have a valid catalog then load our messages:
- //
- if (cat)
- {
- for (regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i)
- {
- string_type mss = ::boost::BOOST_REGEX_DETAIL_NS::w32_cat_get(cat, this->m_locale, i, get_default_syntax(i));
- for (string_type::size_type j = 0; j < mss.size(); ++j)
- {
- m_char_map[static_cast<unsigned char>(mss[j])] = i;
- }
- }
- }
- else
- {
- for (regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i)
- {
- const char* ptr = get_default_syntax(i);
- while (ptr && *ptr)
- {
- m_char_map[static_cast<unsigned char>(*ptr)] = i;
- ++ptr;
- }
- }
- }
- //
- // finish off by calculating our escape types:
- //
- unsigned char i = 'A';
- do
- {
- if (m_char_map[i] == 0)
- {
- if (::boost::BOOST_REGEX_DETAIL_NS::w32_is(this->m_locale, 0x0002u, (char)i))
- m_char_map[i] = regex_constants::escape_type_class;
- else if (::boost::BOOST_REGEX_DETAIL_NS::w32_is(this->m_locale, 0x0001u, (char)i))
- m_char_map[i] = regex_constants::escape_type_not_class;
- }
- } while (0xFF != i++);
- //
- // fill in lower case map:
- //
- char char_map[1 << CHAR_BIT];
- for (int ii = 0; ii < (1 << CHAR_BIT); ++ii)
- char_map[ii] = static_cast<char>(ii);
- #ifndef BOOST_NO_ANSI_APIS
- int r = boost::BOOST_REGEX_DETAIL_NS::LCMapStringA(this->m_locale, lcmap_lowercase, char_map, 1 << CHAR_BIT, this->m_lower_map, 1 << CHAR_BIT);
- BOOST_REGEX_ASSERT(r != 0);
- #else
- unsigned int code_page = get_code_page_for_locale_id(this->m_locale);
- BOOST_REGEX_ASSERT(code_page != 0);
- wchar_t wide_char_map[1 << CHAR_BIT];
- int conv_r = boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, char_map, 1 << CHAR_BIT, wide_char_map, 1 << CHAR_BIT);
- BOOST_REGEX_ASSERT(conv_r != 0);
- wchar_t wide_lower_map[1 << CHAR_BIT];
- int r = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(this->m_locale, lcmap_lowercase, wide_char_map, 1 << CHAR_BIT, wide_lower_map, 1 << CHAR_BIT);
- BOOST_REGEX_ASSERT(r != 0);
- conv_r = boost::BOOST_REGEX_DETAIL_NS::WideCharToMultiByte(code_page, 0, wide_lower_map, r, this->m_lower_map, 1 << CHAR_BIT, NULL, NULL);
- BOOST_REGEX_ASSERT(conv_r != 0);
- #endif
- if (r < (1 << CHAR_BIT))
- {
- // if we have multibyte characters then not all may have been given
- // a lower case mapping:
- for (int jj = r; jj < (1 << CHAR_BIT); ++jj)
- this->m_lower_map[jj] = static_cast<char>(jj);
- }
- #ifndef BOOST_NO_ANSI_APIS
- r = boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExA(this->m_locale, ct_ctype1, char_map, 1 << CHAR_BIT, this->m_type_map);
- #else
- r = boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(this->m_locale, ct_ctype1, wide_char_map, 1 << CHAR_BIT, this->m_type_map);
- #endif
- BOOST_REGEX_ASSERT(0 != r);
- }
- inline lcid_type w32_get_default_locale()
- {
- return boost::BOOST_REGEX_DETAIL_NS::GetUserDefaultLCID();
- }
- inline bool w32_is_lower(char c, lcid_type idx)
- {
- #ifndef BOOST_NO_ANSI_APIS
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExA(idx, ct_ctype1, &c, 1, &mask) && (mask & c1_lower))
- return true;
- return false;
- #else
- unsigned int code_page = get_code_page_for_locale_id(idx);
- if (code_page == 0)
- return false;
- wchar_t wide_c;
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0)
- return false;
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(idx, ct_ctype1, &wide_c, 1, &mask) && (mask & c1_lower))
- return true;
- return false;
- #endif
- }
- inline bool w32_is_lower(wchar_t c, lcid_type idx)
- {
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(idx, ct_ctype1, &c, 1, &mask) && (mask & c1_lower))
- return true;
- return false;
- }
- inline bool w32_is_upper(char c, lcid_type idx)
- {
- #ifndef BOOST_NO_ANSI_APIS
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExA(idx, ct_ctype1, &c, 1, &mask) && (mask & c1_upper))
- return true;
- return false;
- #else
- unsigned int code_page = get_code_page_for_locale_id(idx);
- if (code_page == 0)
- return false;
- wchar_t wide_c;
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0)
- return false;
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(idx, ct_ctype1, &wide_c, 1, &mask) && (mask & c1_upper))
- return true;
- return false;
- #endif
- }
- inline bool w32_is_upper(wchar_t c, lcid_type idx)
- {
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(idx, ct_ctype1, &c, 1, &mask) && (mask & c1_upper))
- return true;
- return false;
- }
- inline void free_module(void* mod)
- {
- boost::BOOST_REGEX_DETAIL_NS::FreeLibrary(static_cast<HMODULE>(mod));
- }
- inline cat_type w32_cat_open(const std::string& name)
- {
- #ifndef BOOST_NO_ANSI_APIS
- cat_type result(boost::BOOST_REGEX_DETAIL_NS::LoadLibraryA(name.c_str()), &free_module);
- return result;
- #else
- wchar_t* wide_name = (wchar_t*)_alloca((name.size() + 1) * sizeof(wchar_t));
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(cp_acp, 0, name.c_str(), (int)name.size(), wide_name, (int)(name.size() + 1)) == 0)
- return cat_type();
- cat_type result(boost::BOOST_REGEX_DETAIL_NS::LoadLibraryW(wide_name), &free_module);
- return result;
- #endif
- }
- inline std::string w32_cat_get(const cat_type& cat, lcid_type, int i, const std::string& def)
- {
- #ifndef BOOST_NO_ANSI_APIS
- char buf[256];
- if (0 == boost::BOOST_REGEX_DETAIL_NS::LoadStringA(
- static_cast<HMODULE>(cat.get()),
- i,
- buf,
- 256
- ))
- {
- return def;
- }
- #else
- wchar_t wbuf[256];
- int r = boost::BOOST_REGEX_DETAIL_NS::LoadStringW(
- static_cast<HMODULE>(cat.get()),
- i,
- wbuf,
- 256
- );
- if (r == 0)
- return def;
- int buf_size = 1 + boost::BOOST_REGEX_DETAIL_NS::WideCharToMultiByte(cp_acp, 0, wbuf, r, NULL, 0, NULL, NULL);
- char* buf = (char*)_alloca(buf_size);
- if (boost::BOOST_REGEX_DETAIL_NS::WideCharToMultiByte(cp_acp, 0, wbuf, r, buf, buf_size, NULL, NULL) == 0)
- return def; // failed conversion.
- #endif
- return std::string(buf);
- }
- #ifndef BOOST_NO_WREGEX
- inline std::wstring w32_cat_get(const cat_type& cat, lcid_type, int i, const std::wstring& def)
- {
- wchar_t buf[256];
- if (0 == boost::BOOST_REGEX_DETAIL_NS::LoadStringW(static_cast<HMODULE>(cat.get()), i, buf, 256))
- {
- return def;
- }
- return std::wstring(buf);
- }
- #endif
- inline std::string w32_transform(lcid_type idx, const char* p1, const char* p2)
- {
- #ifndef BOOST_NO_ANSI_APIS
- int bytes = boost::BOOST_REGEX_DETAIL_NS::LCMapStringA(
- idx, // locale identifier
- lcmap_sortkey, // mapping transformation type
- p1, // source string
- static_cast<int>(p2 - p1), // number of characters in source string
- 0, // destination buffer
- 0 // size of destination buffer
- );
- if (!bytes)
- return std::string(p1, p2);
- std::string result(++bytes, '\0');
- bytes = boost::BOOST_REGEX_DETAIL_NS::LCMapStringA(
- idx, // locale identifier
- lcmap_sortkey, // mapping transformation type
- p1, // source string
- static_cast<int>(p2 - p1), // number of characters in source string
- &*result.begin(), // destination buffer
- bytes // size of destination buffer
- );
- #else
- unsigned int code_page = get_code_page_for_locale_id(idx);
- if (code_page == 0)
- return std::string(p1, p2);
- int src_len = static_cast<int>(p2 - p1);
- wchar_t* wide_p1 = (wchar_t*)_alloca((src_len + 1) * 2);
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, p1, src_len, wide_p1, src_len + 1) == 0)
- return std::string(p1, p2);
- int bytes = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_sortkey, // mapping transformation type
- wide_p1, // source string
- src_len, // number of characters in source string
- 0, // destination buffer
- 0 // size of destination buffer
- );
- if (!bytes)
- return std::string(p1, p2);
- std::string result(++bytes, '\0');
- bytes = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_sortkey, // mapping transformation type
- wide_p1, // source string
- src_len, // number of characters in source string
- (wchar_t*) & *result.begin(), // destination buffer
- bytes // size of destination buffer
- );
- #endif
- if (bytes > static_cast<int>(result.size()))
- return std::string(p1, p2);
- while (result.size() && result[result.size() - 1] == '\0')
- {
- result.erase(result.size() - 1);
- }
- return result;
- }
- #ifndef BOOST_NO_WREGEX
- inline std::wstring w32_transform(lcid_type idx, const wchar_t* p1, const wchar_t* p2)
- {
- int bytes = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_sortkey, // mapping transformation type
- p1, // source string
- static_cast<int>(p2 - p1), // number of characters in source string
- 0, // destination buffer
- 0 // size of destination buffer
- );
- if (!bytes)
- return std::wstring(p1, p2);
- std::string result(++bytes, '\0');
- bytes = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_sortkey, // mapping transformation type
- p1, // source string
- static_cast<int>(p2 - p1), // number of characters in source string
- reinterpret_cast<wchar_t*>(&*result.begin()), // destination buffer *of bytes*
- bytes // size of destination buffer
- );
- if (bytes > static_cast<int>(result.size()))
- return std::wstring(p1, p2);
- while (result.size() && result[result.size() - 1] == L'\0')
- {
- result.erase(result.size() - 1);
- }
- std::wstring r2;
- for (std::string::size_type i = 0; i < result.size(); ++i)
- r2.append(1, static_cast<wchar_t>(static_cast<unsigned char>(result[i])));
- return r2;
- }
- #endif
- inline char w32_tolower(char c, lcid_type idx)
- {
- char result[2];
- #ifndef BOOST_NO_ANSI_APIS
- int b = boost::BOOST_REGEX_DETAIL_NS::LCMapStringA(
- idx, // locale identifier
- lcmap_lowercase, // mapping transformation type
- &c, // source string
- 1, // number of characters in source string
- result, // destination buffer
- 1); // size of destination buffer
- if (b == 0)
- return c;
- #else
- unsigned int code_page = get_code_page_for_locale_id(idx);
- if (code_page == 0)
- return c;
- wchar_t wide_c;
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0)
- return c;
- wchar_t wide_result;
- int b = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_lowercase, // mapping transformation type
- &wide_c, // source string
- 1, // number of characters in source string
- &wide_result, // destination buffer
- 1); // size of destination buffer
- if (b == 0)
- return c;
- if (boost::BOOST_REGEX_DETAIL_NS::WideCharToMultiByte(code_page, 0, &wide_result, 1, result, 2, NULL, NULL) == 0)
- return c; // No single byte lower case equivalent available
- #endif
- return result[0];
- }
- #ifndef BOOST_NO_WREGEX
- inline wchar_t w32_tolower(wchar_t c, lcid_type idx)
- {
- wchar_t result[2];
- int b = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_lowercase, // mapping transformation type
- &c, // source string
- 1, // number of characters in source string
- result, // destination buffer
- 1); // size of destination buffer
- if (b == 0)
- return c;
- return result[0];
- }
- #endif
- inline char w32_toupper(char c, lcid_type idx)
- {
- char result[2];
- #ifndef BOOST_NO_ANSI_APIS
- int b = boost::BOOST_REGEX_DETAIL_NS::LCMapStringA(
- idx, // locale identifier
- lcmap_uppercase, // mapping transformation type
- &c, // source string
- 1, // number of characters in source string
- result, // destination buffer
- 1); // size of destination buffer
- if (b == 0)
- return c;
- #else
- unsigned int code_page = get_code_page_for_locale_id(idx);
- if (code_page == 0)
- return c;
- wchar_t wide_c;
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0)
- return c;
- wchar_t wide_result;
- int b = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_uppercase, // mapping transformation type
- &wide_c, // source string
- 1, // number of characters in source string
- &wide_result, // destination buffer
- 1); // size of destination buffer
- if (b == 0)
- return c;
- if (boost::BOOST_REGEX_DETAIL_NS::WideCharToMultiByte(code_page, 0, &wide_result, 1, result, 2, NULL, NULL) == 0)
- return c; // No single byte upper case equivalent available.
- #endif
- return result[0];
- }
- #ifndef BOOST_NO_WREGEX
- inline wchar_t w32_toupper(wchar_t c, lcid_type idx)
- {
- wchar_t result[2];
- int b = boost::BOOST_REGEX_DETAIL_NS::LCMapStringW(
- idx, // locale identifier
- lcmap_uppercase, // mapping transformation type
- &c, // source string
- 1, // number of characters in source string
- result, // destination buffer
- 1); // size of destination buffer
- if (b == 0)
- return c;
- return result[0];
- }
- #endif
- inline bool w32_is(lcid_type idx, std::uint32_t m, char c)
- {
- word mask;
- #ifndef BOOST_NO_ANSI_APIS
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExA(idx, ct_ctype1, &c, 1, &mask) && (mask & m & w32_regex_traits_implementation<char>::mask_base))
- return true;
- #else
- unsigned int code_page = get_code_page_for_locale_id(idx);
- if (code_page == 0)
- return false;
- wchar_t wide_c;
- if (boost::BOOST_REGEX_DETAIL_NS::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0)
- return false;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(idx, ct_ctype1, &wide_c, 1, &mask) && (mask & m & w32_regex_traits_implementation<char>::mask_base))
- return true;
- #endif
- if ((m & w32_regex_traits_implementation<char>::mask_word) && (c == '_'))
- return true;
- return false;
- }
- #ifndef BOOST_NO_WREGEX
- inline bool w32_is(lcid_type idx, std::uint32_t m, wchar_t c)
- {
- word mask;
- if (boost::BOOST_REGEX_DETAIL_NS::GetStringTypeExW(idx, ct_ctype1, &c, 1, &mask) && (mask & m & w32_regex_traits_implementation<wchar_t>::mask_base))
- return true;
- if ((m & w32_regex_traits_implementation<wchar_t>::mask_word) && (c == '_'))
- return true;
- if ((m & w32_regex_traits_implementation<wchar_t>::mask_unicode) && (c > 0xff))
- return true;
- return false;
- }
- #endif
- } // BOOST_REGEX_DETAIL_NS
- } // boost
- #ifdef BOOST_REGEX_MSVC
- #pragma warning(pop)
- #endif
- #endif // BOOST_REGEX_NO_WIN32_LOCALE
- #endif
|