SAPTeam.CommonTK
2.2.12
Prefix Reserved
See the version list below for details.
dotnet add package SAPTeam.CommonTK --version 2.2.12
NuGet\Install-Package SAPTeam.CommonTK -Version 2.2.12
<PackageReference Include="SAPTeam.CommonTK" Version="2.2.12" />
paket add SAPTeam.CommonTK --version 2.2.12
#r "nuget: SAPTeam.CommonTK, 2.2.12"
// Install SAPTeam.CommonTK as a Cake Addin #addin nuget:?package=SAPTeam.CommonTK&version=2.2.12 // Install SAPTeam.CommonTK as a Cake Tool #tool nuget:?package=SAPTeam.CommonTK&version=2.2.12
CommonTK - All in One and Multi Purpose .NET Library
This library has many Features and also provides Interfaces can be used in .NET Applications. This library has rich Interfaces that can be implemented and used by .NET libraries to create amazing features.
Installation
You can install this library with Package manager console.
SAPTeam.CommonTK
PM> Install-Package SAPTeam.CommonTK
Whats's News in version 2!
The new version of CommonTK Arrived with rewriting the everything!
- Introduce the Action Group mechanism for control code execution process.
- Change the Context initialization mechanism and defining new variables.
- Add
Variable
class for interacting with environment variables. - Add ability to create private contexts.
- Change the underlying storing contexts implementation for better performance.
- Add test suit for improving predictable behavior.
- Merge
Context
andContextContainer
for providing a simple managing interface. - Integrate all functions of static
Interact
class toStatusProvider
class. - Removed unnecessary class inheritances.
- and many minor patches to the entire library.
Features
Contexts
Contexts is a key feature in this library. With contexts you can set a global situation and this change is visible to the entire process using Context.Exists<Context>()
.
Also this class hosts some global variables like Interface
as well as some features like Action Groups.
For using this feature you can implement a new class from Context
abstract class, or use Contexts available in CommonTK.Console
library.
Here is an example of implementing a new context with the new API:
public class ExampleContext : Context
{
// Defines the context Action Groups.
// Action Group names can be anything, but using the below method will generate an standardized string for defining an action group name.
// A context can have multi action groups.
// The action groups only applied in the global contexts.
public override string[] Groups => new string[] { Context.ActionGroup(ActionScope.Application, "sample_action") };
public ExampleContext()
{
// Initializes the context. MUST be called in the end of the constructor.
// If the argument is false, the context is not registered in the global dictionary.
// Private contexts can be mandatory registered as global by initializing it with:
// Context.Register<ExampleContext>();
// This method only works for parameterless contexts.
Initialize(true);
}
protected override void CreateContext()
{
// Put your codes here...
// After finishing this method, All specified action groups locked until running DisposeContext()
}
protected override void DisposeContext()
{
// In this stage, the action groups will be unlocked.
// Put your dispose codes here...
}
}
Action Groups
In the new version, we have introduced a new feature called Action Groups
.
With this feature you can control execution of specific parts of your codes by defining and locking one or more action groups when a context is being used.
In the above example, the ExampleContext has defined one Action Group specified with Context.ActionGroup(ActionScope.Application, "sample_action")
.
We use this action group name for showing the usage of this feature.
// This method has a conflicting behavior with the ExampleContext.
// With action groups you can prevent the execution of this method and all methods that uses the same action group name.
// The action group name of this method is: application.sample_action
// You can mention the action group name of each method or properties in their xml documentation for easier usage.
public void ModifyUnintendedValues()
{
// This method will check the passed action group name locking status.
// If the action group name is locked, It throws an ActionGroupException and prevents the execution of the rest of the code.
Context.QueryGroup(Context.ActionGroup(ActionScope.Application, "sample_action"));
// Put your codes after this.
}
void Main()
{
using (var context = new ExampleContext())
{
// Calling this method inside the context will cause it to throw an exception.
ModifyUnintendedValues();
}
// Calling this method outside the context will run it normally.
ModifyUnintendedValues();
}
Config
JsonWorker
was a base class for doing Json-related actions. in version 2.0 the functionalities of this class integrated into Config
class.
A best place to use Json files, is implementing it for Application config. Config
class do it simply Just by getting a file name and a Serializer
class.
This class gives you config data as Config.Prefs
property that you can make changes on it and save changes using Config.Write()
method.
This is the Simplest way to save your Application settings or other types of data!
public class Entries
{
public string UserName { get; set; }
public string Password { get; set; }
}
// Loads config.json, if it is not existing create it.
var config = new Config<Entries>("config.json");
// Set the new values.
config.Prefs.UserName = "admin";
config.Prefs.Password = "12345";
// Save config.json.
config.Write();
Variable
With this class you can change the environment variable vlaues easily. Also because the instances of this class caches the environment values the overall performance of your applications will be increased.
Status Providers
There is a set of Interfaces and methods to work with IStatusProvider
classes.
This feature intended for Interacting with users and must be implemented by Application for work in a specified way.
You can deal with statuses using static methods of StatusProvider
class or directly with method provided in each status instances.
First you must Create and Assign a new instance of a class that implements IStatusProvider
using the global status provider:
StatusProvider.Provider = new ExampleStatusProvider();
Also you can create and use infinite local status provider by simply initializing a new instance!
It is not necessary to set a status provider in global scope, but if you want to use the status provider simply across the different parts of your application using static methods of StatusProvider
class, you can use it.
There is a variety types of Status Providers. All of these types implements IStatusProvider
as root Interface.
IStatusProvider
This interface has a basic functionality. Just a Write(string)
and Clear()
method for writing and clearing text.
It is suitable for simple uses such as using a single label as Status Provider.
public class UIStatusProvider : IStatusProvider
{
private readonly Label status;
public UIStatusProvider(Label label)
{
status = label;
}
public void Clear()
{
status.Text = "";
}
public void Write(string message)
{
status.Text = message;
}
}
IProgressStatusProvider
This interface is intended to use when you need to show a message with a progress bar.
It has two method Write(string, ProgressType)
and Increment(int)
for writing a message with a progress bar and incrementing value of progress bar respectively.
also Classes that implements this interface can throw exception when the method Write(string)
is called.
IMultiStatusBar
This interface intended for complicated usages. It is useful when you deal with a Control
that support item collections, such as StatusStrip
.
you must declare a method to manage and control multi item collections.
This is a code from my AndroCtrl project (Note: This class is not adopted with the new API):
public class AppStatusProvider : IProgressStatusProvider, IMultiStatusProvider
{
readonly StatusStrip statusbar;
ToolStripProgressBar progressbar;
bool gc;
readonly Dictionary<string, (ToolStripLabel label, ToolStripProgressBar progressBar)> packets = new();
public AppStatusProvider(StatusStrip statusbar, bool garbageCollection = true)
{
this.statusbar = statusbar;
gc = garbageCollection;
}
public void Clear()
{
if (statusbar.Items.Count > 0)
{
foreach (var packet in packets)
{
if (packet.Value.progressBar != progressbar)
{
Clear(packet.Key);
}
}
if (progressbar != null)
{
throw new InvalidOperationException("Can't remove an unfinished progress bar.");
}
}
}
public void Clear(string message)
{
if (packets[message].progressBar == progressbar)
{
progressbar = null;
}
statusbar.Items.Remove(packets[message].label);
statusbar.Items.Remove(packets[message].progressBar);
packets.Remove(message);
}
public void Write(string message)
{
throw new NotImplementedException();
}
public void Write(string message, ProgressBarType type)
{
if (progressbar != null && type == ProgressBarType.Block)
{
throw new InvalidOperationException("Can't register more than one block progress bar.");
}
if (packets.ContainsKey(message))
{
throw new ArgumentException("Can't use a duplicated status message: ", message);
}
ToolStripLabel label = new(message);
statusbar.Items.Add(label);
switch (type)
{
case ProgressBarType.None:
throw new ArgumentException("type can't be None.");
case ProgressBarType.Wait:
ToolStripProgressBar loadingbar = new();
loadingbar.Style = ProgressBarStyle.Marquee;
statusbar.Items.Add(loadingbar);
packets[message] = (label, loadingbar);
break;
case ProgressBarType.Block:
progressbar = new();
statusbar.Items.Add(progressbar);
packets[message] = (label, progressbar);
break;
}
}
public void Increment(int value)
{
if (value == -1)
{
progressbar.PerformStep();
}
else
{
progressbar.Increment(value);
}
if (gc && progressbar.Value >= 100)
{
Clear(packets.Where((x) => x.Value.progressBar == progressbar).First().Key);
}
}
}
Timer
Starts a simple timer in separate thread and calls the callback
once or several times.
var timer = CommonTK.Timer.Set(5000. () => Environment.Exit(0), repeat: false);
Contribution
Feel free to grab the source, open issues or pull requests.
Credits
Almost all the Classes of this library were extracted from The public API of my private repository Windows Pro
and published in two libraries, CommonTK and CommonTK.Console.
All these classes were rewrote in the new version.
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 is compatible. 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. |
-
.NETFramework 4.6.1
- Newtonsoft.Json (>= 13.0.3)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SAPTeam.CommonTK:
Package | Downloads |
---|---|
SAPTeam.CommonTK.Console
All in One and Multi Purpose .NET Library for Professional Console actions. This library contains toolset of classes and methods that can be used by .NET Applications to perform Deep level Controls on Console. Key features of this library are: - Console Form: A way different way to Interact with your users. A Console User Interface! - Creating and Using console windows in Desktop Applications in The easiest way! - Colorize Your console text output! - Global Color Set. and more... For Getting started with this library and See more features you can visit the github page. |
|
SAPTeam.Kryptor.Client
This library has common utilities used by kryptor front-end programs. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.3 | 216 | 9/4/2024 |
4.0.2 | 134 | 8/29/2024 |
3.0.2 | 689 | 8/10/2024 |
3.0.1 | 430 | 3/18/2024 |
2.4.5 | 674 | 6/10/2023 |
2.4.1 | 311 | 5/1/2023 |
2.3.11 | 394 | 4/23/2023 |
2.3.9 | 239 | 4/23/2023 |
2.3.8 | 249 | 4/23/2023 |
2.3.7 | 249 | 4/23/2023 |
2.3.6 | 160 | 4/23/2023 |
2.3.5 | 166 | 4/23/2023 |
2.3.4 | 189 | 4/23/2023 |
2.3.3 | 642 | 4/14/2023 |
2.3.2 | 268 | 4/13/2023 |
2.2.20 | 173 | 4/13/2023 |
2.2.19 | 167 | 4/13/2023 |
2.2.18 | 157 | 4/13/2023 |
2.2.17 | 182 | 4/12/2023 |
2.2.16 | 166 | 4/12/2023 |
2.2.15 | 161 | 4/12/2023 |
2.2.14 | 171 | 4/11/2023 |
2.2.13 | 187 | 4/11/2023 |
2.2.12 | 175 | 4/11/2023 |
2.2.11 | 179 | 4/11/2023 |
2.2.9 | 192 | 4/11/2023 |
2.2.8 | 162 | 4/10/2023 |
2.2.7 | 165 | 4/10/2023 |
2.2.6 | 188 | 4/10/2023 |
2.2.4 | 193 | 4/10/2023 |
2.2.3 | 175 | 4/9/2023 |
2.2.2 | 200 | 4/9/2023 |
2.1.2 | 186 | 4/9/2023 |
2.1.1 | 205 | 4/6/2023 |
2.0.8 | 360 | 4/5/2023 |
2.0.7-alpha | 133 | 4/5/2023 |
2.0.6-alpha | 142 | 4/5/2023 |
2.0.5-alpha | 140 | 4/4/2023 |
2.0.4-alpha | 135 | 4/4/2023 |
2.0.3-alpha | 116 | 4/4/2023 |
2.0.2-alpha | 132 | 4/4/2023 |
2.0.1-alpha | 117 | 4/4/2023 |
1.3.6 | 217 | 4/3/2023 |
1.3.5 | 196 | 4/3/2023 |
1.3.3 | 188 | 4/3/2023 |
1.3.2 | 195 | 4/3/2023 |
1.2.6 | 290 | 4/3/2023 |
1.2.5 | 414 | 4/1/2023 |
1.2.4 | 371 | 4/1/2023 |
1.2.3 | 571 | 3/31/2023 |
1.2.2 | 196 | 3/31/2023 |
1.2.1 | 187 | 3/31/2023 |
1.2.0 | 728 | 3/30/2023 |
1.1.16 | 205 | 3/30/2023 |
1.1.14 | 209 | 3/29/2023 |
1.1.13 | 207 | 3/29/2023 |
1.1.12 | 185 | 3/29/2023 |
1.1.11 | 193 | 3/29/2023 |
1.1.10 | 202 | 3/29/2023 |
1.1.9 | 218 | 3/29/2023 |
1.1.8 | 487 | 3/28/2023 |
1.1.1 | 314 | 3/28/2023 |
1.0.3 | 272 | 3/26/2023 |