示例#1
0
        public void AddToken(ail.net.parser.Fsa xi_fsa, string xi_token, int xi_token_type)
        {
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");
            ail.net.framework.Assert.NonEmptyString(xi_token, "xi_token");

            AddToken(xi_fsa, xi_token, xi_token_type, ail.net.parser.Token.kUndefinedEscapeTokenType, "");
        }
示例#2
0
        private void GenerateStateCodeWithBacktracking(ail.net.parser.Fsa xi_fsa, StringBuilder xio_code)
        {
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");
            ail.net.framework.Assert.NonNullReference(xi_fsa.StartState, "xi_fsa.StartState");

            GenerateStateCodeWalker(xi_fsa, xi_fsa.StartState, 0, xio_code);
        }
示例#3
0
        public ail.net.parser.Fsa Minimize(ail.net.parser.Fsa.EMinimizationMode xi_mode)
        {
            ail.net.parser.Fsa result = new ail.net.parser.Fsa();

            // phase I (clean)
            RemoveUselessStates();

            // phase II (divide fsa into equivalent groups, each group will be new fsa state)
            Hashtable partition = new Hashtable();

            BuildPartition(ref partition, xi_mode);

            // phase III (compose fsa)
            foreach (ail.net.parser.FsaStateSet group in partition.Values)
            {
                ail.net.parser.FsaState new_state = result.AddState(group.Id);
                ail.net.parser.FsaState old_state = (ail.net.parser.FsaState)ail.net.framework.Functor.FirstElementOfCollection(group.States.Values);

                // check if group has start state
                foreach (ail.net.parser.FsaState state in group.States.Values)
                {
                    if (IsStartState(state))
                    {
                        result.StartState = new_state;
                        break;
                    }
                }

                // check if group final state
                foreach (ail.net.parser.FsaState state in group.States.Values)
                {
                    if (IsFinalState(state))
                    {
                        result.AddFinalState(new_state, state.Token);
                        break;
                    }
                }

                // add transitions
                foreach (ail.net.parser.FsaTransition transition in old_state.Transitions.Values)
                {
                    ail.net.parser.FsaStateSet transition_group = GetGroupFromState(transition.End, partition);

                    ail.net.framework.Assert.NonNullReference(transition_group, "transition_group");

                    result.AddTransition(new_state.Id,
                                         transition_group.Id,
                                         transition.Predicate.Text,
                                         transition.Predicate.SwitchChar,
                                         transition.Predicate.Context,
                                         transition.Predicate.Rank);
                }
            }

            // phase IV (clean)
            result.RemoveUselessStates();

            return(result);
        }
示例#4
0
        public void GenerateCode(string xi_filename)
        {
            ail.net.framework.Assert.NonEmptyString(xi_filename, "xi_filename");

            ail.net.parser.Fsa fsa = BuildFsa();

            GenerateCode(xi_filename, fsa);
        }
        public virtual string GenerateCode(ail.net.parser.Fsa xi_xsa)
        {
            const string tab1 = "    ";
            const string tab2 = "        ";

            // Environment.NewLine;

            StringBuilder result = new StringBuilder();

            return(result.ToString());
        }
示例#6
0
        public void AddFsa(ail.net.parser.Fsa xi_fsa)
        {
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");

            bool empty = IsEmpty();

            Hashtable map = new Hashtable(ail.net.framework.Functor.Align(xi_fsa.States.Count, ail.net.framework.Functor.kAlignValue));

            for (int i = 0; i < xi_fsa.StateCounter.Current; i++)
            {
                ail.net.parser.FsaState old_state = (ail.net.parser.FsaState)xi_fsa.States[i];
                ail.net.framework.Assert.NonNullReference(old_state, "old_state");

                ail.net.parser.FsaState new_state = AddState();
                ail.net.framework.Assert.NonNullReference(new_state, "new_state");

                new_state.Label = old_state.Label;
                new_state.Token = old_state.Token;

                if (xi_fsa.IsFinalState(old_state))
                {
                    AddFinalState(new_state, new_state.Token);
                }

                map[old_state.Id] = new_state.Id;
            }

            foreach (ail.net.parser.FsaState state in xi_fsa.States.Values)
            {
                foreach (ail.net.parser.FsaTransition transition in state.Transitions.Values)
                {
                    ail.net.parser.FsaState start_state = (ail.net.parser.FsaState)States[map[transition.Start]];
                    ail.net.parser.FsaState end_state   = (ail.net.parser.FsaState)States[map[transition.End]];

                    ail.net.framework.Assert.NonNullReference(start_state, "start_state");
                    ail.net.framework.Assert.NonNullReference(end_state, "end_state");

                    AddTransition(start_state.Id,
                                  end_state.Id,
                                  transition.Predicate.Text,
                                  transition.Predicate.SwitchChar,
                                  transition.Predicate.Context,
                                  transition.Predicate.Rank);
                }
            }

            if (!empty)
            {
                if (xi_fsa.StartState != (object)null)
                {
                    AddTransition(StartState, (ail.net.parser.FsaState)States[map[xi_fsa.StartState.Id]], ail.net.parser.FsaTransition.kEpsilonPredicate);
                }
            }
        }
示例#7
0
        public ail.net.parser.Fsa BuildFsa()
        {
            ail.net.parser.Fsa result = new ail.net.parser.Fsa();

            AddToken(result, "a", (int)ail.net.test.AycToken.EType.ea);

            result = result.Nfa2Dfa();
            result = result.Minimize(ail.net.parser.Fsa.EMinimizationMode.ePartition);

            return(result);
        }
示例#8
0
        public void GenerateCode(string xi_filename, ail.net.parser.Fsa xi_fsa)
        {
            ail.net.framework.Assert.NonEmptyString(xi_filename, "xi_filename");
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");

            string result = GenerateCode(xi_fsa);

            ail.net.framework.Assert.NonEmptyString(result, "result");

            StreamWriter writer = new StreamWriter(xi_filename);

            writer.Write(result);
            writer.Flush();
            writer.Close();
        }
        public ail.net.parser.Fsa BuildFsa()
        {
            ail.net.parser.Fsa result = new ail.net.parser.Fsa();

            AddToken(result, "+", (int)ail.net.test.AhoLR1conflictsToken.EType.ePlus);
            AddToken(result, "*", (int)ail.net.test.AhoLR1conflictsToken.EType.eMult);
            AddToken(result, "(", (int)ail.net.test.AhoLR1conflictsToken.EType.eLeftParens);
            AddToken(result, ")", (int)ail.net.test.AhoLR1conflictsToken.EType.eRightParens);
            AddToken(result, "a", (int)ail.net.test.AhoLR1conflictsToken.EType.ea);

            result = result.Nfa2Dfa();
            result = result.Minimize(ail.net.parser.Fsa.EMinimizationMode.ePartition);

            return(result);
        }
示例#10
0
        public void Print(ail.net.parser.Fsa xi_fsa)
        {
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");

            Console.WriteLine("states: {0}{1}", xi_fsa.States.Count, '\n');

            ArrayList states = new ArrayList(xi_fsa.States.Values);

            states.Sort(); // states must be numbered in sequence

            foreach (ail.net.parser.FsaState state in states)
            {
                string text = string.Format("start state: [{0}]", state.Id);

                if (state.Label.Length > 0)
                {
                    text += string.Format(" \"{0}\"", state.Label);
                }

                if (xi_fsa.IsStartState(state))
                {
                    text += " [start]";
                }

                if (xi_fsa.IsFinalState(state))
                {
                    text += " [final: ";
                    text += Token.GetTokenName(state.Token.Type);
                    text += "]";
                }

                Console.WriteLine(text);

                foreach (ail.net.parser.FsaTransition it in state.Transitions.Values)
                {
                    text = string.Format("end state: [{0}] [{1}]", it.End, it.Predicate.Text);
                    Console.WriteLine(text);
                }

                Console.WriteLine("");
            }
        }
示例#11
0
        private void GenerateStateCodeWalker(ail.net.parser.Fsa xi_fsa, ail.net.parser.FsaState xi_state, int xi_token_type, StringBuilder xio_code)
        {
            ail.net.framework.Assert.NonNullReference(xi_state, "xi_state");

            if (xi_state.Id != xi_fsa.StartState.Id) //  start state was generated earley with switch/case code
            {
                xi_state.Marked = true;

                xio_code.Append(Environment.NewLine);
                xio_code.Append(@"_q");
                xio_code.Append(xi_state.Id.ToString());
                xio_code.Append(@":");

                bool finalstate = xi_state.Papa.FinalStates.Contains(xi_state.Id);

                if (finalstate && xi_state.Token != (object)null)
                {
                    xio_code.Append(Environment.NewLine);
                    xio_code.Append(kTab3);
                    xio_code.Append(@"PushState((int)");
                    xio_code.Append(Token.GetClassName());
                    xio_code.Append(@".EType.");
                    xio_code.Append(Token.GetTokenName(xi_state.Token.Type));
                    xio_code.Append(@"); // save accepted state for backtracking");
                    xio_code.Append(Environment.NewLine);
                }

                xio_code.Append(Environment.NewLine);
                xio_code.Append(kTab3);
                xio_code.Append(@"Next();");
                xio_code.Append(Environment.NewLine);

                for (int rank = 0, i = 0; ; rank++) // fix point
                {
                    int length = xio_code.Length;

                    foreach (ail.net.parser.FsaTransition transition in xi_state.Transitions.Values)
                    {
                        ail.net.framework.Assert.NonNullReference(transition, "transition");

                        if (transition.Predicate.Rank == rank)
                        {
                            xio_code.Append(Environment.NewLine);
                            xio_code.Append(kTab3);

                            if (i > 0)
                            {
                                xio_code.Append(@"else ");
                            }
                            else
                            {
                                i++;
                            }

                            xio_code.Append(@"if(");

                            if (transition.Predicate.Context.Length != 0)
                            {
                                xio_code.Append("xi_context == ");
                                xio_code.Append(transition.Predicate.Context);
                                xio_code.Append(" && ");
                            }

                            xio_code.Append(transition.Predicate.Text);
                            xio_code.Append(@"(Current))");
                            xio_code.Append(Environment.NewLine);
                            xio_code.Append(kTab3);
                            xio_code.Append(@"{");
                            xio_code.Append(Environment.NewLine);
                            xio_code.Append(kTab4);
                            xio_code.Append(@"goto _q");
                            xio_code.Append(transition.End.ToString());
                            xio_code.Append(@";");
                            xio_code.Append(Environment.NewLine);
                            xio_code.Append(kTab3);
                            xio_code.Append(@"}");
                        }
                    }

                    if (xio_code.Length == length && rank > ail.net.parser.FsaTransition.kMaxRankValue)
                    {
                        break;
                    }
                }

                if (!finalstate && HasBacktracking && !NoBacktrackingTokens.Contains(xi_token_type))
                {
                    if (xi_state.Transitions.Values.Count > 0)
                    {
                        xio_code.Append(Environment.NewLine);
                        xio_code.Append(kTab3);
                        xio_code.Append(@"else");
                        xio_code.Append(Environment.NewLine);
                        xio_code.Append(kTab3);
                        xio_code.Append(@"{");
                        xio_code.Append(Environment.NewLine);
                        xio_code.Append(kTab4);
                    }
                    else
                    {
                        xio_code.Append(kTab3);
                    }

                    xio_code.Append(@"PopState(); // restore the last accepted state, backtracking");

                    if (xi_state.Transitions.Values.Count > 0)
                    {
                        xio_code.Append(Environment.NewLine);
                        xio_code.Append(kTab3);
                        xio_code.Append(@"}");
                    }
                }

                xio_code.Append(Environment.NewLine);
                xio_code.Append(kTab3);
                xio_code.Append(@"goto _exit;");
            }

            int token_type = xi_token_type;

            if (xi_state.Token != (object)null)
            {
                token_type = xi_state.Token.Type;
            }

            foreach (ail.net.parser.FsaTransition transition in xi_state.Transitions.Values)
            {
                ail.net.framework.Assert.NonNullReference(transition, "transition");

                ail.net.parser.FsaState state = (ail.net.parser.FsaState)xi_fsa.States[transition.End];
                ail.net.framework.Assert.NonNullReference(state, "state");

                if (!state.Marked)
                {
                    GenerateStateCodeWalker(xi_fsa, state, token_type, xio_code);
                }
            }
        }
示例#12
0
 public static ail.net.parser.Fsa BuildFsa()
 {
     ail.net.parser.Fsa result = new ail.net.parser.Fsa();
     return(result);
 }
示例#13
0
 public FsaState(int xi_id, ail.net.parser.Fsa xi_papa)
 {
     IdAttr   = xi_id;
     PapaAttr = xi_papa;
 }
示例#14
0
 public FsaState(int xi_id, string xi_label, ail.net.parser.Fsa xi_papa)
 {
     IdAttr    = xi_id;
     LabelAttr = xi_label;
     PapaAttr  = xi_papa;
 }
示例#15
0
        public ail.net.parser.Fsa Nfa2Dfa()
        {
            // Conversion of an NFA into a DFA (subset construction)
            // .....................................................
            // Input: An NFA N.
            // Output: A DFA D accepting the same language.
            // Operations:
            //  e-closure(s) is the set of NFA states reachable from s on e-transitions alone.
            //  e-closure(T) is the union of e-closure(r) for all r in T.
            //  move(T, a) is the set of NFA states to which there is a transition on input a from some NFA state in T.
            //
            // set the start state to e-closure(s0) and unmark it.
            //  While there is an unmarked state T in Dstates do
            //      Mark T
            //      For each input symbol a do
            //          If U := e-closure(move(T, a));
            //          If U is not in Dstates then
            //              Add U as an unmarked state to Dstates;
            //          Dtran(T, a) := U;
            //      End;
            //  End;
            ail.net.parser.Fsa result = new ail.net.parser.Fsa();

            ArrayList dfa_states = new ArrayList();

            // build pseudo dfa
            ail.net.parser.FsaStateSet start_dfa_state = CalculateStateEclosure(StartState);

            start_dfa_state.Id     = dfa_states.Count;
            start_dfa_state.Marked = false;

            dfa_states.Add(start_dfa_state);

            bool proceed = false;

            for (;;)
            {
                IEnumerator dfa_state_enum = dfa_states.GetEnumerator();

                while (dfa_state_enum.MoveNext())
                {
                    ail.net.parser.FsaStateSet dfa_state = (ail.net.parser.FsaStateSet)dfa_state_enum.Current;

                    if (!dfa_state.Marked)
                    {
                        dfa_state.Marked = true;

                        foreach (ail.net.parser.FsaTransitionPredicate predicate in Predicates.Values)
                        {
                            if (predicate.Text != ail.net.parser.FsaTransition.kEpsilonPredicate)
                            {
                                ail.net.parser.FsaStateSet move_set = CalculateMove(dfa_state, predicate.Text);

                                if (move_set != (object)null)
                                {
                                    ail.net.parser.FsaStateSet pseudo_dfa_state = CalculateEClosureFromMove(move_set);

                                    if (pseudo_dfa_state != (object)null && pseudo_dfa_state.States.Count > 0)
                                    {
                                        ail.net.parser.FsaStateSet new_dfa_state = HasDfaCompoundState(dfa_states, pseudo_dfa_state);

                                        if (new_dfa_state == (object)null)
                                        {
                                            new_dfa_state        = pseudo_dfa_state;
                                            new_dfa_state.Id     = dfa_states.Count;
                                            new_dfa_state.Marked = false;

                                            dfa_states.Add(new_dfa_state);

                                            dfa_state_enum = dfa_states.GetEnumerator(); // reset iterator
                                        }

                                        if (!dfa_state.Transitions.Contains(dfa_state.Transitions.Count))
                                        {
                                            ail.net.parser.FsaTransition transition = new ail.net.parser.FsaTransition(dfa_state.Transitions.Count,
                                                                                                                       dfa_state.Id,
                                                                                                                       new_dfa_state.Id,
                                                                                                                       predicate.Text,
                                                                                                                       predicate.SwitchChar,
                                                                                                                       predicate.Context,
                                                                                                                       predicate.Rank);

                                            dfa_state.Transitions.Add(transition.Id, transition);
                                        }
                                    }
                                }
                            }
                        }

                        proceed = true;
                    }
                }

                if (!proceed)
                {
                    break;
                }

                proceed = false;
            }

            // populate states and final states
            foreach (ail.net.parser.FsaStateSet dfa_state in dfa_states)
            {
                ail.net.parser.FsaState state = result.AddState(dfa_state.Id);
                ail.net.framework.Assert.NonNullReference(state, "state");

                foreach (ail.net.parser.FsaTransition transition in dfa_state.Transitions.Values)
                {
                    result.AddTransition(transition.Start,
                                         transition.End,
                                         transition.Predicate.Text,
                                         transition.Predicate.SwitchChar,
                                         transition.Predicate.Context,
                                         transition.Predicate.Rank);
                }

                ail.net.parser.FsaState final_state = null;

                foreach (ail.net.parser.FsaState tmp_state in dfa_state.States.Values)
                {
                    if (FinalStates.Contains(tmp_state.Id))
                    {
                        ail.net.parser.FsaState org_state = (ail.net.parser.FsaState)States[tmp_state.Id];

                        ail.net.framework.Assert.NonNullReference(org_state, "org_state");

                        if (final_state == (object)null || org_state.Token.Priority > final_state.Token.Priority)
                        {
                            final_state = org_state;
                        }
                    }
                }

                if (final_state != (object)null)
                {
                    result.AddFinalState(state, final_state.Token);
                }
            }

            result.StateCounter.Reset(States.Count);

            return(result);
        }
示例#16
0
        public static void TestFsa()
        {
            try
            {
/*
 *              ail.net.parser.Fsa fsa = new ail.net.parser.Fsa();
 *
 *              ail.net.parser.FsaState q0 = fsa.AddState();
 *              q0.Label = q0.Id.ToString();
 *              ail.net.parser.FsaState q1 = fsa.AddState();
 *              q1.Label = q1.Id.ToString();
 *              ail.net.parser.FsaState q2 = fsa.AddState();
 *              q2.Label = q2.Id.ToString();
 *              ail.net.parser.FsaState q3 = fsa.AddState();
 *              q3.Label = q3.Id.ToString();
 *              ail.net.parser.FsaState q4 = fsa.AddState();
 *              q4.Label = q4.Id.ToString();
 *              ail.net.parser.FsaState q5 = fsa.AddState();
 *              q5.Label = q5.Id.ToString();
 *              ail.net.parser.FsaState q6 = fsa.AddState();
 *              q6.Label = q6.Id.ToString();
 *              ail.net.parser.FsaState q7 = fsa.AddState();
 *              q7.Label = q7.Id.ToString();
 *              ail.net.parser.FsaState q8 = fsa.AddState();
 *              q8.Label = q8.Id.ToString();
 *              ail.net.parser.FsaState q9 = fsa.AddState();
 *              q9.Label = q9.Id.ToString();
 *              ail.net.parser.FsaState q10 = fsa.AddState();
 *              q10.Label = q10.Id.ToString();
 *              ail.net.parser.FsaState q11 = fsa.AddState();
 *              q11.Label = q11.Id.ToString();
 *              ail.net.parser.FsaState q12 = fsa.AddState();
 *              q12.Label = q12.Id.ToString();
 *              ail.net.parser.FsaState q13 = fsa.AddState();
 *              q13.Label = q13.Id.ToString();
 *              ail.net.parser.FsaState q14 = fsa.AddState();
 *              q14.Label = q14.Id.ToString();
 *
 *              fsa.AddTransition(q0, q1, "IsCharLowerCaseI");
 *              fsa.AddTransition(q1, q2, "IsCharLowerCaseF");
 *
 *              fsa.AddTransition(q0, q3, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q3, q4, "IsCharLowerCaseA");
 *              fsa.AddTransition(q4, q7, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q7, q5, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q5, q6, "IsCharLowerCaseA");
 *              fsa.AddTransition(q5, q6, "IsCharDecimalZero");
 *              fsa.AddTransition(q6, q7, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *
 *              fsa.AddTransition(q0, q8, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q8, q9, "IsCharDecimalZero");
 *              fsa.AddTransition(q9, q12, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q12, q10, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q10, q11, "IsCharDecimalZero");
 *              fsa.AddTransition(q11, q12, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *
 *              fsa.AddTransition(q0, q13, ail.net.parser.FsaTransition.kEpsilonPredicate);
 *              fsa.AddTransition(q13, q14, "IsWhiteSpaceChar");
 *
 * //                fsa.AddFinalState(q2, (int)ail.net.parser.ReToken.EType.eBar);
 * //                fsa.AddFinalState(q7, (int)ail.net.parser.ReToken.EType.eChar);
 * //                fsa.AddFinalState(q12, (int)ail.net.parser.ReToken.EType.eInteger);
 * //                fsa.AddFinalState(q14, (int)ail.net.parser.ReToken.EType.eHexChar);
 *
 * //                fsa.Print();
 */
/*
 *              foreach(ail.net.parser.FsaState state in fsa.States.Values)
 *              {
 *                  ail.net.parser.FsaStateSet eclosure = fsa.CalculateStateEclosure(state);
 *
 *                  if(eclosure.States.Count > 0)
 *                  {
 *                      Console.WriteLine("state: {0}", state.Id);
 *                      eclosure.Print();
 *                      Console.WriteLine("");
 *
 *                      ail.net.parser.FsaStateSet move = fsa.CalculateMove(eclosure, "IsCharLowerCaseA");
 *
 *                      if(move.States.Count > 0)
 *                      {
 *                          Console.WriteLine("state: {0}", state.Id);
 *                          move.Print();
 *                          Console.WriteLine("");
 *                      }
 *                  }
 *              }
 */
//                ail.net.parser.Fsa nfa = fsa.Nfa2Dfa();

//                nfa.Print();

                {
                    // aho
                    ail.net.parser.Fsa dfa = new ail.net.parser.Fsa();

                    ail.net.parser.FsaState q0 = dfa.AddState();
                    q0.Label = "A";
                    ail.net.parser.FsaState q1 = dfa.AddState();
                    q1.Label = "B";
                    ail.net.parser.FsaState q2 = dfa.AddState();
                    q2.Label = "C";
                    ail.net.parser.FsaState q3 = dfa.AddState();
                    q3.Label = "D";
                    ail.net.parser.FsaState q4 = dfa.AddState();
                    q4.Label = "E";

                    dfa.AddTransition(q0, q1, "a");
                    dfa.AddTransition(q0, q2, "b");

                    dfa.AddTransition(q1, q1, "a");
                    dfa.AddTransition(q1, q3, "b");

                    dfa.AddTransition(q2, q2, "b");
                    dfa.AddTransition(q2, q1, "a");

                    dfa.AddTransition(q3, q1, "a");
                    dfa.AddTransition(q3, q4, "b");

                    dfa.AddTransition(q4, q1, "a");
                    dfa.AddTransition(q4, q2, "b");

                    dfa.AddFinalState(q4, new ail.net.parser.CppToken((int)ail.net.parser.CppToken.EType.eIdentifier, 0));

//                    ail.net.parser.Fsa mfa = dfa.Minimize(ail.net.parser.Fsa.EMinimizationMode.eTable);
                }
                {
                    // minimize_dfa.pdf
                    ail.net.parser.Fsa dfa = new ail.net.parser.Fsa();

                    ail.net.parser.FsaState q0 = dfa.AddState();
                    q0.Label = "A";
                    ail.net.parser.FsaState q1 = dfa.AddState();
                    q1.Label = "B";
                    ail.net.parser.FsaState q2 = dfa.AddState();
                    q2.Label = "C";
//                    ail.net.parser.FsaState q3 = dfa.AddState();
//                    q3.Label = "D";
                    ail.net.parser.FsaState q4 = dfa.AddState();
                    q4.Label = "E";
                    ail.net.parser.FsaState q5 = dfa.AddState();
                    q5.Label = "F";
                    ail.net.parser.FsaState q6 = dfa.AddState();
                    q6.Label = "G";
                    ail.net.parser.FsaState q7 = dfa.AddState();
                    q7.Label = "H";

                    dfa.AddTransition(q0, q1, "0");
                    dfa.AddTransition(q0, q5, "1");

                    dfa.AddTransition(q1, q6, "0");
                    dfa.AddTransition(q1, q2, "1");

                    dfa.AddTransition(q2, q0, "0");
                    dfa.AddTransition(q2, q2, "1");

//                    dfa.AddTransition(q3, q2, "0");
//                    dfa.AddTransition(q3, q6, "1");

                    dfa.AddTransition(q4, q7, "0");
                    dfa.AddTransition(q4, q5, "1");

                    dfa.AddTransition(q5, q2, "0");
                    dfa.AddTransition(q5, q6, "1");

                    dfa.AddTransition(q6, q6, "0");
                    dfa.AddTransition(q6, q4, "1");

                    dfa.AddTransition(q7, q6, "0");
                    dfa.AddTransition(q7, q2, "1");

                    dfa.AddFinalState(q2, new ail.net.parser.CppToken((int)ail.net.parser.CppToken.EType.eIdentifier, 0));

                    ail.net.parser.Fsa mfa = dfa.Minimize(ail.net.parser.Fsa.EMinimizationMode.ePartition);

                    Console.WriteLine(mfa.States.Count);
                }
            }
            catch (Exception ex)
            {
                string m = ex.Message;
            }
        }
示例#17
0
        public static void TestLexAnalyzer()
        {
            try
            {
                ail.net.parser.ReLexAnalyzer lexer = new ail.net.parser.ReLexAnalyzer(new ail.net.parser.ReToken(), new ArrayList());

//                string ss = lexer.Token.GetTokenName(10);
//                string sc = lexer.Token.GetClassName();

                ail.net.parser.Fsa fsa = new ail.net.parser.Fsa();

                ail.net.parser.FsaState q0 = fsa.AddState();
                ail.net.parser.FsaState q1 = fsa.AddState();
                ail.net.parser.FsaState q2 = fsa.AddState();
                ail.net.parser.FsaState q3 = fsa.AddState();
                ail.net.parser.FsaState q4 = fsa.AddState();
                ail.net.parser.FsaState q5 = fsa.AddState();
                ail.net.parser.FsaState q6 = fsa.AddState();

                fsa.AddTransition(q0, q1, "IsCharLowerCaseF");
                fsa.AddTransition(q1, q2, "IsCharLowerCaseO");
                fsa.AddTransition(q2, q3, "IsCharLowerCaseR");
                fsa.AddTransition(q2, q4, "IsCharLowerCaseO");
                fsa.AddTransition(q4, q5, "IsCharLowerCaseL");
                fsa.AddTransition(q2, q6, "IsIdentifierChar", 1);
                fsa.AddTransition(q6, q6, "IsIdentifierChar", 1);

/*
 *              fsa.AddFinalState(q1, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eIdentifier);
 *              fsa.AddFinalState(q2, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eIdentifier);
 *              fsa.AddFinalState(q3, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eFor);
 *              fsa.AddFinalState(q4, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eIdentifier);
 *              fsa.AddFinalState(q5, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eFool);
 *              fsa.AddFinalState(q6, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eIdentifier);
 */

//                lexer.AddToken(fsa, "while", (int)ail.net.parser.Token.EType.eWhiteSpace/*.eWhile*/, (int)ail.net.parser.Token.EType.eWhiteSpace);//.eIdentifier);

//                fsa.Print();

                ail.net.parser.Fsa cloned_fsa = (ail.net.parser.Fsa)fsa.Clone();

//                fsa.Print();

                lexer.Load("forfool", ail.net.parser.Context.ELoadMedia.eMediaString);

                lexer.NextLexeme();
//                Console.WriteLine(lexer.Lexeme);

//                lexer.NextLexeme();
//                Console.WriteLine(lexer.Lexeme);

//                string code = lexer.GenerateCode(fsa);
//                Console.WriteLine(code);
                lexer.GenerateCode("c:\\tmp\\fsa.txt", fsa);
            }
            catch (Exception ex)
            {
                string m = ex.Message;
            }
        }
示例#18
0
        public void AddToken(ail.net.parser.Fsa xi_fsa, string xi_token, int xi_token_type, int xi_escape_token_type, string xi_escape_predicate)
        {
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");
            ail.net.framework.Assert.NonEmptyString(xi_token, "xi_token");

            ail.net.parser.FsaState q1 = null;

            if (xi_fsa.StartState != (object)null)
            {
                q1 = xi_fsa.AddState();
                xi_fsa.AddTransition(xi_fsa.StartState, q1, ail.net.parser.FsaTransition.kEpsilonPredicate);
            }
            else
            {
                q1 = xi_fsa.AddState();
            }

            ail.net.parser.FsaState eq = null; // escape state

            if (xi_escape_token_type != ail.net.parser.Token.kUndefinedEscapeTokenType)
            {
                eq = xi_fsa.AddState();
                xi_fsa.AddTransition(eq, eq, xi_escape_predicate, ail.net.parser.FsaTransition.kMaxRankValue);

                ail.net.parser.Token token = (ail.net.parser.Token)Factory.Create(Token.GetType());

                token.Type     = xi_escape_token_type;
                token.Priority = ail.net.parser.LexAnalyzer.kEscapeTokenPriority;

                xi_fsa.AddFinalState(eq, token);
            }

            ail.net.parser.FsaState q_prev = q1;
            ail.net.parser.FsaState q_curr = q1;

            for (int i = 0; i < xi_token.Length; i++)
            {
                q_curr = xi_fsa.AddState();

                ail.net.framework.Assert.NonNullReference(q_curr, "q_curr");

                xi_fsa.AddTransition(q_prev,
                                     q_curr,
                                     ail.net.framework.CharPredicate.BuildAsciiCharPredicate(xi_token[i]),
                                     (char)xi_token[i]);

                if (i == xi_token.Length - 1)
                {
                    ail.net.parser.Token token = (ail.net.parser.Token)Factory.Create(Token.GetType());

                    token.Type     = xi_token_type;
                    token.Priority = ail.net.parser.LexAnalyzer.kDefaultTokenPriority;

                    xi_fsa.AddFinalState(q_curr, token);
                }
                else if (xi_escape_token_type != ail.net.parser.Token.kUndefinedEscapeTokenType)
                {
                    ail.net.parser.Token token = (ail.net.parser.Token)Factory.Create(Token.GetType());

                    token.Type     = xi_escape_token_type;
                    token.Priority = ail.net.parser.LexAnalyzer.kEscapeTokenPriority;

                    xi_fsa.AddFinalState(q_curr, token);
                }

                if (xi_escape_token_type != ail.net.parser.Token.kUndefinedEscapeTokenType)
                {
                    xi_fsa.AddTransition(q_curr, eq, xi_escape_predicate, ail.net.parser.FsaTransition.kMaxRankValue);
                }

                q_prev = q_curr;
            }
        }
        public void AddToken(ail.net.parser.Fsa xi_fsa, string xi_token, int xi_token_type, string xi_escape_pr, int xi_escape_token_type, string xi_context)
        {
//            foreach(char it in xi_token)
            {
            }
        }
示例#20
0
 public FsaState(ail.net.parser.Fsa xi_papa)
 {
     PapaAttr = xi_papa;
 }
示例#21
0
        public string GenerateCode(ail.net.parser.Fsa xi_fsa)
        {
            ail.net.framework.Assert.NonNullReference(xi_fsa, "xi_fsa");

            xi_fsa.ResetMarkedStates();

            StringBuilder result = new StringBuilder();

            result.Append(kTab3);
            result.Append(@"Next();");
            result.Append(Environment.NewLine);

            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"if(Current == ail.net.parser.Context.kEndOfStream)");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"{");
            result.Append(Environment.NewLine);
            result.Append(kTab4);
            result.Append(@"goto _eos;");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"}");
#if GENERATE_SWITCHED_CODE
            result.Append(GenerateStartStateSwitchCode(xi_fsa.StartState));
            result.Append(Environment.NewLine);
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"goto _error;");
#else
            result.Append(GenerateStartStateCode(xi_fsa.StartState));
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"else");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"{");
            result.Append(Environment.NewLine);
            result.Append(kTab4);
            result.Append(@"goto _error;");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"}");
#endif
            GenerateStateCodeWithBacktracking(xi_fsa, result);

            result.Append(Environment.NewLine);
            result.Append(@"_error:");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"if(Current != ail.net.parser.Context.kEndOfStream)");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"{");
            result.Append(Environment.NewLine);
            result.Append(kTab4);
            result.Append(@"Next();");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"}");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"Final((int)ail.net.parser.Token.EType.eUnknown);");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"goto _epilog;");
            result.Append(Environment.NewLine);
            result.Append(@"_eos:");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"Final((int)ail.net.parser.Token.EType.eEndOfStream);");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"goto _epilog;");
            result.Append(Environment.NewLine);
            result.Append(@"_exit:");
            result.Append(Environment.NewLine);
            result.Append(kTab3);
            result.Append(@"Final(TmpTokenId);");
            result.Append(Environment.NewLine);
            result.Append(@"_epilog:");
            result.Append(Environment.NewLine);

            return(result.ToString());
        }