| /* |
| * Copyright (C) 2015 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #pragma once |
| |
| #include "ImmutableNFA.h" |
| #include "MutableRangeList.h" |
| #include <wtf/HashSet.h> |
| |
| #if ENABLE(CONTENT_EXTENSIONS) |
| |
| namespace WebCore { |
| |
| namespace ContentExtensions { |
| |
| // A ImmutableNFANodeBuilder let you build a NFA node by adding states and linking with other nodes. |
| // Whe a builder is destructed, all its properties are finalized into the NFA. Using the NA with a live |
| // builder results in undefined behaviors. |
| template <typename CharacterType, typename ActionType> |
| class ImmutableNFANodeBuilder { |
| typedef ImmutableNFA<CharacterType, ActionType> TypedImmutableNFA; |
| typedef HashSet<uint32_t, DefaultHash<uint32_t>::Hash, WTF::UnsignedWithZeroKeyHashTraits<uint32_t>> TargetSet; |
| public: |
| ImmutableNFANodeBuilder() { } |
| |
| ImmutableNFANodeBuilder(TypedImmutableNFA& immutableNFA) |
| : m_immutableNFA(&immutableNFA) |
| , m_finalized(false) |
| { |
| m_nodeId = m_immutableNFA->nodes.size(); |
| m_immutableNFA->nodes.append(ImmutableNFANode()); |
| } |
| |
| ImmutableNFANodeBuilder(ImmutableNFANodeBuilder&& other) |
| : m_immutableNFA(other.m_immutableNFA) |
| , m_ranges(WTFMove(other.m_ranges)) |
| , m_epsilonTransitionTargets(WTFMove(other.m_epsilonTransitionTargets)) |
| , m_actions(WTFMove(other.m_actions)) |
| , m_nodeId(other.m_nodeId) |
| , m_finalized(other.m_finalized) |
| { |
| other.m_immutableNFA = nullptr; |
| other.m_finalized = true; |
| } |
| |
| ~ImmutableNFANodeBuilder() |
| { |
| if (!m_finalized) |
| finalize(); |
| } |
| |
| bool isValid() const |
| { |
| return !!m_immutableNFA; |
| } |
| |
| uint32_t nodeId() const |
| { |
| ASSERT(isValid()); |
| return m_nodeId; |
| } |
| |
| struct TrivialRange { |
| CharacterType first; |
| CharacterType last; |
| }; |
| |
| struct FakeRangeIterator { |
| CharacterType first() const { return range.first; } |
| CharacterType last() const { return range.last; } |
| uint32_t data() const { return targetId; } |
| bool operator==(const FakeRangeIterator& other) |
| { |
| return this->isEnd == other.isEnd; |
| } |
| bool operator!=(const FakeRangeIterator& other) { return !(*this == other); } |
| FakeRangeIterator operator++() |
| { |
| isEnd = true; |
| return *this; |
| } |
| |
| TrivialRange range; |
| uint32_t targetId; |
| bool isEnd; |
| }; |
| |
| void addTransition(CharacterType first, CharacterType last, uint32_t targetNodeId) |
| { |
| ASSERT(!m_finalized); |
| ASSERT(m_immutableNFA); |
| |
| struct Converter { |
| TargetSet convert(uint32_t target) |
| { |
| return TargetSet({ target }); |
| } |
| void extend(TargetSet& existingTargets, uint32_t target) |
| { |
| existingTargets.add(target); |
| } |
| }; |
| |
| Converter converter; |
| m_ranges.extend(FakeRangeIterator { { first, last }, targetNodeId, false }, FakeRangeIterator { { 0, 0 }, targetNodeId, true }, converter); |
| } |
| |
| void addEpsilonTransition(const ImmutableNFANodeBuilder& target) |
| { |
| ASSERT(m_immutableNFA == target.m_immutableNFA); |
| addEpsilonTransition(target.m_nodeId); |
| } |
| |
| void addEpsilonTransition(uint32_t targetNodeId) |
| { |
| ASSERT(!m_finalized); |
| ASSERT(m_immutableNFA); |
| m_epsilonTransitionTargets.add(targetNodeId); |
| } |
| |
| template<typename ActionIterator> |
| void setActions(ActionIterator begin, ActionIterator end) |
| { |
| ASSERT(!m_finalized); |
| ASSERT(m_immutableNFA); |
| |
| m_actions.add(begin, end); |
| } |
| |
| ImmutableNFANodeBuilder& operator=(ImmutableNFANodeBuilder&& other) |
| { |
| if (!m_finalized) |
| finalize(); |
| |
| m_immutableNFA = other.m_immutableNFA; |
| m_ranges = WTFMove(other.m_ranges); |
| m_epsilonTransitionTargets = WTFMove(other.m_epsilonTransitionTargets); |
| m_actions = WTFMove(other.m_actions); |
| m_nodeId = other.m_nodeId; |
| m_finalized = other.m_finalized; |
| |
| other.m_immutableNFA = nullptr; |
| other.m_finalized = true; |
| return *this; |
| } |
| |
| private: |
| void finalize() |
| { |
| ASSERT_WITH_MESSAGE(!m_finalized, "The API contract is that the builder can only be finalized once."); |
| m_finalized = true; |
| ImmutableNFANode& immutableNFANode = m_immutableNFA->nodes[m_nodeId]; |
| sinkActions(immutableNFANode); |
| sinkEpsilonTransitions(immutableNFANode); |
| sinkTransitions(immutableNFANode); |
| } |
| |
| void sinkActions(ImmutableNFANode& immutableNFANode) |
| { |
| unsigned actionStart = m_immutableNFA->actions.size(); |
| for (const ActionType& action : m_actions) |
| m_immutableNFA->actions.append(action); |
| unsigned actionEnd = m_immutableNFA->actions.size(); |
| immutableNFANode.actionStart = actionStart; |
| immutableNFANode.actionEnd = actionEnd; |
| } |
| |
| void sinkTransitions(ImmutableNFANode& immutableNFANode) |
| { |
| unsigned transitionsStart = m_immutableNFA->transitions.size(); |
| for (const auto& range : m_ranges) { |
| unsigned targetsStart = m_immutableNFA->targets.size(); |
| for (uint32_t target : range.data) |
| m_immutableNFA->targets.append(target); |
| unsigned targetsEnd = m_immutableNFA->targets.size(); |
| |
| m_immutableNFA->transitions.append(ImmutableRange<CharacterType> { targetsStart, targetsEnd, range.first, range.last }); |
| } |
| unsigned transitionsEnd = m_immutableNFA->transitions.size(); |
| |
| immutableNFANode.rangesStart = transitionsStart; |
| immutableNFANode.rangesEnd = transitionsEnd; |
| } |
| |
| void sinkEpsilonTransitions(ImmutableNFANode& immutableNFANode) |
| { |
| unsigned start = m_immutableNFA->epsilonTransitionsTargets.size(); |
| for (uint32_t target : m_epsilonTransitionTargets) |
| m_immutableNFA->epsilonTransitionsTargets.append(target); |
| unsigned end = m_immutableNFA->epsilonTransitionsTargets.size(); |
| |
| immutableNFANode.epsilonTransitionTargetsStart = start; |
| immutableNFANode.epsilonTransitionTargetsEnd = end; |
| } |
| |
| TypedImmutableNFA* m_immutableNFA { nullptr }; |
| MutableRangeList<CharacterType, TargetSet> m_ranges; |
| TargetSet m_epsilonTransitionTargets; |
| HashSet<ActionType, WTF::IntHash<ActionType>, WTF::UnsignedWithZeroKeyHashTraits<ActionType>> m_actions; |
| uint32_t m_nodeId; |
| bool m_finalized { true }; |
| }; |
| |
| } // namespace ContentExtensions |
| } // namespace WebCore |
| |
| #endif // ENABLE(CONTENT_EXTENSIONS) |