Juxtapose 1.0.0-dev-027
This is a prerelease version of Juxtapose.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Juxtapose --version 1.0.0-dev-027
NuGet\Install-Package Juxtapose -Version 1.0.0-dev-027
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Juxtapose" Version="1.0.0-dev-027" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Juxtapose" Version="1.0.0-dev-027" />
<PackageReference Include="Juxtapose" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Juxtapose --version 1.0.0-dev-027
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Juxtapose, 1.0.0-dev-027"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Juxtapose@1.0.0-dev-027
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Juxtapose&version=1.0.0-dev-027&prerelease
#tool nuget:?package=Juxtapose&version=1.0.0-dev-027&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Juxtapose
1. Intro
基于 SourceGenerator 的硬编码 .Net 多进程运行库。
2. Features
- 可以为
类型、接口、静态类生成代理,无需手动编写RPC相关代码,即可进行多进程开发; - 编译时生成所有代码,运行时无显式的反射调用和动态构造;
- 支持
委托和CancellationToken类型的方法参数(其余类型未特殊处理,将会进行序列化,目前回调委托不支持嵌套和CancellationToken); - 支持
Linux、Windows(其它未测试);
注意事项
- 目前参数不支持定义为父类型,实际传递子类型,序列化时将会按照定义的类型进行序列化和反序列化,会导致具体类型丢失;
- 目前所有的参数都不应该在方法完成后进行保留,
CancellationToken等在方法完成后会被释放;
3. Requirement
- .Net5.0+(其它版本没有尝试过)
4. 使用方法
4.1 引用包
<ItemGroup>
<PackageReference Include="Juxtapose" Version="1.0.*-*" />
<PackageReference Include="Juxtapose.SourceGenerator" Version="1.0.*-*" />
</ItemGroup>
4.2 建立上下文
4.2.1 创建上下文类型,并使用 [Illusion] 特性指定要生成的类型
[Illusion(typeof(Greeter), typeof(IGreeter), "Juxtapose.Test.GreeterAsIGreeterIllusion")]
public partial class GreeterJuxtaposeContext : JuxtaposeContext
{
}
示例代码将为Greeter生成IGreeter接口的代理类型Juxtapose.Test.GreeterAsIGreeterIllusion;
Note!!!
- 必须继承
JuxtaposeContext; - 必须标记
partial关键字;
4.2.2 [Illusion] 的多种用法
- 直接为类型生成代理,如下示例生成
Juxtapose.Test.GreeterIllusion类型,且不继承接口(静态类型相同用法)
[Illusion(typeof(Greeter))]
- 为类型生成代理,并继承指定接口,如下示例生成
Juxtapose.Test.GreeterAsIGreeterIllusion类型且继承IGreeter接口
[Illusion(typeof(Greeter), typeof(IGreeter))]
- 生成类型,并指定类型名称,如下示例生成
Juxtapose.Test.HelloGreeter类型
[Illusion(typeof(Greeter), generatedTypeName: "Juxtapose.Test.HelloGreeter")]
- 生成从IoC容器获取的接口代理类型,如下示例生成
Juxtapose.Test.IGreeterIllusionFromIoCContainer类型(此时Context类需要实现IIoCContainerProvider接口,并提供有效的IServiceProvider)
[Illusion(typeof(IGreeterFromServiceProvider), generatedTypeName: "Juxtapose.Test.IGreeterIllusionFromIoCContainer", fromIoCContainer: true)]
4.3 添加入口点
在Main方法中添加入口点代码,并使用指定上下文
await JuxtaposeEntryPoint.TryAsEndpointAsync(args, GreeterJuxtaposeContext.SharedInstance);
到此已完成开发,创建类型Juxtapose.Test.GreeterAsIGreeterIllusion的对象,并调用其方法,其实际逻辑将在子进程中运行;
5. 调试子进程(Windows&&VisualStudio Only)
5.1 引用调试包
在Host项目文件中添加包引用
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<PackageReference Include="Juxtapose.VsDebugger" Version="1.0.*-*" />
</ItemGroup>
建议和示例代码一样,添加条件引用,只在Debug环境下引用调试包
5.2 添加入口点
在Main方法中添加调试入口点代码
JuxtaposeDebuggerAttacher.TryAttachToParent(args);
在代码中打上断点,运行时将会正确命中断点(只在 VisualStudio2022 17.0.5 && Win11 21TH2 中进行了测试,理论上是通用)
6. 工作逻辑
SourceGenerator在编译时生成代理类型,封装通信消息。默认使用命名管道进行进程间通信,使用System.Text.Json进行消息的序列化与反序列化。
6.1 关键词列表
| 关键字 | 名称 | 来源 | 作用 |
|---|---|---|---|
| Context | 上下文 | 手动定义 | 用于承载所有子进程运行的相关信息 |
| Executor | 执行器 | 自动生成 | 用于运行时消息解析收发,创建对象,执行静态方法等 |
| ParameterPack | 参数包 | 自动生成 | 将方法参数封装到一个类型中,以便序列化 |
| Illusion | 幻象 | 自动生成 | 实际使用的类 |
| RealObjectInvoker | 真实对象执行器 | 自动生成 | 在子进程中接收消息,并进行实际的对象方法调用 |
更多功能细节参见示例代码
示例列表
| 项目 | 内容 |
|---|---|
| SampleLibrary | 基于库的使用示例,可由其它程序直接使用 |
| SampleConsoleApp | 基于控制台的使用示例,可使用当前程序集生成的类,或使用其他库生成的类 |
| ResourceBasedObjectPool | 基于系统资源的动态对象池示例 |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- System.IO.Pipelines (>= 6.0.0)
-
net6.0
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- System.IO.Pipelines (>= 6.0.0)
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 |
|---|---|---|
| 1.5.2 | 89 | 11/29/2025 |
| 1.5.1 | 177 | 11/15/2025 |
| 1.5.0 | 176 | 11/15/2025 |
| 1.4.4 | 52,558 | 11/23/2024 |
| 1.4.3 | 9,842 | 8/10/2024 |
| 1.4.2 | 5,992 | 6/11/2024 |
| 1.4.1 | 1,221 | 6/1/2024 |
| 1.4.0 | 8,317 | 11/21/2023 |
| 1.3.0 | 390 | 11/15/2023 |
| 1.2.2 | 27,917 | 12/19/2022 |
| 1.2.1 | 937 | 10/12/2022 |
| 1.2.0 | 984 | 10/11/2022 |
| 1.1.2 | 918 | 9/16/2022 |
| 1.1.1 | 965 | 7/29/2022 |
| 1.1.0 | 1,018 | 7/23/2022 |
| 1.1.0-beta0001 | 725 | 7/6/2022 |
| 1.0.2 | 1,010 | 6/19/2022 |
| 1.0.1 | 1,028 | 5/26/2022 |
| 1.0.0 | 1,134 | 1/24/2022 |
| 1.0.0-dev-028 | 731 | 1/24/2022 |
| 1.0.0-dev-027 | 726 | 1/23/2022 |
| 1.0.0-dev-026 | 810 | 1/22/2022 |
| 1.0.0-dev-025 | 759 | 1/18/2022 |
| 1.0.0-dev-024 | 705 | 1/16/2022 |
| 1.0.0-dev-023 | 782 | 1/11/2022 |
| 1.0.0-dev-022 | 816 | 1/5/2022 |
| 1.0.0-dev-021 | 729 | 12/29/2021 |
| 1.0.0-dev-020 | 768 | 12/7/2021 |
| 1.0.0-dev-019 | 743 | 12/7/2021 |
| 1.0.0-dev-018 | 734 | 12/7/2021 |
| 1.0.0-dev-017 | 762 | 12/6/2021 |
| 1.0.0-dev-016 | 717 | 12/5/2021 |
| 1.0.0-dev-015 | 754 | 12/3/2021 |
| 1.0.0-dev-014 | 675 | 12/2/2021 |
| 1.0.0-dev-013 | 761 | 12/2/2021 |
| 1.0.0-dev-012 | 782 | 12/1/2021 |
| 1.0.0-dev-011 | 743 | 12/1/2021 |
| 1.0.0-dev-010 | 693 | 11/30/2021 |