really fix handling of trailing periods in abbreviated month names in French locale (without breaking everything else like last commit did)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -46,7 +46,6 @@
|
|||||||
#endif // WX_PRECOMP
|
#endif // WX_PRECOMP
|
||||||
|
|
||||||
#include "wx/thread.h"
|
#include "wx/thread.h"
|
||||||
#include "wx/tokenzr.h"
|
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
@@ -92,6 +91,42 @@ static const int MIN_PER_HOUR = 60;
|
|||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// all the functions below taking non-const wxString::const_iterator p advance
|
||||||
|
// it until the end of the match
|
||||||
|
|
||||||
|
// scans all digits (but no more than len) and returns the resulting number
|
||||||
|
bool GetNumericToken(size_t len,
|
||||||
|
wxString::const_iterator& p,
|
||||||
|
const wxString::const_iterator& end,
|
||||||
|
unsigned long *number)
|
||||||
|
{
|
||||||
|
size_t n = 1;
|
||||||
|
wxString s;
|
||||||
|
while ( p != end && wxIsdigit(*p) )
|
||||||
|
{
|
||||||
|
s += *p++;
|
||||||
|
|
||||||
|
if ( len && ++n > len )
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return !s.empty() && s.ToULong(number);
|
||||||
|
}
|
||||||
|
|
||||||
|
// scans all alphabetic characters and returns the resulting string
|
||||||
|
wxString
|
||||||
|
GetAlphaToken(wxString::const_iterator& p,
|
||||||
|
const wxString::const_iterator& end)
|
||||||
|
{
|
||||||
|
wxString s;
|
||||||
|
while ( p != end && wxIsalpha(*p) )
|
||||||
|
{
|
||||||
|
s += *p++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
DateLang_English = 1,
|
DateLang_English = 1,
|
||||||
@@ -105,8 +140,16 @@ enum
|
|||||||
// month name or DateLang_English to parse it as a standard English name or
|
// month name or DateLang_English to parse it as a standard English name or
|
||||||
// their combination to interpret it in any way
|
// their combination to interpret it in any way
|
||||||
wxDateTime::Month
|
wxDateTime::Month
|
||||||
GetMonthFromName(const wxString& name, int flags, int lang)
|
GetMonthFromName(wxString::const_iterator& p,
|
||||||
|
const wxString::const_iterator& end,
|
||||||
|
int flags,
|
||||||
|
int lang)
|
||||||
{
|
{
|
||||||
|
const wxString::const_iterator pOrig = p;
|
||||||
|
const wxString name = GetAlphaToken(p, end);
|
||||||
|
if ( name.empty() )
|
||||||
|
return wxDateTime::Inv_Month;
|
||||||
|
|
||||||
wxDateTime::Month mon;
|
wxDateTime::Month mon;
|
||||||
for ( mon = wxDateTime::Jan; mon < wxDateTime::Inv_Month; wxNextMonth(mon) )
|
for ( mon = wxDateTime::Jan; mon < wxDateTime::Inv_Month; wxNextMonth(mon) )
|
||||||
{
|
{
|
||||||
@@ -140,13 +183,35 @@ GetMonthFromName(const wxString& name, int flags, int lang)
|
|||||||
|
|
||||||
if ( lang & DateLang_Local )
|
if ( lang & DateLang_Local )
|
||||||
{
|
{
|
||||||
if ( name.CmpNoCase(wxDateTime::GetMonthName(mon,
|
// some locales (e.g. French one) use periods for the
|
||||||
wxDateTime::Name_Abbr)) == 0 )
|
// abbreviated month names but it's never part of name so
|
||||||
|
// compare it specially
|
||||||
|
wxString nameAbbr = wxDateTime::GetMonthName(mon,
|
||||||
|
wxDateTime::Name_Abbr);
|
||||||
|
const bool hasPeriod = *nameAbbr.rbegin() == '.';
|
||||||
|
if ( hasPeriod )
|
||||||
|
nameAbbr.erase(nameAbbr.end() - 1);
|
||||||
|
|
||||||
|
if ( name.CmpNoCase(nameAbbr) == 0 )
|
||||||
|
{
|
||||||
|
if ( hasPeriod )
|
||||||
|
{
|
||||||
|
// skip trailing period if it was part of the match
|
||||||
|
if ( *p == '.' )
|
||||||
|
++p;
|
||||||
|
else // no match as no matching period
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( mon == wxDateTime::Inv_Month )
|
||||||
|
p = pOrig;
|
||||||
|
|
||||||
return mon;
|
return mon;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -155,8 +220,15 @@ GetMonthFromName(const wxString& name, int flags, int lang)
|
|||||||
// flags and lang parameters have the same meaning as for GetMonthFromName()
|
// flags and lang parameters have the same meaning as for GetMonthFromName()
|
||||||
// above
|
// above
|
||||||
wxDateTime::WeekDay
|
wxDateTime::WeekDay
|
||||||
GetWeekDayFromName(const wxString& name, int flags, int lang)
|
GetWeekDayFromName(wxString::const_iterator& p,
|
||||||
|
const wxString::const_iterator& end,
|
||||||
|
int flags, int lang)
|
||||||
{
|
{
|
||||||
|
const wxString::const_iterator pOrig = p;
|
||||||
|
const wxString name = GetAlphaToken(p, end);
|
||||||
|
if ( name.empty() )
|
||||||
|
return wxDateTime::Inv_WeekDay;
|
||||||
|
|
||||||
wxDateTime::WeekDay wd;
|
wxDateTime::WeekDay wd;
|
||||||
for ( wd = wxDateTime::Sun; wd < wxDateTime::Inv_WeekDay; wxNextWDay(wd) )
|
for ( wd = wxDateTime::Sun; wd < wxDateTime::Inv_WeekDay; wxNextWDay(wd) )
|
||||||
{
|
{
|
||||||
@@ -195,57 +267,12 @@ GetWeekDayFromName(const wxString& name, int flags, int lang)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( wd == wxDateTime::Inv_WeekDay )
|
||||||
|
p = pOrig;
|
||||||
|
|
||||||
return wd;
|
return wd;
|
||||||
}
|
}
|
||||||
|
|
||||||
// scans all digits (but no more than len) and returns the resulting number
|
|
||||||
bool GetNumericToken(size_t len,
|
|
||||||
wxString::const_iterator& p,
|
|
||||||
const wxString::const_iterator& end,
|
|
||||||
unsigned long *number)
|
|
||||||
{
|
|
||||||
size_t n = 1;
|
|
||||||
wxString s;
|
|
||||||
while ( p != end && wxIsdigit(*p) )
|
|
||||||
{
|
|
||||||
s += *p++;
|
|
||||||
|
|
||||||
if ( len && ++n > len )
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return !s.empty() && s.ToULong(number);
|
|
||||||
}
|
|
||||||
|
|
||||||
// scans all alphabetic characters and returns the resulting string
|
|
||||||
wxString
|
|
||||||
GetAlphaToken(wxString::const_iterator& p,
|
|
||||||
const wxString::const_iterator& end)
|
|
||||||
{
|
|
||||||
wxString s;
|
|
||||||
while ( p != end && wxIsalpha(*p) )
|
|
||||||
{
|
|
||||||
s += *p++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
// scans all characters which can appear in a week day/month name
|
|
||||||
//
|
|
||||||
// this is different from GetAlphaToken() as some locales (e.g. fr_FR) use
|
|
||||||
// trailing periods after the abbreviated week day/month names
|
|
||||||
wxString
|
|
||||||
GetNameToken(wxString::const_iterator& p,
|
|
||||||
const wxString::const_iterator& end)
|
|
||||||
{
|
|
||||||
wxString token = GetAlphaToken(p, end);
|
|
||||||
if ( p != end && *p == '.' )
|
|
||||||
token += *p++;
|
|
||||||
|
|
||||||
return token;
|
|
||||||
}
|
|
||||||
|
|
||||||
// parses string starting at given iterator using the specified format and,
|
// parses string starting at given iterator using the specified format and,
|
||||||
// optionally, a fall back format (and optionally another one... but it stops
|
// optionally, a fall back format (and optionally another one... but it stops
|
||||||
// there, really)
|
// there, really)
|
||||||
@@ -671,19 +698,17 @@ wxString wxDateTime::Format(const wxString& formatp, const TimeZone& tz) const
|
|||||||
bool
|
bool
|
||||||
wxDateTime::ParseRfc822Date(const wxString& date, wxString::const_iterator *end)
|
wxDateTime::ParseRfc822Date(const wxString& date, wxString::const_iterator *end)
|
||||||
{
|
{
|
||||||
|
const wxString::const_iterator pEnd = date.end();
|
||||||
wxString::const_iterator p = date.begin();
|
wxString::const_iterator p = date.begin();
|
||||||
|
|
||||||
// 1. week day
|
// 1. week day
|
||||||
static const int WDAY_LEN = 3;
|
const wxDateTime::WeekDay
|
||||||
const wxString::const_iterator endWday = p + WDAY_LEN;
|
wd = GetWeekDayFromName(p, pEnd, Name_Abbr, DateLang_English);
|
||||||
const wxString wday(p, endWday);
|
if ( wd == Inv_WeekDay )
|
||||||
if ( GetWeekDayFromName(wday, Name_Abbr, DateLang_English) == Inv_WeekDay )
|
|
||||||
return false;
|
return false;
|
||||||
//else: ignore week day for now, we could also check that it really
|
//else: ignore week day for now, we could also check that it really
|
||||||
// corresponds to the specified date
|
// corresponds to the specified date
|
||||||
|
|
||||||
p = endWday;
|
|
||||||
|
|
||||||
// 2. separating comma
|
// 2. separating comma
|
||||||
if ( *p++ != ',' || *p++ != ' ' )
|
if ( *p++ != ',' || *p++ != ' ' )
|
||||||
return false;
|
return false;
|
||||||
@@ -703,15 +728,10 @@ wxDateTime::ParseRfc822Date(const wxString& date, wxString::const_iterator *end)
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
// 4. month name
|
// 4. month name
|
||||||
static const int MONTH_LEN = 3;
|
const Month mon = GetMonthFromName(p, pEnd, Name_Abbr, DateLang_English);
|
||||||
const wxString::const_iterator endMonth = p + MONTH_LEN;
|
|
||||||
const wxString monName(p, endMonth);
|
|
||||||
Month mon = GetMonthFromName(monName, Name_Abbr, DateLang_English);
|
|
||||||
if ( mon == Inv_Month )
|
if ( mon == Inv_Month )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
p = endMonth;
|
|
||||||
|
|
||||||
if ( *p++ != ' ' )
|
if ( *p++ != ' ' )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@@ -993,7 +1013,7 @@ wxDateTime::ParseFormat(const wxString& date,
|
|||||||
{
|
{
|
||||||
wday = GetWeekDayFromName
|
wday = GetWeekDayFromName
|
||||||
(
|
(
|
||||||
GetNameToken(input, end),
|
input, end,
|
||||||
*fmt == 'a' ? Name_Abbr : Name_Full,
|
*fmt == 'a' ? Name_Abbr : Name_Full,
|
||||||
DateLang_Local
|
DateLang_Local
|
||||||
);
|
);
|
||||||
@@ -1011,7 +1031,7 @@ wxDateTime::ParseFormat(const wxString& date,
|
|||||||
{
|
{
|
||||||
mon = GetMonthFromName
|
mon = GetMonthFromName
|
||||||
(
|
(
|
||||||
GetNameToken(input, end),
|
input, end,
|
||||||
*fmt == 'b' ? Name_Abbr : Name_Full,
|
*fmt == 'b' ? Name_Abbr : Name_Full,
|
||||||
DateLang_Local
|
DateLang_Local
|
||||||
);
|
);
|
||||||
@@ -1528,6 +1548,7 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
// all esoteric constructions ParseDateTime() knows about)
|
// all esoteric constructions ParseDateTime() knows about)
|
||||||
|
|
||||||
const wxString::const_iterator pBegin = date.begin();
|
const wxString::const_iterator pBegin = date.begin();
|
||||||
|
const wxString::const_iterator pEnd = date.end();
|
||||||
|
|
||||||
wxString::const_iterator p = pBegin;
|
wxString::const_iterator p = pBegin;
|
||||||
while ( wxIsspace(*p) )
|
while ( wxIsspace(*p) )
|
||||||
@@ -1545,7 +1566,7 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
{ wxTRANSLATE("tomorrow"), 1 },
|
{ wxTRANSLATE("tomorrow"), 1 },
|
||||||
};
|
};
|
||||||
|
|
||||||
const size_t lenRest = date.end() - p;
|
const size_t lenRest = pEnd - p;
|
||||||
for ( size_t n = 0; n < WXSIZEOF(literalDates); n++ )
|
for ( size_t n = 0; n < WXSIZEOF(literalDates); n++ )
|
||||||
{
|
{
|
||||||
const wxString dateStr = wxGetTranslation(literalDates[n].str);
|
const wxString dateStr = wxGetTranslation(literalDates[n].str);
|
||||||
@@ -1585,6 +1606,8 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
haveMon = false, // the month?
|
haveMon = false, // the month?
|
||||||
haveYear = false; // the year?
|
haveYear = false; // the year?
|
||||||
|
|
||||||
|
bool monWasNumeric = false; // was month specified as a number?
|
||||||
|
|
||||||
// and the value of the items we have (init them to get rid of warnings)
|
// and the value of the items we have (init them to get rid of warnings)
|
||||||
WeekDay wday = Inv_WeekDay;
|
WeekDay wday = Inv_WeekDay;
|
||||||
wxDateTime_t day = 0;
|
wxDateTime_t day = 0;
|
||||||
@@ -1592,18 +1615,23 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
int year = 0;
|
int year = 0;
|
||||||
|
|
||||||
// tokenize the string
|
// tokenize the string
|
||||||
size_t nPosCur = 0;
|
|
||||||
static const wxStringCharType *dateDelimiters = wxS(".,/-\t\r\n ");
|
static const wxStringCharType *dateDelimiters = wxS(".,/-\t\r\n ");
|
||||||
wxStringTokenizer tok(wxString(p, date.end()), dateDelimiters);
|
while ( p != pEnd )
|
||||||
while ( tok.HasMoreTokens() )
|
|
||||||
{
|
{
|
||||||
wxString token = tok.GetNextToken();
|
// skip white space and date delimiters
|
||||||
if ( !token )
|
while ( wxStrchr(".,/-\t\r\n ", *p) )
|
||||||
continue;
|
{
|
||||||
|
++p;
|
||||||
|
}
|
||||||
|
|
||||||
// is it a number?
|
// modify copy of the iterator as we're not sure if the next token is
|
||||||
|
// still part of the date at all
|
||||||
|
wxString::const_iterator pCopy = p;
|
||||||
|
|
||||||
|
// we can have either alphabetic or numeric token, start by testing if
|
||||||
|
// it's the latter
|
||||||
unsigned long val;
|
unsigned long val;
|
||||||
if ( token.ToULong(&val) )
|
if ( GetNumericToken(10 /* max length */, pCopy, pEnd, &val) )
|
||||||
{
|
{
|
||||||
// guess what this number is
|
// guess what this number is
|
||||||
|
|
||||||
@@ -1667,6 +1695,7 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
else if ( isMonth )
|
else if ( isMonth )
|
||||||
{
|
{
|
||||||
haveMon = true;
|
haveMon = true;
|
||||||
|
monWasNumeric = true;
|
||||||
|
|
||||||
mon = (Month)(val - 1);
|
mon = (Month)(val - 1);
|
||||||
}
|
}
|
||||||
@@ -1676,7 +1705,7 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
// be careful not to overwrite the current mon value
|
// be careful not to overwrite the current mon value
|
||||||
Month mon2 = GetMonthFromName
|
Month mon2 = GetMonthFromName
|
||||||
(
|
(
|
||||||
token,
|
pCopy, pEnd,
|
||||||
Name_Full | Name_Abbr,
|
Name_Full | Name_Abbr,
|
||||||
DateLang_Local | DateLang_English
|
DateLang_Local | DateLang_English
|
||||||
);
|
);
|
||||||
@@ -1685,20 +1714,18 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
// it's a month
|
// it's a month
|
||||||
if ( haveMon )
|
if ( haveMon )
|
||||||
{
|
{
|
||||||
// but we already have a month - maybe we guessed wrong?
|
// but we already have a month - maybe we guessed wrong
|
||||||
if ( !haveDay )
|
// when we had interpreted that numeric value as a month
|
||||||
{
|
// and it was the day number instead?
|
||||||
// no need to check in month range as always < 12, but
|
if ( haveDay || !monWasNumeric )
|
||||||
// the days are counted from 1 unlike the months
|
|
||||||
day = (wxDateTime_t)(mon + 1);
|
|
||||||
haveDay = true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// could possible be the year (doesn't the year come
|
|
||||||
// before the month in the japanese format?) (FIXME)
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
|
// assume we did and change our mind: reinterpret the month
|
||||||
|
// value as a day (notice that there is no need to check
|
||||||
|
// that it is valid as month values are always < 12, but
|
||||||
|
// the days are counted from 1 unlike the months)
|
||||||
|
day = (wxDateTime_t)(mon + 1);
|
||||||
|
haveDay = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
mon = mon2;
|
mon = mon2;
|
||||||
@@ -1709,7 +1736,7 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
{
|
{
|
||||||
WeekDay wday2 = GetWeekDayFromName
|
WeekDay wday2 = GetWeekDayFromName
|
||||||
(
|
(
|
||||||
token,
|
pCopy, pEnd,
|
||||||
Name_Full | Name_Abbr,
|
Name_Full | Name_Abbr,
|
||||||
DateLang_Local | DateLang_English
|
DateLang_Local | DateLang_English
|
||||||
);
|
);
|
||||||
@@ -1717,9 +1744,7 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
{
|
{
|
||||||
// a week day
|
// a week day
|
||||||
if ( haveWDay )
|
if ( haveWDay )
|
||||||
{
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
|
|
||||||
wday = wday2;
|
wday = wday2;
|
||||||
|
|
||||||
@@ -1757,8 +1782,11 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
size_t n;
|
size_t n;
|
||||||
for ( n = 0; n < WXSIZEOF(ordinals); n++ )
|
for ( n = 0; n < WXSIZEOF(ordinals); n++ )
|
||||||
{
|
{
|
||||||
if ( token.CmpNoCase(ordinals[n]) == 0 )
|
const wxString ord = wxGetTranslation(ordinals[n]);
|
||||||
|
const size_t len = ord.length();
|
||||||
|
if ( date.compare(p - pBegin, len, ord) == 0 )
|
||||||
{
|
{
|
||||||
|
p += len;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1785,7 +1813,8 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nPosCur = tok.GetPosition();
|
// advance iterator past a successfully parsed token
|
||||||
|
p = pCopy;
|
||||||
}
|
}
|
||||||
|
|
||||||
// either no more tokens or the scan was stopped by something we couldn't
|
// either no more tokens or the scan was stopped by something we couldn't
|
||||||
@@ -1861,15 +1890,6 @@ wxDateTime::ParseDate(const wxString& date, wxString::const_iterator *end)
|
|||||||
SetToWeekDayInSameWeek(wday);
|
SetToWeekDayInSameWeek(wday);
|
||||||
}
|
}
|
||||||
|
|
||||||
// return the pointer to the first unparsed char
|
|
||||||
p += nPosCur;
|
|
||||||
if ( nPosCur && wxStrchr(dateDelimiters, *(p - 1)) )
|
|
||||||
{
|
|
||||||
// if we couldn't parse the token after the delimiter, put back the
|
|
||||||
// delimiter as well
|
|
||||||
p--;
|
|
||||||
}
|
|
||||||
|
|
||||||
*end = p;
|
*end = p;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user