CachedRegexMatcher.cpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // Created by Tobias Hieta on 20/08/15.
  3. //
  4. #include "CachedRegexMatcher.h"
  5. #include "QsLog.h"
  6. /////////////////////////////////////////////////////////////////////////////////////////
  7. bool CachedRegexMatcher::addMatcher(const QString& pattern, const QVariant& result)
  8. {
  9. QRegExp matcher(pattern);
  10. if (!matcher.isValid())
  11. {
  12. QLOG_WARN() << "Could not compile pattern:" << pattern;
  13. return false;
  14. }
  15. m_matcherList.push_back(qMakePair(matcher, result));
  16. return true;
  17. }
  18. /////////////////////////////////////////////////////////////////////////////////////////
  19. QVariant CachedRegexMatcher::match(const QString& input)
  20. {
  21. // first we check if this match has already happened before
  22. if (m_matcherCache.contains(input))
  23. return m_matcherCache.value(input);
  24. // otherwise try to iterate our list and find a match
  25. foreach(const MatcherValuePair& matcher, m_matcherList)
  26. {
  27. QRegExp re(matcher.first);
  28. if (re.indexIn(input) != -1)
  29. {
  30. // found match
  31. QVariant returnValue = matcher.second;
  32. if (re.captureCount() > 0 && matcher.second.type() == QVariant::String)
  33. {
  34. QString value(matcher.second.toString());
  35. for (int i = 0; i < re.captureCount(); i ++)
  36. {
  37. QString argFmt = QString("%%1").arg(i + 1);
  38. if (value.contains(argFmt))
  39. value = value.arg(re.cap(i + 1));
  40. }
  41. returnValue = QVariant(value);
  42. }
  43. // now cache the match and the final value
  44. m_matcherCache.insert(input, returnValue);
  45. return returnValue;
  46. }
  47. }
  48. QLOG_DEBUG() << "No match for:" << input;
  49. // no match at all
  50. return QVariant();
  51. }
  52. /////////////////////////////////////////////////////////////////////////////////////////
  53. void CachedRegexMatcher::clear()
  54. {
  55. m_matcherCache.clear();
  56. m_matcherList.clear();
  57. }