Trivial 2.2.0
Please update to the latest version.
See the version list below for details.
dotnet add package Trivial --version 2.2.0
NuGet\Install-Package Trivial -Version 2.2.0
<PackageReference Include="Trivial" Version="2.2.0" />
paket add Trivial --version 2.2.0
#r "nuget: Trivial, 2.2.0"
// Install Trivial as a Cake Addin #addin nuget:?package=Trivial&version=2.2.0 // Install Trivial as a Cake Tool #tool nuget:?package=Trivial&version=2.2.0
Trivial
This library includes utilities and services for tasks, IO, security, etc.
Tasks
Just add following namespace to your code file to use.
using Trivial.Tasks;
Hit task
You can create a task controller to manage when a handler should be raised.
HitTask.Debounce
: You may request to call a specific action several times in a short time but only the last one should be processed and previous ones should be ignored. A sample is real-time search suggestion.HitTask.Throttle
: You may want to request to call an action only once in a short time even if you request to call several times. A sample is the submit button in a form.HitTask.Times
: You can define an action can be only processed only when request to call in the specific times range and others will be ignored. A sample is double click.HitTask.Multiple
: A handler to process for the specific times and the state will be reset after a while.
Following is an example for debounce.
// An action you need to process.
Action action = () => {
// Do something...
};
// Set up when the action can be processed.
var task = HitTask.Debounce(action, TimeSpan.FromMilliseconds(200));
// Somewhere to raise.
task.ProcessAsync();
Retry
You can create a linear retry policy or even a customized to process an action with the specific retry policy.
And you can use ObservableTask
to observe the state of an action processing.
Mathematics
Just add following namespace to your code file to use.
using Trivial.Maths;
Arithmetic
There a lot of arithmetic functions.
Arithmetic.IsPrime(2147483647); // True
await Arithmetic.IsPrimeAsync(2305843009213693951); // False
Arithmetic.Gcd(192, 128); // 64
Arithmetic.Lcm(192, 128); // 384
Numerals
You can get the number symbols as you want.
You can also get the number string in English words.
EnglishNumerals.Default.ToString(12345.67);
// twelve thousand three hundred and forty-five point six seven
EnglishNumerals.Default.ToApproximationString(1234567);
// 1.2M
And ChineseNumerals
for Chinese and JapaneseNumerals
for Japanese.
Angle and polar point
Angle
Angle.PolarPoint
The point in polar coordinates.SphericalPoint
The point in spherical coordinates.
Set
NullableValueSimpleInterval<T>
Interval, such as [20, 100).
Rectangular coordinates
OneDimensionalPoint
The point in 1D (line) coordinates.TwoDimensionalPoint
The point in 2D (flat) coordinates.ThreeDimensionalPoint
The point in 3D (stereoscophic) coordinates.FourDimensionalPoint
The point in 4D (spacetime) coordinates.
Network
Contains the helper functions and extension functions for network, such as HTTP web client and its content.
using Trivial.Net;
And you can also use JsonHttpClient
to serialize the JSON format response with retry policy supports.
And HttpUri
for HTTP URI fields accessing.
Security
Just add following namespace to your code file to use.
using Trivial.Security;
RSA
You can convert a PEM (OpenSSL RSA key) or an XML string to the RSAParametersConvert
class.
var parameters = RSAParametersConvert.Parse(pem);
And you can convert back by using the extension method ToPrivatePEMString
or ToPublicPEMString
.
And also you can use the extension method ToXElement
to export the XML.
Symmetric
You can encrypt and decrypt a string by symmetric algorithm.
// AES sample.
var original = "Original secret string";
var cipher = SymmetricUtilities.Encrypt(Aes.Create, original, key, iv);
var back = SymmetricUtilities.DecryptText(Aes.Create, cipher, key, iv); // back == original
Hash
For hash algorithm, you can call HashUtilities.ToHashString
function to get hash from a plain string and call HashUtilities.Verify
to verify.
var original = "The string to hash";
// SHA-512 (of SHA-2 family)
var sha512Str = HashUtilities.ToHashString(SHA512.Create, original);
var isVerified = HashUtilities.Verify(SHA512.Create, original, sha512Str); // --> true
// SHA-3-512
var sha3512Str = HashUtilities.ToHashString(new HashAlgorithmName("SHA3512"), original);
var isVerified3512 = HashUtilities.Verify(sha3512Name, original, sha3512Str); // --> true
Access token
We also provide a set of tools for OAuth including following models.
TokenInfo
The access token and other properties.AppAccessingKey
The app identifier and secret key.OAuthClient
The token container with the ability to resolve the access token and create the JSON HTTP web client to access the resources required authentication.
And you can also implement the OAuthBasedClient
base class to create your own business HTTP web client factory with OAuth supports.
JWT
You can create a JSON web token to get the string encoded by initializing a new instance of the JsonWebToken
class or the JsonWebTokenParser
class.
var sign = HashSignatureProvider.CreateHS512("a secret string");
var jwt = new JsonWebToken<Model>(new Model(), sign);
var jwtStr = jwt.ToEncodedString();
// Get authenticiation header value.
var header = jwt.ToAuthenticationHeaderValue();
// Parse.
var jwtSame = JsonWebToken<Model>.Parse(jwtStr, sign); // jwtSame.ToEncodedString() == jwtStr
Secure string utiltiy
You can use the extension methods in the SecureStringExtensions
class to convert the secret between SecureString
and String
/StringBuilder
/Byte[]
.
You can also use the class RSASecretExchange
to transfer the secret with RSA encryption.
Data
Contains lots of data readers, parsers and utilities.
using Trivial.Data;
Data cache collection
You can create a collection to cache data with expiration and count limitation by following way.
var cache = new DataCacheCollection<Model>
{
MaxCount = 1000,
Expiration = TimeSpan.FromSeconds(100)
};
So that you can get the data from the cache if has and or add new one if necessary.
if (!cache.TryGet("abcd", out Model item)) item = new Model();
Text
Contains the text utilities.
using Trivial.Text;
CSV
You can read CSV file into a list of the specific models. For example, you have a model like following.
class Model
{
public string A { get; set; }
public string B { get; set; }
}
Now you can map to the CSV file.
var csv = new CsvParser("abcd,efg\nhijk,lmn");
foreach (var model in csv.ConvertTo<Model>(new[] { "A", "B" }))
{
Console.WriteLine("{0},{1}", model.A, model.B);
}
Further
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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (10)
Showing the top 5 NuGet packages that depend on Trivial:
Package | Downloads |
---|---|
Trivial.Console
The console utilities and rich user interface console. |
|
Trivial.WindowsKit
Some advanced visual controls and utilities for Windows app. |
|
NuScien
A core library of NuScien framework which provides a solution to build community and enterprise projects based on resource entity and accessories with ACL and CMS built-in. |
|
Trivial.Chemistry
A library with basic chemical models. |
|
Trivial.Web
A library for web API. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-preview5 | 51 | 11/1/2024 | |
9.0.0-preview4 | 36 | 10/30/2024 | |
9.0.0-preview3 | 67 | 10/27/2024 | |
9.0.0-preview2 | 88 | 9/8/2024 | |
9.0.0-preview1 | 123 | 8/21/2024 | |
8.0.0 | 911 | 6/12/2024 | |
8.0.0-preview8 | 138 | 4/13/2024 | |
8.0.0-preview7 | 110 | 3/7/2024 | |
8.0.0-preview6 | 112 | 3/6/2024 | |
8.0.0-preview5 | 95 | 3/1/2024 | |
8.0.0-preview4 | 125 | 2/29/2024 | |
8.0.0-preview3 | 109 | 2/28/2024 | |
8.0.0-preview2 | 108 | 2/27/2024 | |
8.0.0-preview1 | 137 | 2/21/2024 | |
7.2.0 | 2,455 | 11/16/2023 | |
7.2.0-preview1 | 449 | 8/1/2023 | |
7.1.2 | 1,358 | 5/10/2023 | |
7.1.1 | 425 | 5/10/2023 | |
7.1.0 | 587 | 5/8/2023 | |
7.0.0 | 1,397 | 1/20/2023 | |
6.6.0 | 3,678 | 11/9/2022 | |
6.5.6 | 1,294 | 10/10/2022 | |
6.5.5 | 639 | 10/9/2022 | |
6.5.4 | 1,031 | 8/10/2022 | |
6.5.0 | 709 | 6/17/2022 | |
6.4.0 | 2,834 | 4/14/2022 | |
6.3.0 | 2,015 | 3/8/2022 | |
6.2.0 | 4,642 | 1/30/2022 | |
6.1.0 | 1,918 | 1/23/2022 | |
6.0.0 | 1,454 | 1/1/2022 | |
5.2.0 | 4,935 | 12/15/2021 | |
5.1.1 | 628 | 12/3/2021 | |
5.1.0 | 1,391 | 12/2/2021 | |
5.0.0 | 1,410 | 11/27/2021 | |
4.0.0 | 1,122 | 11/9/2021 | |
3.9.0 | 1,440 | 12/15/2021 | |
3.8.0 | 1,261 | 11/9/2021 | |
3.7.2 | 9,450 | 4/22/2021 | |
3.7.0 | 1,641 | 3/17/2021 | |
3.6.2 | 948 | 3/17/2021 | |
3.6.0 | 7,036 | 11/12/2020 | |
3.5.2 | 7,749 | 4/13/2020 | |
3.5.1 | 1,497 | 4/12/2020 | |
3.5.0 | 1,483 | 4/1/2020 | |
3.4.3 | 1,421 | 3/20/2020 | |
3.4.2 | 1,383 | 3/12/2020 | |
3.4.1 | 1,426 | 2/25/2020 | |
3.4.0 | 1,721 | 2/20/2020 | |
3.3.0 | 1,803 | 2/14/2020 | |
3.2.0 | 2,119 | 1/22/2020 | |
3.1.0 | 2,184 | 12/30/2019 | |
3.0.1 | 2,026 | 12/26/2019 | |
2.2.0 | 1,192 | 2/19/2020 | |
2.1.0 | 1,718 | 12/24/2019 | |
2.0.3 | 1,574 | 12/3/2019 | |
1.2.0 | 30,955 | 5/20/2019 | |
1.1.0 | 2,159 | 5/8/2019 | |
1.0.0 | 4,188 | 5/1/2019 |