CppAst.cgnx
0.13.13
See the version list below for details.
dotnet add package CppAst.cgnx --version 0.13.13
NuGet\Install-Package CppAst.cgnx -Version 0.13.13
<PackageReference Include="CppAst.cgnx" Version="0.13.13" />
paket add CppAst.cgnx --version 0.13.13
#r "nuget: CppAst.cgnx, 0.13.13"
// Install CppAst.cgnx as a Cake Addin #addin nuget:?package=CppAst.cgnx&version=0.13.13 // Install CppAst.cgnx as a Cake Tool #tool nuget:?package=CppAst.cgnx&version=0.13.13
CppAst.NET
<img align="right" width="160px" height="160px" src="https://raw.githubusercontent.com/xoofx/CppAst.NET/main/img/cppast.png">
CppAst provides a C/C++ parser for header files with access to the full AST, comments and macros for .NET Framework and .NET Core
Purpose
The target primary usage of this library is to serve as a simple foundation for domain oriented PInvoke/Interop codegen
Features
- Compatible with
.NET Standard 2.0+
- Using
Clang/libclang 15.0.2
- Allow to parse in-memory C/C++ text and C/C++ files from the disk
- Simple AST model
- Full type system
- Provides basic access to attributes (
_declspec(...)
or__attribute__((...))
) - Provides access to attached comments
- Provides access to expressions for variable and parameter init value (e.g
const int x = (1 + 2) << 1
the(1 + 2) << 1
will be retrievable as a binary expression from the AST) - Provides access to macro definitions, including tokens via the option
CppParserOptions.ParseMacros
(default isfalse
)
Documentation
Check the user guide documentation from the doc/
folder.
Usage Example
Setup
After installing the NuGet package, you need to modify your csproj to select a Platform RID via the RuntimeIdentifier
property:
<PropertyGroup>
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == '' AND '$(PackAsTool)' != 'true'">$(NETCoreSdkRuntimeIdentifier)</RuntimeIdentifier>
</PropertyGroup>
Code
You can jump-start with the CppParser.Parse
method:
// Parse a C++ files
var compilation = CppParser.Parse(@"
enum MyEnum { MyEnum_0, MyEnum_1 };
void function0(int a, int b);
struct MyStruct { int field0; int field1;};
typedef MyStruct* MyStructPtr;
"
);
// Print diagnostic messages
foreach (var message in compilation.Diagnostics.Messages)
Console.WriteLine(message);
// Print All enums
foreach (var cppEnum in compilation.Enums)
Console.WriteLine(cppEnum);
// Print All functions
foreach (var cppFunction in compilation.Functions)
Console.WriteLine(cppFunction);
// Print All classes, structs
foreach (var cppClass in compilation.Classes)
Console.WriteLine(cppClass);
// Print All typedefs
foreach (var cppTypedef in compilation.Typedefs)
Console.WriteLine(cppTypedef);
Prints the following result:
enum MyEnum {...}
void function0(int a, int b)
struct MyStruct { ... }
typedef MyStruct* MyStructPtr
Binaries
This library is distributed as a NuGet package
Known issues
The library libclang used by this project has some known issues and limitations:
- Attributes are not fully exposed (e.g in function parameters, on typedefs...)
- Generic instance types are not fully exposed (e.g used as parameters, or as base types...)
License
This software is released under the BSD-Clause 2 license.
Credits
- ClangSharp: .NET managed wrapper around Clang/libclang
Related
The C++ project cppast serves similar purpose although CppAst.NET does not share API or any implementation details.
Author
Alexandre Mutel aka xoofx.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- ClangSharp (>= 15.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.13.14 | 10,999 | 9/6/2024 |
0.13.13 | 100 | 6/11/2024 |
0.13.12 | 8,791 | 6/7/2024 |
0.13.11 | 98 | 6/6/2024 |
0.13.10 | 111 | 6/6/2024 |
0.13.9 | 108 | 6/4/2024 |
0.13.8 | 13,322 | 2/5/2024 |
0.13.7 | 2,303 | 1/9/2024 |
0.13.6 | 160 | 12/14/2023 |
0.13.5 | 140 | 12/13/2023 |
0.13.4 | 235 | 12/6/2023 |
0.13.3 | 136 | 12/5/2023 |
0.13.2 | 156 | 11/3/2023 |
0.13.1 | 143 | 10/25/2023 |
0.8.0-alpha-015 | 114 | 10/18/2023 |
0.8.0-alpha-014 | 130 | 9/29/2023 |
0.8.0-alpha-013 | 104 | 9/21/2023 |
0.8.0-alpha-011 | 144 | 9/15/2023 |
0.8.0-alpha-010 | 161 | 2/1/2023 |
0.8.0-alpha-009 | 136 | 1/30/2023 |
0.8.0-alpha-008 | 133 | 1/25/2023 |
0.8.0-alpha-007 | 165 | 10/6/2022 |
0.8.0-alpha-006 | 134 | 10/5/2022 |
0.8.0-alpha-005 | 155 | 9/8/2022 |
0.8.0-alpha-004 | 220 | 5/25/2022 |
0.8.0-alpha-003 | 165 | 4/22/2022 |