dotnetCampus.Configurations.WPFTypeConverter
1.7.0
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
dotnet add package dotnetCampus.Configurations.WPFTypeConverter --version 1.7.0
NuGet\Install-Package dotnetCampus.Configurations.WPFTypeConverter -Version 1.7.0
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="dotnetCampus.Configurations.WPFTypeConverter" Version="1.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add dotnetCampus.Configurations.WPFTypeConverter --version 1.7.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: dotnetCampus.Configurations.WPFTypeConverter, 1.7.0"
#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.
// Install dotnetCampus.Configurations.WPFTypeConverter as a Cake Addin #addin nuget:?package=dotnetCampus.Configurations.WPFTypeConverter&version=1.7.0 // Install dotnetCampus.Configurations.WPFTypeConverter as a Cake Tool #tool nuget:?package=dotnetCampus.Configurations.WPFTypeConverter&version=1.7.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
COIN 硬币配置文件
COIN = Configuration\n,即“配置+换行符”,因默认使用“\n”作为换行符而得名。COIN 设计了一个高性能的应用程序配置文件,以及实现高性能读写这个配置文件的 .NET 库。
原名为:dotnetCampus.Configurations,这也是此库中命名空间的前缀。
Build | NuGet |
---|---|
配置文件存储格式
配置文件以行为单位,将行首是 >
字符的行作为注释,在 >
后面的内容将会被忽略。在第一个非 >
字符开头的行作为 Key
值,在此行以下直到文件结束或下一个 >
字符开始的行之间内容作为 Value
值
> 配置文件
> 版本 1.0
State.BuildLogFile
xxxxx
> 注释内容
Foo
这是第一行
这是第二行
>
> 配置文件结束
NuGet 安装
dotnet add package dotnetCampus.Configurations
快速使用
初始化:
// 使用一个文件路径创建默认配置的实例。文件可以存在也可以不存在,甚至其所在的文件夹也可以不需要提前存在。
// 这里的配置文件后缀名 coin 是 Configuration\n,即 “配置+换行符” 的简称。你也可以使用其他扩展名,因为它实际上只是 UTF-8 编码的纯文本而已。
var configs = DefaultConfiguration.FromFile(@"C:\Users\lvyi\Desktop\walterlv.coin");
获取值:
// 获取配置 Foo 的字符串值。
// 这里的 value 一定不会为 null,如果文件不存在或者没有对应的配置项,那么为空字符串。
string value0 = configs["Foo"];
// 获取字符串值的时候,如果文件不存在或者没有对应的配置项,那么会使用默认值(空传递运算符 ?? 可以用来指定默认值)。
string value1 = configs["Foo"] ?? "anonymous";
设置值:
// 设置配置 Foo 的字符串值。
configs["Foo"] = "lvyi";
// 可以设置为 null,但你下次再次获取值的时候却依然保证不会返回 null 字符串。
configs["Foo"] = null;
// 可以设置为空字符串,效果与设置为 null 是等同的。
configs["Foo"] = "";
在大型项目中使用
大型项目的模块数量众多,其配置的数量也是十分庞大的。为了保证配置在业务之间独立,也为了防止类型转换辅助代码在大型项目中重复编写,你需要使用更高级的初始化和使用方法。
初始化:
// 这里是大型项目配置初始化处的代码。
// 此类型中包含底层的配置读写方法,而且所有读写全部是异步的,防止影响启动性能。
var configFileName = @"C:\Users\lvyi\Desktop\walterlv.coin";
var config = ConfigurationFactory.FromFile(configFileName);
// 如果你需要对整个应用程序公开配置,那么可以公开 CreateAppConfigurator 方法返回的新实例。
// 这个实例的所有配置读写全部是同步方法,这是为了方便其他模块使用。
Container.Set<IAppConfigurator>(config.CreateAppConfigurator());
在业务模块中定义类型安全的配置类:
internal class StateConfiguration : Configuration
{
/// <summary>
/// 获取或设置整型。
/// </summary>
internal int? Count
{
get => GetInt32();
set => SetValue(value);
}
/// <summary>
/// 获取或设置带默认值的整型。
/// </summary>
internal int Length
{
get => GetInt32() ?? 2;
set => SetValue(Equals(value, 2) ? null : value);
}
/// <summary>
/// 获取或设置布尔值。
/// </summary>
internal bool? State
{
get => GetBoolean();
set => SetValue(value);
}
/// <summary>
/// 获取或设置字符串。
/// </summary>
internal string Value
{
get => GetString();
set => SetValue(value);
}
/// <summary>
/// 获取或设置带默认值的字符串。
/// </summary>
internal string Host
{
get => GetString() ?? "https://localhost:17134";
set => SetValue(Equals(value, "https://localhost:17134") ? null : value);
}
/// <summary>
/// 获取或设置非基元值类型。
/// </summary>
internal Rect? Screen
{
get => this.GetValue<Rect>();
set => this.SetValue<Rect>(value);
}
}
在业务模块中使用:
private readonly IAppConfiguration _config = Container.Get<IAppConfigurator>();
// 读取配置。
private void Restore()
{
var config = _config.Of<StateConfiguration>();
var bounds = config.Screen;
if (bounds != null)
{
// 恢复窗口位置和尺寸。
}
}
// 写入配置。
public void Update()
{
var config = _config.Of<StateConfiguration>();
config.Screen = new Rect(0, 0, 3840, 2160);
}
特性
- 高性能读写
- 在初始化阶段使用全异步处理,避免阻塞主流程。
- 使用特别为高性能读写而设计的配置文件格式。
- 多线程和多进程安全高性能读写。
- 无异常设计
- 所有配置项的读写均为“无异常设计”,你完全不需要在业务代码中处理任何异常。
- 为防止业务代码中出现意料之外的
NullReferenceException
,所有配置项的返回值均不为实际意义的null
。- 值类型会返回其对应的
Nullable<T>
类型,这是一个结构体,虽然有null
值,但不会产生空引用。 - 引用类型仅提供字符串,返回
Nullable<ConfigurationString>
类型,这也是一个结构体,你可以判断null
,但实际上不可能为null
。
- 值类型会返回其对应的
- 全应用程序统一的 API
- 在大型应用中开放 API 时记得使用
CreateAppConfigurator()
来开放,这会让整个应用程序使用统一的一套配置读写 API,且完全的 IO 无感知。
- 在大型应用中开放 API 时记得使用
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- dotnetCampus.Configurations (>= 1.7.0)
-
.NETFramework 4.5
- dotnetCampus.Configurations (>= 1.7.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.7.0 | 70 | 12/10/2024 |
1.6.12 | 132 | 2/29/2024 |
1.6.11 | 165 | 6/24/2023 |
1.6.10 | 381 | 8/30/2021 |
1.6.9 | 325 | 7/18/2021 |
1.6.8 | 370 | 2/8/2021 |
1.6.7 | 348 | 2/7/2021 |
1.6.6 | 392 | 12/24/2020 |
1.6.5 | 379 | 12/22/2020 |
1.6.4 | 492 | 12/17/2020 |
1.6.3 | 397 | 12/16/2020 |
1.6.2 | 403 | 12/12/2020 |
1.6.1 | 486 | 12/5/2020 |
1.6.0 | 388 | 12/4/2020 |
1.5.3 | 442 | 11/29/2020 |
1.5.2 | 476 | 11/28/2020 |
1.5.1 | 400 | 11/27/2020 |
1.5.0 | 399 | 11/27/2020 |
1.4.0 | 417 | 11/16/2020 |