gpt4 book ai didi

c# - 计算类计数的部分语法

转载 作者:行者123 更新时间:2023-11-30 16:31:28 24 4
gpt4 key购买 nike

我需要计算正确的 C# 源文件中的类数。我写了以下语法:

grammar CSharpClassGrammar;

options
{
language=CSharp2;

}

@parser::namespace { CSharpClassGrammar.Generated }
@lexer::namespace { CSharpClassGrammar.Generated }

@header
{
using System;
using System.Collections.Generic;

}

@members
{
private List<string> _classCollector = new List<string>();
public List<string> ClassCollector { get { return
_classCollector; } }

}

/*------------------------------------------------------------------
* PARSER RULES
*------------------------------------------------------------------*/

csfile : class_declaration* EOF
;

class_declaration
: (ACCESSLEVEL | MODIFIERS)* PARTIAL? 'class' CLASSNAME
class_body
';'?
{ _classCollector.Add($CLASSNAME.text); }
;

class_body
: '{' class_declaration* '}'
;

/*------------------------------------------------------------------
* LEXER RULES
*------------------------------------------------------------------*/

ACCESSLEVEL
: 'public' | 'internal' | 'protected' | 'private' | 'protected
internal'
;

MODIFIERS
: 'static' | 'sealed' | 'abstract'
;

PARTIAL
: 'partial'
;

CLASSNAME
: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
;

COMMENT
: '//' ~('\n'|'\r')* {$channel=HIDDEN;}
| '/*' ( options {greedy=false;} : . )* '*/' {$channel=HIDDEN;}
;

WHITESPACE
: ( '\t' | ' ' | '\r' | '\n'| '\u000C' )+ { $channel = HIDDEN; }
;

此解析器正确计算具有空类主体的空类(以及嵌套类):

internal class DeclarationClass1
{
class DeclarationClass2
{
public class DeclarationClass3
{
abstract class DeclarationClass4
{
}
}
}
}

我需要计算不为空的类,例如:

class TestClass
{
int a = 42;

class Nested { }
}

我需要以某种方式忽略所有“不是类声明”的代码。在上面的例子中忽略

int a = 42;

我该怎么做?可以作为其他语言的示例吗?
请帮忙!

最佳答案

当您只对源文件的某些部分感兴趣时,您可以在 options { ... } 部分中设置 filter=true。这将使您能够只定义那些您感兴趣的标记,而您没有定义的标记将被词法分析器忽略。

请注意,这仅适用于词法分析器语法,不适用于组合(或解析器)语法。

一个小演示:

lexer grammar CSharpClassLexer;

options {
language=CSharp2;
filter=true;
}

@namespace { Demo }

Comment
: '//' ~('\r' | '\n')*
| '/*' .* '*/'
;

String
: '"' ('\\' . | ~('"' | '\\' | '\r' | '\n'))* '"'
| '@' '"' ('"' '"' | ~'"')* '"'
;

Class
: 'class' Space+ Identifier
{Console.WriteLine("Found class: " + $Identifier.text);}
;

Space
: ' ' | '\t' | '\r' | '\n'
;

Identifier
: ('a'..'z' | 'A'..'Z' | '_') ('a'..'z' | 'A'..'Z' | '_' | '0'..'9')*
;

Identifier 保留在那里很重要,因为您不希望 Xclass Foo 被标记为:['X', 'class', 'Foo']。有了 IdentifierXclass 将成为整个标识符。

语法可以用下面的类来测试:

using System;
using Antlr.Runtime;

namespace Demo
{
class MainClass
{
public static void Main (string[] args)
{
string source =
@"class TestClass
{
int a = 42;

string _class = ""inside a string literal: class FooBar {}..."";

class Nested {
/* class NotAClass {} */

// class X { }

class DoubleNested {
string str = @""
multi line string
class Bar {}
"";
}
}
}";
Console.WriteLine("source=\n" + source + "\n-------------------------");
ANTLRStringStream Input = new ANTLRStringStream(source);
CSharpClassLexer Lexer = new CSharpClassLexer(Input);
CommonTokenStream Tokens = new CommonTokenStream(Lexer);
Tokens.GetTokens();
}
}
}

产生以下输出:

source=
class TestClass
{
int a = 42;

string _class = "inside a string literal: class FooBar {}...";

class Nested {
/* class NotAClass {} */

// class X { }

class DoubleNested {
string str = @"
multi line string
class Bar {}
";
}
}
}
-------------------------
Found class: TestClass
Found class: Nested
Found class: DoubleNested

请注意,这只是一个快速演示,我不确定我是否在语法中处理了正确的字符串文字(我不熟悉 C#),但这个演示应该可以让您入门。

祝你好运!

关于c# - 计算类计数的部分语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4914073/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com