예제 #1
0
        void ChangeInternal()
        {
            bool first_comp;

            CodeCompletion.DomConverter dconv = null;
            bool tmp = true;

            while (true)
            {
                first_comp = false;
                if (this.Visible)
                {
                    try
                    {
                        if (currentCompilationUnit == null && textAreaControl.FileName != null)
                        {
                            dconv = (CodeCompletion.DomConverter)CodeCompletion.CodeCompletionController.comp_modules[textAreaControl.FileName];
                            if (dconv != null && dconv.is_compiled)
                            {
                                currentCompilationUnit = dconv.visitor.entry_scope;
                                first_comp             = true;
                            }
                            if (clicked || tmp)
                            {
                                FillClassComboBox(true);
                                //clicked = false;
                                tmp = false;
                            }
                        }
                        if (currentCompilationUnit != null && (clicked || first_comp))
                        {
                            dconv = (CodeCompletion.DomConverter)CodeCompletion.CodeCompletionController.comp_modules[textAreaControl.FileName];
                            if (dconv != null && dconv.is_compiled)
                            {
                                currentCompilationUnit = dconv.visitor.entry_scope;
                                FillClassComboBox(true);
                            }

                            //FillMembersComboBox();
                            //UpdateClassComboBox();
                            //UpdateMembersComboBox();
                        }
                        //lock(clicked)
                        {
                            clicked = false;
                        }
                    }
                    catch (Exception ex)
                    {
                        //MessageService.ShowError(ex);
                    }
                }
                Thread.Sleep(300);
            }
        }
예제 #2
0
        public DomConverter Compile(string FileName, string Text)
        {
            this.Text = Text;
            this.FileName = FileName;
            List<PascalABCCompiler.Errors.Error> ErrorsList = new List<PascalABCCompiler.Errors.Error>();
            PascalABCCompiler.SyntaxTree.compilation_unit cu = null;
            string ext = Path.GetExtension(FileName);
            try
            {
                cu = ParsersControllerGetCompilationUnit(FileName, Text, ErrorsList);
                ErrorsList.Clear();
                PascalABCCompiler.SyntaxTree.documentation_comment_list dt = ParsersController.Compile(System.IO.Path.ChangeExtension(FileName, get_doctagsParserExtension(ext)), Text/*+")))));end."*/, ErrorsList, PascalABCCompiler.Parsers.ParseMode.Normal) as PascalABCCompiler.SyntaxTree.documentation_comment_list;
                PascalABCCompiler.DocumentationConstructor docconst = new PascalABCCompiler.DocumentationConstructor();
                if (cu != null)
                    docs = docconst.Construct(cu, dt);
            }
            catch (Exception e)
            {

            }
            DomConverter dconv = new DomConverter(this);
            if (cu != null)
            {
                PascalABCCompiler.NetHelper.NetHelper.reset();
                
                dconv.ConvertToDom(cu);
            }
            else
            {
                ErrorsList.Clear();
                try
                {
                    //cu = ParsersController.GetComilationUnit(FileName, Text+")))));end.",comp.CompilerOptions.ParserSearchPatchs,ErrorsList);
                    //cu = ParsersControllerGetComilationUnit(FileName, get_temp_text(Text), ErrorsList, true);
                    string tmp = ParsersHelper.GetModifiedProgramm(Text);
                    if (tmp != null)
                    {
                        cu = ParsersControllerGetCompilationUnitSpecial(FileName, tmp, ErrorsList);
                    }
                    if (comp_modules[FileName] == null)
                    {
                        if (cu == null)
                            cu = get_fictive_unit(Text, FileName);
                    }
                    ErrorsList.Clear();
                    PascalABCCompiler.SyntaxTree.documentation_comment_list dt = ParsersController.Compile(System.IO.Path.ChangeExtension(FileName, get_doctagsParserExtension(ext)), Text + ")))));end.", ErrorsList, PascalABCCompiler.Parsers.ParseMode.Normal) as PascalABCCompiler.SyntaxTree.documentation_comment_list;
                    PascalABCCompiler.DocumentationConstructor docconst = new PascalABCCompiler.DocumentationConstructor();
                    if (cu != null)
                        docs = docconst.Construct(cu, dt);
                }
                catch (Exception e)
                {

                }
                if (cu != null)
                {
                    PascalABCCompiler.NetHelper.NetHelper.reset();
                    dconv.ConvertToDom(cu);
                }
            }
            if (docs != null) docs.Clear();
            //if (dconv.is_compiled) comp_modules[FileName]=dconv;
            return dconv;
            //ConvertToDom(cu);
        }
예제 #3
0
		public DomSyntaxTreeVisitor(DomConverter converter)
		{
			//tcst = new TreeConverterSymbolTable(false);
			this.converter = converter;
		}
예제 #4
0
 public DomConverter CompileAllIfNeed(string FileName, bool parse_only_interface=false)
 {
     this.FileName = FileName;
     this.Text = comp.GetSourceFileText(FileName);
     string ext = Path.GetExtension(FileName);
     List<PascalABCCompiler.Errors.Error> ErrorsList = new List<PascalABCCompiler.Errors.Error>();
     PascalABCCompiler.SyntaxTree.compilation_unit cu = null;
     if (Text != null)
     {
         cu = ParsersController.GetCompilationUnit(FileName, Text, ErrorsList);
     }
     Parser = ParsersController.selectParser(Path.GetExtension(FileName).ToLower());
     ErrorsList.Clear();
     PascalABCCompiler.SyntaxTree.documentation_comment_list dt = ParsersController.Compile(System.IO.Path.ChangeExtension(FileName, get_doctagsParserExtension(ext)), Text, ErrorsList, PascalABCCompiler.Parsers.ParseMode.Normal) as PascalABCCompiler.SyntaxTree.documentation_comment_list;
     PascalABCCompiler.DocumentationConstructor docconst = new PascalABCCompiler.DocumentationConstructor();
     if (cu != null)
         docs = docconst.Construct(cu, dt);
     DomConverter dconv = new DomConverter(this);
     dconv.visitor.parse_only_interface = parse_only_interface;
     if (CodeCompletionTools.XmlDoc.LookupLocalizedXmlDocForUnitWithSources(FileName, CodeCompletionController.currentLanguageISO) != null)
     {
         dconv.visitor.add_doc_from_text = false;
     }
     if (cu != null)
         dconv.ConvertToDom(cu);
     else
     {
         ErrorsList.Clear();
         //cu = ParsersControllerGetComilationUnit(FileName, Text, ErrorsList, true);
         if (comp_modules[FileName] == null)
         {
             string tmp = ParsersHelper.GetModifiedProgramm(Text);
             if (tmp != null)
             {
             	cu = ParsersControllerGetCompilationUnitSpecial(FileName, tmp, ErrorsList);
             	ErrorsList.Clear();
             }
             if (cu == null)
             cu = get_fictive_unit(Text, FileName);
         }
         ErrorsList.Clear();
         dt = ParsersController.Compile(System.IO.Path.ChangeExtension(FileName, get_doctagsParserExtension(ext)), Text, ErrorsList, PascalABCCompiler.Parsers.ParseMode.Normal) as PascalABCCompiler.SyntaxTree.documentation_comment_list;
         if (cu != null)
             docs = docconst.Construct(cu, dt);
         if (CodeCompletionTools.XmlDoc.LookupLocalizedXmlDocForUnitWithSources(FileName, CodeCompletionController.currentLanguageISO) != null)
         {
         	dconv.visitor.add_doc_from_text = false;
         }
         if (cu != null)
         {
             dconv.ConvertToDom(cu);
         }
     }
     if (dconv.is_compiled) comp_modules[FileName] = dconv;
     if (docs != null) docs.Clear();
     //comp_modules[FileName] = dconv;
     // GC.Collect();
     return dconv;
 }
예제 #5
0
 public static string GetDescription(int pos, string content, int line, int col, string FileName, DomConverter dc, PascalABCCompiler.Parsers.Controller controller)
 {
     string expr_without_brackets = null;
     PascalABCCompiler.Parsers.KeywordKind keyw;
     var expr = CodeCompletion.CodeCompletionController.CurrentParser.LanguageInformation.FindExpressionFromAnyPosition(pos, content, line, col, out keyw, out expr_without_brackets);
     if (expr == null)
       expr = expr_without_brackets;
     var errors = new List<PascalABCCompiler.Errors.Error>();
     var tree = controller.GetExpression("test" + Path.GetExtension(FileName), expr, errors);
     var desc = dc.GetDescription(tree, FileName, expr_without_brackets, controller, line, col, keyw, false);
     return desc;
 }