Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1530)

Unified Diff: Source/core/platform/text/RegularExpression.cpp

Issue 13896017: Switch RegularExpression from YARR to V8 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove the test I added, the same kind of test was added in r148951 Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/platform/text/RegularExpression.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/text/RegularExpression.cpp
diff --git a/Source/core/platform/text/RegularExpression.cpp b/Source/core/platform/text/RegularExpression.cpp
index 6943d559a3d5fbd0cadc3d7785095f7e65a38540..3280f63b82f8b5e7e6007d4ec022f3cf04126bbd 100644
--- a/Source/core/platform/text/RegularExpression.cpp
+++ b/Source/core/platform/text/RegularExpression.cpp
@@ -2,6 +2,7 @@
* Copyright (C) 2004, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2008 Collabora Ltd.
* Copyright (C) 2011 Peter Varga (pvarga@webkit.org), University of Szeged
+ * Copyright (C) 2013 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -28,67 +29,79 @@
#include "config.h"
#include "RegularExpression.h"
-#include <wtf/BumpPointerAllocator.h>
-#include <yarr/Yarr.h>
-#include "Logging.h"
+// FIXME: These seem like a layering violation, but converting the strings manually
+// without v8String is difficult, and calling into v8 without V8RecursionScope will
+// assert. Perhaps v8 basic utilities shouldn't be in bindings, or we should put
+// RegularExpression as some kind of abstract interface that's implemented in bindings.
+#include "V8Binding.h"
+#include "V8PerIsolateData.h"
+#include "V8RecursionScope.h"
namespace WebCore {
RegularExpression::RegularExpression(const String& pattern, TextCaseSensitivity caseSensitivity, MultilineMode multilineMode)
- : m_numSubpatterns(0)
- , m_regExpByteCode(compile(pattern, caseSensitivity, multilineMode))
{
+ v8::HandleScope handleScope;
+ v8::Local<v8::Context> context = V8PerIsolateData::current()->ensureRegexContext();
+ v8::Context::Scope scope(context);
+
+ unsigned flags = v8::RegExp::kNone;
+ if (caseSensitivity == TextCaseInsensitive)
+ flags |= v8::RegExp::kIgnoreCase;
+ if (multilineMode == MultilineEnabled)
+ flags |= v8::RegExp::kMultiline;
+
+ v8::TryCatch tryCatch;
+ v8::Local<v8::RegExp> regex = v8::RegExp::New(v8String(pattern, context->GetIsolate()), static_cast<v8::RegExp::Flags>(flags));
+
+ // If the regex failed to compile we'll get an empty handle.
+ if (!regex.IsEmpty())
+ m_regex.set(regex);
}
-PassOwnPtr<JSC::Yarr::BytecodePattern> RegularExpression::compile(const String& patternString, TextCaseSensitivity caseSensitivity, MultilineMode multilineMode)
+int RegularExpression::match(const String& string, int startFrom, int* matchLength) const
{
- const char* constructionError = 0;
- JSC::Yarr::YarrPattern pattern(patternString, (caseSensitivity == TextCaseInsensitive), (multilineMode == MultilineEnabled), &constructionError);
- if (constructionError) {
- LOG_ERROR("RegularExpression: YARR compile failed with '%s'", constructionError);
- return nullptr;
- }
+ if (matchLength)
+ *matchLength = 0;
- m_numSubpatterns = pattern.m_numSubpatterns;
+ if (m_regex.isEmpty() || string.isNull())
+ return -1;
- return JSC::Yarr::byteCompile(pattern, &m_regexAllocator);
-}
+ // v8 strings are limited to int.
+ if (string.length() > INT_MAX)
+ return -1;
-int RegularExpression::match(const String& str, int startFrom, int* matchLength) const
-{
- if (!m_regExpByteCode)
- return -1;
-
- if (str.isNull())
- return -1;
-
- int offsetVectorSize = (m_numSubpatterns + 1) * 2;
- unsigned* offsetVector;
- Vector<unsigned, 32> nonReturnedOvector;
-
- nonReturnedOvector.resize(offsetVectorSize);
- offsetVector = nonReturnedOvector.data();
-
- ASSERT(offsetVector);
- for (unsigned j = 0, i = 0; i < m_numSubpatterns + 1; j += 2, i++)
- offsetVector[j] = JSC::Yarr::offsetNoMatch;
-
- unsigned result;
- if (str.length() <= INT_MAX)
- result = JSC::Yarr::interpret(m_regExpByteCode.get(), str, startFrom, offsetVector);
- else {
- // This code can't handle unsigned offsets. Limit our processing to strings with offsets that
- // can be represented as ints.
- result = JSC::Yarr::offsetNoMatch;
- }
+ v8::HandleScope handleScope;
+ v8::Local<v8::Context> context = V8PerIsolateData::current()->ensureRegexContext();
+ v8::Context::Scope scope(context);
+ v8::TryCatch tryCatch;
- if (result == JSC::Yarr::offsetNoMatch)
- return -1;
+ V8RecursionScope::MicrotaskSuppression microtaskScope;
- // 1 means 1 match; 0 means more than one match. First match is recorded in offsetVector.
- if (matchLength)
- *matchLength = offsetVector[1] - offsetVector[0];
- return offsetVector[0];
+ v8::Local<v8::Function> exec = m_regex->Get(v8::String::NewSymbol("exec")).As<v8::Function>();
+
+ v8::Handle<v8::Value> argv[] = { v8String(string.substringSharingImpl(startFrom), context->GetIsolate()) };
+ v8::Local<v8::Value> returnValue = exec->Call(m_regex.get(), 1, argv);
+
+ // RegExp#exec returns null if there's no match, otherwise it returns an
+ // Array of strings with the first being the whole match string and others
+ // being subgroups. The Array also has some random properties tacked on like
+ // "index" which is the offset of the match.
+ //
+ // https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/RegExp/exec
+
+ if (!returnValue->IsArray())
+ return -1;
+
+ v8::Local<v8::Array> result = returnValue.As<v8::Array>();
+ int matchOffset = result->Get(v8::String::NewSymbol("index"))->ToInt32()->Value();
+
+ if (matchLength) {
+ v8::Local<v8::String> match = result->Get(0).As<v8::String>();
+ *matchLength = match->Length();
+ }
+
+ return matchOffset + startFrom;
}
} // namespace WebCore
« no previous file with comments | « Source/core/platform/text/RegularExpression.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698