Kaydet (Commit) dfb2feca authored tarafından Matteo Casalin's avatar Matteo Casalin

Improve parseDateTime tokenization and reduce OUString copies

Change-Id: If84f455c235176d56d72bdc11d813f1ee1e3122e
Reviewed-on: https://gerrit.libreoffice.org/69241
Tested-by: Jenkins
Reviewed-by: 's avatarMatteo Casalin <matteo.casalin@yahoo.com>
üst 86e6396a
......@@ -294,20 +294,13 @@ static bool parseDateTime(const OUString& aString, DateTime& aDateTime)
if (aDateTimeString.getLength() < 19 || aDateTimeString.getLength() > 20)
return false;
sal_Int32 nDateLength = 10;
sal_Int32 const nTimeLength = 8;
OUString aDateString = aDateTimeString.copy(0, nDateLength);
OUString aTimeString = aDateTimeString.copy(nDateLength+1, nTimeLength);
sal_Int32 nIndex = 0;
sal_Int32 nYear = aDateString.getToken(0, '-', nIndex).toInt32();
sal_Int32 nMonth = aDateString.getToken(0, '-', nIndex).toInt32();
sal_Int32 nDay = aDateString.getToken(0, '-', nIndex).toInt32();
nIndex = 0;
sal_Int32 nHour = aTimeString.getToken(0, ':', nIndex).toInt32();
sal_Int32 nMinute = aTimeString.getToken(0, ':', nIndex).toInt32();
sal_Int32 nSecond = aTimeString.getToken(0, ':', nIndex).toInt32();
sal_Int32 nYear = aDateTimeString.getToken(0, '-', nIndex).toInt32();
sal_Int32 nMonth = aDateTimeString.getToken(0, '-', nIndex).toInt32();
sal_Int32 nDay = aDateTimeString.getToken(0, 'T', nIndex).toInt32();
sal_Int32 nHour = aDateTimeString.getToken(0, ':', nIndex).toInt32();
sal_Int32 nMinute = aDateTimeString.getToken(0, ':', nIndex).toInt32();
sal_Int32 nSecond = aDateTimeString.getToken(0, 'Z', nIndex).toInt32();
Date tmpDate(static_cast<sal_uInt16>(nDay), static_cast<sal_uInt16>(nMonth), static_cast<sal_uInt16>(nYear));
tools::Time tmpTime(nHour, nMinute, nSecond);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment