I'm currently working on a scanner generator. The generator already works fine. But when using character classes the algorithm gets very slow.

The scanner generator produces a scanner for UTF8 encoded files. The full range of characters (0x000000 to 0x10ffff) should be supported.

If I use large character sets, like the any operator '.' or the unicode property {L}, the nfa (and also the dfa) contains a lot of states ( > 10000 ). So the convertation for nfa to dfa and create the minimal dfa takes a long time (even if the output minimal dfa contains only a few states).

Here's my current implementation of creating a character set part of the nfa.

void CreateNfaPart(int startStateIndex, int endStateIndex, Set<int> characters)
{
transitions[startStateIndex] = CreateEmptyTransitionsArray();
foreach (int character in characters) {
    // get the utf8 encoded bytes for the character
    byte[] encoded = EncodingHelper.EncodeCharacter(character);
    int tStartStateIndex = startStateIndex;
    for (int i = 0; i < encoded.Length - 1; i++) {
        int tEndStateIndex = transitions[tStartStateIndex][encoded[i]];
        if (tEndStateIndex == -1) {
           tEndStateIndex = CreateState();
               transitions[tEndStateIndex] = CreateEmptyTransitionsArray();
        }                   
        transitions[tStartStateIndex][encoded[i]] = tEndStateIndex;
        tStartStateIndex = tEndStateIndex;
    }
    transitions[tStartStateIndex][encoded[encoded.Length - 1]] = endStateIndex;
}

Does anyone know how to implement the function much more efficiently to create only the necessary states?

EDIT:

To be more specific I need a function like:

List<Set<byte>[]> Convert(Set<int> characters)
{
     ???????
}

A helper function to convert a character (int) to a UTF8 encoding byte[] is defined as:

byte[] EncodeCharacter(int character)
{ ... }
link|improve this question

70% accept rate
You are building a xFA for the byte input? Wouldn't it be a lot easier (and more reliable) to operate on (Utf16) chars? – Henk Holterman Aug 21 '10 at 21:07
I don't think so, the size of the lookup table(s) would increase when using 16bit characters. Also the typical input file would be bigger if using utf16 (in comparision with utf8). – youllknow Aug 22 '10 at 7:54
I'm sorry, I misunderstood! Accepting any encoding would be a nice option for future version. But to keep it simple, I think it's easier to implement only one encoding, and UTF-8 looks like the right joice for me. – youllknow Aug 22 '10 at 10:47
But then I get lookup tables with entries for all 0x10ffff characters. How to implement the transition table then??? – youllknow Aug 22 '10 at 13:01
You need a 'smart' way to handle char sets. One simple idea is to have 1 0..0x10ffff lookup table (big but possible) to find the set# for each char. – Henk Holterman Aug 22 '10 at 19:53
feedback

2 Answers

Look at what regular expression libraries like Google RE2 and TRE are doing.

link|improve this answer
I think Google RE2 does the kind of thing I need, but it's very complex... I find some interestering code at code.google.com/p/re2/source/browse/re2/compile.cc (starting at line 559) – youllknow Aug 23 '10 at 16:08
feedback

There are a number of ways to handle it. They all boil down to treating sets of characters at a time in the data structures, instead of enumerating the entire alphabet ever at all. It's also how you make scanners for Unicode in a reasonable amount of memory.

You've many choices about how to represent and process sets of characters. I'm presently working with a solution that keeps an ordered list of boundary conditions and corresponding target states. You can process operations on these lists much faster than you could if you had to scan the entire alphabet at each juncture. In fact, it's fast enough that it runs in Python with acceptable speed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.