You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by "Alberto Massari (JIRA)" <xe...@xml.apache.org> on 2009/07/29 15:12:15 UTC

[jira] Resolved: (XERCESC-1870) Xerces 2.8.0 and 3.0.1: Bug in RegularExpression::matches(txt, pMatch)

     [ https://issues.apache.org/jira/browse/XERCESC-1870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alberto Massari resolved XERCESC-1870.
--------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 2.7.0)
                   3.1.0
         Assignee: Alberto Massari

I fixed it in a different way, avoid creating temporary objects during the evaluation of the regex

> Xerces 2.8.0 and 3.0.1: Bug in RegularExpression::matches(txt, pMatch)
> ----------------------------------------------------------------------
>
>                 Key: XERCESC-1870
>                 URL: https://issues.apache.org/jira/browse/XERCESC-1870
>             Project: Xerces-C++
>          Issue Type: Bug
>          Components: Utilities
>    Affects Versions: 2.8.0, 3.0.1
>         Environment: Platform Windows XP
> MSVC 7.1, 8.0, 9.0
>            Reporter: mark hermann
>            Assignee: Alberto Massari
>             Fix For: 3.1.0
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> RegularExpression::matches(txt, pMatch) does not work in 2.8, 3.0.1 
> since pMatch is not updated correctly anymore.
> // Test code - works with 2.7.0
> XMLCh * txt = L"2004-06-17";
> Match m;
> RegularExpression r("(\\-?\\d+(\\-\\d{2}(\\-\\d{2})?)?)?(T\\d{2}(:\\d{2}(:\\d{2}(:\\d+)?)?)?)?(F\\d+)?((\\-|\\+)\\d{2}:\\d{2})?");
> if(r.matches(txt, &m))
> {
>   for(int i = 1; i < m.getNoGroups(); i++)
> 	{
>     int i1 = m.getStartPos(i); // Should be 0
>     
>     if(i1 < 0) // Is -1 
> 		{
> 			printf("This is wrong!\n");
> 			return;
> 		}
> 	}
> }
> Problem can be tracked via
> bool RegularExpression::matches(const XMLCh* const expression, const XMLSize_t start
>                                 , const XMLSize_t end, Match* const pMatch
>                                 , MemoryManager* const manager) const;
> which does
>     Match* lMatch = pMatch; // use our pMatch
>     context.fMatch = lMatch; // put pMatch into context
>             /*
>              *    Straightforward matching
>              */
>             for (matchStart=context.fStart; matchStart<=limit; matchStart++) {
>                 if (0 <= (matchEnd = match(&context,fOperations,matchStart)))
>                     break;
>             }
>             
> and at the end updates the context fMatch data
>     if (matchEnd >= 0) {
>         if (context.fMatch != 0) {
>             context.fMatch->setStartPos(0, (int)matchStart);
>             context.fMatch->setEndPos(0, matchEnd);
>         }
>         return true;
>     }
> But: context.fMatch is NOT the original match pointer (pMatch), but a temporal one.
> So the correct result is not propagated back to the caller anymore.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: c-dev-help@xerces.apache.org