SAPTeam.CommonTK 3.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package SAPTeam.CommonTK --version 3.0.1
NuGet\Install-Package SAPTeam.CommonTK -Version 3.0.1
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="SAPTeam.CommonTK" Version="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SAPTeam.CommonTK --version 3.0.1
#r "nuget: SAPTeam.CommonTK, 3.0.1"
#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 SAPTeam.CommonTK as a Cake Addin
#addin nuget:?package=SAPTeam.CommonTK&version=3.0.1

// Install SAPTeam.CommonTK as a Cake Tool
#tool nuget:?package=SAPTeam.CommonTK&version=3.0.1

CommonTK - All in One and Multi Purpose .NET Library

Gawe CI NuGet NuGet

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 and ContextContainer for providing a simple managing interface.
  • Integrate all functions of static Interact class to StatusProvider 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SAPTeam.CommonTK:

Package Downloads
SAPTeam.CommonTK.Console The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1 128 3/18/2024
2.4.5 438 6/10/2023
2.4.1 254 5/1/2023
2.3.11 335 4/23/2023
2.3.9 188 4/23/2023
2.3.8 203 4/23/2023
2.3.7 198 4/23/2023
2.3.6 133 4/23/2023
2.3.5 137 4/23/2023
2.3.4 154 4/23/2023
2.3.3 495 4/14/2023
2.3.2 227 4/13/2023
2.2.20 137 4/13/2023
2.2.19 137 4/13/2023
2.2.18 142 4/13/2023
2.2.17 153 4/12/2023
2.2.16 143 4/12/2023
2.2.15 132 4/12/2023
2.2.14 144 4/11/2023
2.2.13 158 4/11/2023
2.2.12 147 4/11/2023
2.2.11 148 4/11/2023
2.2.9 160 4/11/2023
2.2.8 132 4/10/2023
2.2.7 143 4/10/2023
2.2.6 159 4/10/2023
2.2.4 165 4/10/2023
2.2.3 149 4/9/2023
2.2.2 172 4/9/2023
2.1.2 157 4/9/2023
2.1.1 173 4/6/2023
2.0.8 305 4/5/2023
2.0.7-alpha 105 4/5/2023
2.0.6-alpha 118 4/5/2023
2.0.5-alpha 114 4/4/2023
2.0.4-alpha 109 4/4/2023
2.0.3-alpha 91 4/4/2023
2.0.2-alpha 108 4/4/2023
2.0.1-alpha 89 4/4/2023
1.3.6 190 4/3/2023
1.3.5 168 4/3/2023
1.3.3 165 4/3/2023
1.3.2 167 4/3/2023
1.2.6 251 4/3/2023
1.2.5 358 4/1/2023
1.2.4 320 4/1/2023
1.2.3 494 3/31/2023
1.2.2 171 3/31/2023
1.2.1 167 3/31/2023
1.2.0 647 3/30/2023
1.1.16 175 3/30/2023
1.1.14 178 3/29/2023
1.1.13 180 3/29/2023
1.1.12 158 3/29/2023
1.1.11 171 3/29/2023
1.1.10 182 3/29/2023
1.1.9 190 3/29/2023
1.1.8 434 3/28/2023
1.1.1 278 3/28/2023
1.0.3 240 3/26/2023