File: nfagraph_width.cpp

package info (click to toggle)
hyperscan 5.4.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,304 kB
  • sloc: cpp: 143,324; ansic: 41,041; python: 621; sh: 32; makefile: 12
file content (97 lines) | stat: -rw-r--r-- 3,607 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
 * Copyright (c) 2015-2017, Intel Corporation
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *  * Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *  * 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.
 *  * Neither the name of Intel Corporation nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT OWNER OR 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.
 */

#include "config.h"

#include "nfagraph_common.h"

#include "gtest/gtest.h"
#include "compiler/compiler.h"
#include "nfagraph/ng.h"
#include "nfagraph/ng_builder.h"
#include "nfagraph/ng_width.h"
#include "grey.h"
#include "util/target_info.h"
#include "util/depth.h"

using namespace std;
using namespace testing;
using namespace ue2;

struct WidthTest {
    string pattern;
    depth minWidth;
    depth maxWidth;
};

class NFAWidthTest : public TestWithParam<WidthTest> { };

static const WidthTest widthTests[] = {
    { "()", depth(0), depth(0) },
    { "a", depth(1), depth(1) },
    { "a?b", depth(1), depth(2) },
    { "foobar", depth(6), depth(6) },
    { "foo(bar)?", depth(3), depth(6) },
    { "(a|ab|abc|abcd)", depth(1), depth(4) },
    { "foo.*bar", depth(6), depth::infinity() },
    { "foo(bar)*", depth(3), depth::infinity() },
    { "foo(bar)+", depth(6), depth::infinity() },
    { "foo(bar){1,3}", depth(6), depth(12) },
    { "(abcd)+", depth(4), depth::infinity() },
    { "foo\\z", depth(3), depth(3) },
    { "^foo", depth(3), depth(3) },
    { "^foo|bar.*baz", depth(3), depth::infinity() },
    { "^foobar.*|baz", depth(3), depth::infinity() },
    { "foo(\\z|bar)", depth(3), depth(6) },
    { "foo(|bar\\z)", depth(3), depth(6) },
    { "foo.{0,15}bar", depth(6), depth(21) },
    { "foo.{0,15}.*bar", depth(6), depth::infinity() },
    { "(?smi)^(aa[^a]aa$|a|a+\\Z|a)", depth(1), depth::infinity() }
};

INSTANTIATE_TEST_CASE_P(NFAWidth, NFAWidthTest, ValuesIn(widthTests));

TEST_P(NFAWidthTest, Check) {
    const WidthTest &t = GetParam();
    SCOPED_TRACE(testing::Message() << "Pattern: " << t.pattern);
    auto g = constructGraph(t.pattern, 0);

    ASSERT_EQ(t.minWidth, findMinWidth(*g));
    ASSERT_EQ(t.maxWidth, findMaxWidth(*g));
}

// for google test
void PrintTo(const WidthTest &w, ::std::ostream *os) {
    *os << "WidthTest: " << w.pattern << "{" << w.minWidth << ',';
    if (w.maxWidth == depth::infinity()) {
        *os << "inf";
    } else {
        *os << w.maxWidth;
    }
    *os << '}';
}