From eb1cfc4583f7fb6f7ec51a59371755c1cb1fcc1f Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Mon, 22 Jan 2024 14:12:55 +0300 Subject: [PATCH] und - Initializing our build tools... --- Type: und Breaking: False Doc Required: False Part: 1/1 --- .editorconfig | 195 +---- .gitattributes | 63 ++ .github/ISSUE_TEMPLATE/ask-a-question.md | 19 + .github/ISSUE_TEMPLATE/report-an-issue.md | 30 + .github/ISSUE_TEMPLATE/request-a-feature.md | 19 + .github/funding.yml | 1 - .github/issue_template.md | 21 + .github/pull_request_template.md | 20 + .github/workflows/build-linux-rel.yml | 28 + .github/workflows/build-linux.yml | 33 + .github/workflows/build-macos-rel.yml | 28 + .github/workflows/build-macos.yml | 33 + .github/workflows/build-win-rel.yml | 28 + .github/workflows/build-win.yml | 33 + .github/workflows/ci.yaml | 38 - .github/workflows/docgen.yml | 28 + .github/workflows/pack.yml | 25 + .github/workflows/publish.yaml | 45 -- .gitignore | 413 +++++++++-- CONTRIBUTING.md | 195 +++++ DocGen/.gitignore | 6 + DocGen/docfx.json | 49 ++ DocGen/filterConfig.yml | 17 + DocGen/index.md | 21 + DocGen/toc.yml | 4 + LICENSE | 674 ++++++++++++++++++ Makefile | 33 + README.md | 84 ++- SECURITY.md | 19 + aptivi_snk.snk | Bin 0 -> 596 bytes build.cake | 79 -- dotnet-tools.json | 18 - global.json | 7 - scripts/Generate.ps1 | 4 +- src/Directory.Build.props | 20 +- .../Extensions/DictionaryExtensions.cs | 26 - .../Extensions/EnumerableExtensions.cs | 16 - src/TermInfo/Extensions/ListExtensions.cs | 15 - src/TermInfo/Extensions/SpanExtensions.cs | 20 - src/TermInfo/Extensions/StringExtensions.cs | 23 - src/TermInfo/Parsing/BitWidth.cs | 9 - src/TermInfo/TermInfoCapsType.cs | 24 - .../.editorconfig | 0 .../Commands/Generate/Capabilities.cs | 0 .../Commands/Generate/Capability.cs | 0 .../Commands/Generate/CapabilityType.cs | 0 .../Commands/Generate/GenerateCommand.cs | 0 .../Commands/Inspect/InspectCommand.cs | 1 + .../Program.cs | 0 .../Templates/TermInfoCaps.template | 0 .../Templates/TermInfoDesc.Generated.template | 0 .../Terminaux.TermInfo.Cli.csproj} | 2 +- .../.editorconfig | 0 .../Data/eterm-256color | Bin .../Data/linux | Bin .../Data/windows-ansi | Bin .../Data/xterm+256color | Bin .../Data/xterm+88color | Bin .../TermInfoDataTests.cs | 33 +- .../Terminaux.TermInfo.Tests.csproj} | 2 +- .../Utilities/EmbeddedResourceReader.cs | 23 +- src/{TermInfo.sln => Terminaux.TermInfo.sln} | 6 +- ... => Terminaux.TermInfo.v3.ncrunchsolution} | 0 .../ExtendedCapabilities.cs | 22 +- .../Extensions/DictionaryExtensions.cs | 45 ++ .../Extensions/EnumerableExtensions.cs | 36 + .../Extensions/ListExtensions.cs | 34 + .../Extensions/SpanExtensions.cs | 39 + .../Extensions/StringExtensions.cs | 42 ++ .../OfficialAppIcon-Terminaux-512.png | Bin 0 -> 85781 bytes src/Terminaux.TermInfo/Parsing/BitWidth.cs | 28 + .../Parsing/ByteReader.cs | 21 +- .../Parsing/NullTerminatedIndexedString.cs | 21 +- .../Parsing/TermInfoParser.cs | 23 +- .../TermInfoCaps.cs | 0 src/Terminaux.TermInfo/TermInfoCapsType.cs | 43 ++ .../TermInfoDesc.Generated.cs | 0 .../TermInfoDesc.Static.cs | 20 + .../TermInfoDesc.cs | 26 +- .../TermInfoLoader.cs | 24 +- .../Terminaux.TermInfo.csproj} | 29 +- tools/Makefile | 27 + tools/build.cmd | 40 ++ tools/build.sh | 51 ++ tools/docgen-pack.cmd | 22 + tools/docgen-pack.sh | 27 + tools/docgen.cmd | 36 + tools/docgen.sh | 37 + tools/pack.cmd | 37 + tools/pack.sh | 47 ++ tools/version | 1 + 91 files changed, 2708 insertions(+), 600 deletions(-) create mode 100644 .gitattributes create mode 100644 .github/ISSUE_TEMPLATE/ask-a-question.md create mode 100644 .github/ISSUE_TEMPLATE/report-an-issue.md create mode 100644 .github/ISSUE_TEMPLATE/request-a-feature.md delete mode 100644 .github/funding.yml create mode 100644 .github/issue_template.md create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/build-linux-rel.yml create mode 100644 .github/workflows/build-linux.yml create mode 100644 .github/workflows/build-macos-rel.yml create mode 100644 .github/workflows/build-macos.yml create mode 100644 .github/workflows/build-win-rel.yml create mode 100644 .github/workflows/build-win.yml delete mode 100644 .github/workflows/ci.yaml create mode 100644 .github/workflows/docgen.yml create mode 100644 .github/workflows/pack.yml delete mode 100644 .github/workflows/publish.yaml create mode 100644 CONTRIBUTING.md create mode 100644 DocGen/.gitignore create mode 100644 DocGen/docfx.json create mode 100644 DocGen/filterConfig.yml create mode 100644 DocGen/index.md create mode 100644 DocGen/toc.yml create mode 100644 LICENSE create mode 100644 Makefile create mode 100644 SECURITY.md create mode 100644 aptivi_snk.snk delete mode 100644 build.cake delete mode 100644 dotnet-tools.json delete mode 100644 global.json delete mode 100644 src/TermInfo/Extensions/DictionaryExtensions.cs delete mode 100644 src/TermInfo/Extensions/EnumerableExtensions.cs delete mode 100644 src/TermInfo/Extensions/ListExtensions.cs delete mode 100644 src/TermInfo/Extensions/SpanExtensions.cs delete mode 100644 src/TermInfo/Extensions/StringExtensions.cs delete mode 100644 src/TermInfo/Parsing/BitWidth.cs delete mode 100644 src/TermInfo/TermInfoCapsType.cs rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/.editorconfig (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Commands/Generate/Capabilities.cs (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Commands/Generate/Capability.cs (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Commands/Generate/CapabilityType.cs (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Commands/Generate/GenerateCommand.cs (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Commands/Inspect/InspectCommand.cs (99%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Program.cs (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Templates/TermInfoCaps.template (100%) rename src/{TermInfo.Cli => Terminaux.TermInfo.Cli}/Templates/TermInfoDesc.Generated.template (100%) rename src/{TermInfo.Cli/TermInfo.Cli.csproj => Terminaux.TermInfo.Cli/Terminaux.TermInfo.Cli.csproj} (93%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/.editorconfig (100%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/Data/eterm-256color (100%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/Data/linux (100%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/Data/windows-ansi (100%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/Data/xterm+256color (100%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/Data/xterm+88color (100%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/TermInfoDataTests.cs (71%) rename src/{TermInfo.Tests/TermInfo.Tests.csproj => Terminaux.TermInfo.Tests/Terminaux.TermInfo.Tests.csproj} (95%) rename src/{TermInfo.Tests => Terminaux.TermInfo.Tests}/Utilities/EmbeddedResourceReader.cs (55%) rename src/{TermInfo.sln => Terminaux.TermInfo.sln} (88%) rename src/{TermInfo.v3.ncrunchsolution => Terminaux.TermInfo.v3.ncrunchsolution} (100%) rename src/{TermInfo => Terminaux.TermInfo}/ExtendedCapabilities.cs (83%) create mode 100644 src/Terminaux.TermInfo/Extensions/DictionaryExtensions.cs create mode 100644 src/Terminaux.TermInfo/Extensions/EnumerableExtensions.cs create mode 100644 src/Terminaux.TermInfo/Extensions/ListExtensions.cs create mode 100644 src/Terminaux.TermInfo/Extensions/SpanExtensions.cs create mode 100644 src/Terminaux.TermInfo/Extensions/StringExtensions.cs create mode 100644 src/Terminaux.TermInfo/OfficialAppIcon-Terminaux-512.png create mode 100644 src/Terminaux.TermInfo/Parsing/BitWidth.cs rename src/{TermInfo => Terminaux.TermInfo}/Parsing/ByteReader.cs (57%) rename src/{TermInfo => Terminaux.TermInfo}/Parsing/NullTerminatedIndexedString.cs (65%) rename src/{TermInfo => Terminaux.TermInfo}/Parsing/TermInfoParser.cs (89%) rename src/{TermInfo => Terminaux.TermInfo}/TermInfoCaps.cs (100%) create mode 100644 src/Terminaux.TermInfo/TermInfoCapsType.cs rename src/{TermInfo => Terminaux.TermInfo}/TermInfoDesc.Generated.cs (100%) rename src/{TermInfo => Terminaux.TermInfo}/TermInfoDesc.Static.cs (83%) rename src/{TermInfo => Terminaux.TermInfo}/TermInfoDesc.cs (76%) rename src/{TermInfo => Terminaux.TermInfo}/TermInfoLoader.cs (75%) rename src/{TermInfo/TermInfo.csproj => Terminaux.TermInfo/Terminaux.TermInfo.csproj} (51%) create mode 100644 tools/Makefile create mode 100644 tools/build.cmd create mode 100644 tools/build.sh create mode 100644 tools/docgen-pack.cmd create mode 100644 tools/docgen-pack.sh create mode 100644 tools/docgen.cmd create mode 100644 tools/docgen.sh create mode 100644 tools/pack.cmd create mode 100644 tools/pack.sh create mode 100644 tools/version diff --git a/.editorconfig b/.editorconfig index 6399c11..16aea85 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,178 +1,49 @@ root = true [*] -charset = utf-8 -end_of_line = CRLF +end_of_line = crlf +insert_final_newline = true indent_style = space indent_size = 4 -insert_final_newline = false -trim_trailing_whitespace = true - -[*.sln] -indent_style = tab - -[*.{csproj,vbproj,vcxproj,vcxproj.filters}] -indent_size = 2 - -[*.{xml,config,props,targets,nuspec,ruleset}] -indent_size = 2 - -[*.{yml,yaml}] -indent_size = 2 +file_header_template = \nTerminaux.TermInfo Copyright (C) 2023-2024 Aptivi\n\nThis file is part of Terminaux.TermInfo\n\nTerminaux.TermInfo is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nTerminaux.TermInfo is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY, without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see .\n -[*.json] -indent_size = 2 +# IDE0060: Remove unused parameter +dotnet_diagnostic.IDE0060.severity = warning +dotnet_diagnostic.CA1822.severity = none +dotnet_diagnostic.SA1120.severity = none [*.md] -trim_trailing_whitespace = false +charset = utf-8 [*.sh] end_of_line = lf -[*.cs] -# Sort using and Import directives with System.* appearing first -dotnet_sort_system_directives_first = true -dotnet_separate_import_directive_groups = false - -# Avoid "this." and "Me." if not necessary -dotnet_style_qualification_for_field = false:refactoring -dotnet_style_qualification_for_property = false:refactoring -dotnet_style_qualification_for_method = false:refactoring -dotnet_style_qualification_for_event = false:refactoring - -# Use language keywords instead of framework type names for type references -dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion -dotnet_style_predefined_type_for_member_access = true:suggestion - -# Suggest more modern language features when available -dotnet_style_object_initializer = true:suggestion -dotnet_style_collection_initializer = true:suggestion -dotnet_style_coalesce_expression = true:suggestion -dotnet_style_null_propagation = true:suggestion -dotnet_style_explicit_tuple_names = true:suggestion - -# Non-private static fields are PascalCase -dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = suggestion -dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields -dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style -dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field -dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected -dotnet_naming_symbols.non_private_static_fields.required_modifiers = static -dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case - -# Non-private readonly fields are PascalCase -dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.severity = suggestion -dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.symbols = non_private_readonly_fields -dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.style = non_private_readonly_field_style -dotnet_naming_symbols.non_private_readonly_fields.applicable_kinds = field -dotnet_naming_symbols.non_private_readonly_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected -dotnet_naming_symbols.non_private_readonly_fields.required_modifiers = readonly -dotnet_naming_style.non_private_readonly_field_style.capitalization = pascal_case - -# Constants are PascalCase -dotnet_naming_rule.constants_should_be_pascal_case.severity = suggestion -dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants -dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style -dotnet_naming_symbols.constants.applicable_kinds = field, local -dotnet_naming_symbols.constants.required_modifiers = const -dotnet_naming_style.constant_style.capitalization = pascal_case - -# Instance fields are camelCase and start with _ -dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion -dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields -dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style -dotnet_naming_symbols.instance_fields.applicable_kinds = field -dotnet_naming_style.instance_field_style.capitalization = camel_case -dotnet_naming_style.instance_field_style.required_prefix = _ - -# Locals and parameters are camelCase -dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion -dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters -dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style -dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local -dotnet_naming_style.camel_case_style.capitalization = camel_case - -# Local functions are PascalCase -dotnet_naming_rule.local_functions_should_be_pascal_case.severity = suggestion -dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions -dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style -dotnet_naming_symbols.local_functions.applicable_kinds = local_function -dotnet_naming_style.local_function_style.capitalization = pascal_case - -# By default, name items with PascalCase -dotnet_naming_rule.members_should_be_pascal_case.severity = suggestion -dotnet_naming_rule.members_should_be_pascal_case.symbols = all_members -dotnet_naming_rule.members_should_be_pascal_case.style = pascal_case_style -dotnet_naming_symbols.all_members.applicable_kinds = * -dotnet_naming_style.pascal_case_style.capitalization = pascal_case - -# Newline settings -csharp_new_line_before_open_brace = all -csharp_new_line_before_else = true -csharp_new_line_before_catch = true -csharp_new_line_before_finally = true -csharp_new_line_before_members_in_object_initializers = true -csharp_new_line_before_members_in_anonymous_types = true -csharp_new_line_between_query_expression_clauses = true - -# Indentation preferences -csharp_indent_block_contents = true -csharp_indent_braces = false -csharp_indent_case_contents = true -csharp_indent_case_contents_when_block = true -csharp_indent_switch_labels = true -csharp_indent_labels = flush_left - -# Prefer "var" everywhere -csharp_style_var_for_built_in_types = true:suggestion -csharp_style_var_when_type_is_apparent = true:suggestion -csharp_style_var_elsewhere = true:suggestion - -# Prefer method-like constructs to have a block body -csharp_style_expression_bodied_methods = false:none -csharp_style_expression_bodied_constructors = false:none -csharp_style_expression_bodied_operators = false:none - -# Prefer property-like constructs to have an expression-body -csharp_style_expression_bodied_properties = true:none -csharp_style_expression_bodied_indexers = true:none -csharp_style_expression_bodied_accessors = true:none +[*.resx] +end_of_line = crlf +insert_final_newline = true +indent_style = space +indent_size = 2 -# Suggest more modern language features when available -csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion -csharp_style_pattern_matching_over_as_with_null_check = true:suggestion -csharp_style_inlined_variable_declaration = true:suggestion -csharp_style_throw_expression = true:suggestion -csharp_style_conditional_delegate_call = true:suggestion +[*.csproj] +end_of_line = crlf +insert_final_newline = true +indent_style = space +indent_size = 2 -# Space preferences -csharp_space_after_cast = false -csharp_space_after_colon_in_inheritance_clause = true -csharp_space_after_comma = true -csharp_space_after_dot = false -csharp_space_after_keywords_in_control_flow_statements = true -csharp_space_after_semicolon_in_for_statement = true -csharp_space_around_binary_operators = before_and_after -csharp_space_around_declaration_statements = do_not_ignore -csharp_space_before_colon_in_inheritance_clause = true -csharp_space_before_comma = false -csharp_space_before_dot = false -csharp_space_before_open_square_brackets = false -csharp_space_before_semicolon_in_for_statement = false -csharp_space_between_empty_square_brackets = false -csharp_space_between_method_call_empty_parameter_list_parentheses = false -csharp_space_between_method_call_name_and_opening_parenthesis = false -csharp_space_between_method_call_parameter_list_parentheses = false -csharp_space_between_method_declaration_empty_parameter_list_parentheses = false -csharp_space_between_method_declaration_name_and_open_parenthesis = false -csharp_space_between_method_declaration_parameter_list_parentheses = false -csharp_space_between_parentheses = false -csharp_space_between_square_brackets = false +[*.xml] +end_of_line = crlf +insert_final_newline = true +indent_style = space +indent_size = 2 -# Blocks are allowed -csharp_prefer_braces = true:silent -csharp_preserve_single_line_blocks = true -csharp_preserve_single_line_statements = true +[*.json] +end_of_line = crlf +insert_final_newline = true +indent_style = space +indent_size = 4 -# warning RS0037: PublicAPI.txt is missing '#nullable enable' -dotnet_diagnostic.RS0037.severity = none \ No newline at end of file +[*.yml] +end_of_line = crlf +insert_final_newline = true +indent_style = space +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.github/ISSUE_TEMPLATE/ask-a-question.md b/.github/ISSUE_TEMPLATE/ask-a-question.md new file mode 100644 index 0000000..e69df3d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ask-a-question.md @@ -0,0 +1,19 @@ +--- +name: Ask a question +about: Ask us anything about KS. +title: "[Q&A] [FeatureName] - [Question]" +labels: '' +assignees: '' + +--- + +### Type of question + +- [ ] General +- [ ] API +- [ ] Commands +- [ ] Mods +- [ ] Others + +### Question + diff --git a/.github/ISSUE_TEMPLATE/report-an-issue.md b/.github/ISSUE_TEMPLATE/report-an-issue.md new file mode 100644 index 0000000..a1f3a3b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report-an-issue.md @@ -0,0 +1,30 @@ +--- +name: Report an issue +about: Thank you for reporting a bug to us. +title: "[BUG] [featureName] - [issue]" +labels: '' +assignees: '' + +--- + +### Description + + + +### Expected behavior + + + +### Actual behavior + + + +### Steps to reproduce + +1. Open x +1. Write `yyy` +1. Observe a happening instead of z + +### Version + +Version `0.0.0 0000000000000000000000000000000000000000 main` diff --git a/.github/ISSUE_TEMPLATE/request-a-feature.md b/.github/ISSUE_TEMPLATE/request-a-feature.md new file mode 100644 index 0000000..7b1cfc2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/request-a-feature.md @@ -0,0 +1,19 @@ +--- +name: Request a feature +about: Suggest an idea to us. +title: "[ADD] [FeatureName] - [Feature]" +labels: '' +assignees: '' + +--- + +### Description of new feature + + + +### What does it add? +- [ ] New feature +- [ ] New API functions +- [ ] Others + +### Have you tried doing it? If so, attach a mod file. diff --git a/.github/funding.yml b/.github/funding.yml deleted file mode 100644 index 49ca39c..0000000 --- a/.github/funding.yml +++ /dev/null @@ -1 +0,0 @@ -github: patriksvensson \ No newline at end of file diff --git a/.github/issue_template.md b/.github/issue_template.md new file mode 100644 index 0000000..805cd08 --- /dev/null +++ b/.github/issue_template.md @@ -0,0 +1,21 @@ +### Description + + + +### Expected behavior + + + +### Actual behavior + + + +### Steps to reproduce + +1. Open x +1. Write `yyy` +1. Observe a happening instead of z + +### Version + +Version `0.0.0 0000000000000000000000000000000000000000 main` diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..b3cd975 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,20 @@ +## Description + + + +## Change type + +- [ ] Bug fixes +- [ ] Performance improvements +- [ ] Feature changes +- [ ] Behavioral changes +- [ ] Other (specify) + +## Tested? + +- [ ] Yes, I have +- [ ] No, I haven't +- [ ] Not sure + +## Other changes? + diff --git a/.github/workflows/build-linux-rel.yml b/.github/workflows/build-linux-rel.yml new file mode 100644 index 0000000..87c399a --- /dev/null +++ b/.github/workflows/build-linux-rel.yml @@ -0,0 +1,28 @@ +name: Build Project (Linux, Release) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Testing + run: dotnet test --no-build --configuration Release + diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml new file mode 100644 index 0000000..26f15f1 --- /dev/null +++ b/.github/workflows/build-linux.yml @@ -0,0 +1,33 @@ +name: Build Project (Linux) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Debug + - name: Testing + run: dotnet test --configuration Debug + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: tr-build + path: "src/Terminaux.TermInfo/bin/Debug/" + diff --git a/.github/workflows/build-macos-rel.yml b/.github/workflows/build-macos-rel.yml new file mode 100644 index 0000000..4c5111a --- /dev/null +++ b/.github/workflows/build-macos-rel.yml @@ -0,0 +1,28 @@ +name: Build Project (macOS, Release) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Testing + run: dotnet test --no-build --configuration Release + diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml new file mode 100644 index 0000000..8485abf --- /dev/null +++ b/.github/workflows/build-macos.yml @@ -0,0 +1,33 @@ +name: Build Project (macOS) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Debug + - name: Testing + run: dotnet test --configuration Debug + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: tr-build + path: "src/Terminaux.TermInfo/bin/Debug/" + diff --git a/.github/workflows/build-win-rel.yml b/.github/workflows/build-win-rel.yml new file mode 100644 index 0000000..fad4ee3 --- /dev/null +++ b/.github/workflows/build-win-rel.yml @@ -0,0 +1,28 @@ +name: Build Project (Windows, Release) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Testing + run: dotnet test --no-build --configuration Release + diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml new file mode 100644 index 0000000..06f5f84 --- /dev/null +++ b/.github/workflows/build-win.yml @@ -0,0 +1,33 @@ +name: Build Project (Windows) + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Debug + - name: Testing + run: dotnet test --configuration Debug + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: tr-build + path: "src/Terminaux.TermInfo/bin/Debug/" + diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 360e3bc..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json -name: Continuous Integration -on: pull_request - -env: - # Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - # Disable sending usage data to Microsoft - DOTNET_CLI_TELEMETRY_OPTOUT: true - -jobs: - - ################################################### - # BUILD - ################################################### - - build: - name: Build - if: "!contains(github.event.head_commit.message, 'skip-ci')" - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: 'Get Git tags' - run: git fetch --tags - shell: bash - - - name: Setup dotnet - uses: actions/setup-dotnet@v3 - - - name: Build - shell: bash - run: | - dotnet tool restore - dotnet cake \ No newline at end of file diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml new file mode 100644 index 0000000..e933d71 --- /dev/null +++ b/.github/workflows/docgen.yml @@ -0,0 +1,28 @@ +name: KS API Documentation + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + name: "Make API Reference" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + name: Fetching the KS source + - uses: "nunit/docfx-action@master" + name: Generating documentation + with: + args: DocGen/docfx.json + - name: Saving changes to gh-pages + uses: peaceiris/actions-gh-pages@v3 + with: + commit_message: "Updated documentation to reflect latest changes" + personal_token: ${{ secrets.DOCGEN_TOKEN }} + publish_dir: ./docs/ + publish_branch: gh-pages diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml new file mode 100644 index 0000000..600da04 --- /dev/null +++ b/.github/workflows/pack.yml @@ -0,0 +1,25 @@ +name: NuGet Gallery Push + +on: + release: + types: [published] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Solution Compilation + run: dotnet build --configuration Release + - name: Package Publication + run: | + dotnet nuget push "src/Terminaux.TermInfo/bin/Release/*.symbols.nupkg" --api-key ${{ secrets.NUGET_APIKEY }} --source "nuget.org" + diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml deleted file mode 100644 index 9c4d0db..0000000 --- a/.github/workflows/publish.yaml +++ /dev/null @@ -1,45 +0,0 @@ -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json -name: Publish - -on: - push: - tags: - - '*' - branches: - - main - -env: - # Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - # Disable sending usage data to Microsoft - DOTNET_CLI_TELEMETRY_OPTOUT: true - -jobs: - - ################################################### - # PUBLISH - ################################################### - - publish: - name: Publish - if: "!contains(github.event.head_commit.message, 'skip-ci')" - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: 'Get Git tags' - run: git fetch --tags - shell: bash - - - name: Setup dotnet - uses: actions/setup-dotnet@v3 - - - name: Publish - shell: bash - run: | - dotnet tool restore - dotnet cake --target="publish" \ - --nuget-key="${{secrets.NUGET_API_KEY}}" \ No newline at end of file diff --git a/.gitignore b/.gitignore index 8c56e1c..972f6f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,62 +1,91 @@ -# Misc folders -[Bb]in/ -[Oo]bj/ -[Tt]emp/ -[Pp]ackages/ -/.artifacts/ -/[Tt]ools/ -.idea -.DS_Store - -# Cakeup -cakeup-x86_64-latest.exe - -# .NET Core CLI -/.dotnet/ -/.packages/ -dotnet-install.sh* -*.lock.json - -# Visual Studio -.vs/ -.vscode/ -launchSettings.json -*.sln.ide/ - -# Rider -src/.idea/**/workspace.xml -src/.idea/**/tasks.xml -src/.idea/dictionaries -src/.idea/**/dataSources/ -src/.idea/**/dataSources.ids -src/.idea/**/dataSources.xml -src/.idea/**/dataSources.local.xml -src/.idea/**/sqlDataSources.xml -src/.idea/**/dynamic.xml -src/.idea/**/uiDesigner.xml - ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore # User-specific files +*.rsuser *.suo *.user +*.userosscache *.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) *.userprefs -*.GhostDoc.xml -*StyleCop.Cache + +# Mono auto generated files +mono_crash.* # Build results [Dd]ebug/ +!public/*/Shell/Shells/Debug/ +!public/*/Shell/Shells/Debug/** +!public/*/Shell/Prompts/Presets/Debug/ +!public/*/Shell/Prompts/Presets/Debug/** +[Dd]ebugPublic/ [Rr]elease/ +[Rr]eleases/ x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ +KSBuild/ +KSTest/ +KSAnalyzer/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio *_i.c *_p.c +*_h.h *.ilk *.meta *.obj +*.iobj *.pch *.pdb +*.ipdb *.pgc *.pgd *.rsp @@ -65,27 +94,319 @@ x64/ *.tli *.tlh *.tmp +*.tmp_proj +*_wpftmp.csproj *.log +*.tlog *.vspscc *.vssscc .builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState # ReSharper is a .NET coding add-in -_ReSharper* +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml # NCrunch -.*crunch*.local.xml _NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp -# NuGet Packages Directory -packages +# JetBrains Rider +*.sln.iml -# Windows -Thumbs.db +# DocGen +docs/ +DocGen/api/ -*.received.* \ No newline at end of file +# Vim +*.swp diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..bcf8145 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,195 @@ +# Contributing guidelines + +First of all, thank you for contributing to our project! This kind of act is the most welcome act to help us keep running our projects the way we want them to run. All your contributions are valuable, but you need to follow these simple rules to get your contribution accepted. + +In the pull requests, we might ask you to make a few changes until we can accept them. If there's no reason for us to add your changes to the project, we might reject them altogether. + +## Following templates + +Your pull requests should follow the template. + +You should be descriptive about what your change is trying to do and what's your opinion about how it affects the whole project. Moreover, it's vital to test your changes before trying to start a pull request to ensure that there are no problems in your initial version. **Always** draft your pull requests. + +## Code guidelines + +When it comes to coding your changes, they should follow the below coding guidelines to retain the style of our projects' code. These are the below code guidelines: + +### Sorting of Fields and Properties + +Fields must come at the very beginning of each class before the properties. Between the fields and the properties and the functions, there should be an empty line. Moreover, accesibility modifiers should be sorted in the following order: + +``` +ClassName + | + |-> Public Fields + |-> Public Read-Only Fields + |-> Internal Fields + |-> Private Fields + |-> Internal Read-Only Fields + |-> Private Read-Only Fields + | + |-> Public Properties + |-> Internal Properties (rare, unless you treat them like C #macros) + | +(...) +``` + +### Sorting of Functions + +Sorting of functions is only affected by their accessibility modifiers in your code. Public functions must come before internal functions, at which the private functions come last. + +``` +(...) + | + |-> Public Functions + |-> Internal Functions + |-> Private Functions + | + --- +``` + +### Arrangement of logic in functions + +Inside functions, the arrangement of logic must be in the below order. Moreover, each part of the logic in each function must be preceded by a comment that explains why is your logic is here and a couple of necessary variables before actual logic. + +``` +ClassName +(...) + | + |-> FunctionName(int arg1, string arg2, ...) + | | + | |-> Comment explaining why (not what) is this logic here + | |-> A couple of necessary variables (optional) + | |-> Actual function logic + | | + | (...) + | +(...) +``` + +Example: + +``` +private static void PollForResize() +{ +(...) + // We need to call the WindowHeight and WindowWidth properties on the Terminal console driver, because + // this polling works for all the terminals. Other drivers that don't use the terminal may not even + // implement these two properties. + if (CurrentWindowHeight != termDriver.WindowHeight | CurrentWindowWidth != termDriver.WindowWidth) + { + ResizeDetected = true; +(...) +} +``` + +### Tabs versus Spaces + +Here we come to the argument of tabs vs spaces. Our problem with tabs is that there are systems that treat tabs as four spaces, and there are systems that treat tabs as eight spaces. Moreover, there is no universal way to accurately query the operating system for tab lengths, as such queries are up to the application handling tabs. + +We recommend that you set your IDE to use **four spaces** for each tab press. Also, don't use literal tab characters for indentation (`\t`); use four spaces. + +### Functions that do only one thing + +*This is not applicable to languages that don't support this feature* + +In C#, you can literally make a function without the opening and closing bracelets (`{ }`) if your function only contains one logic. However, you must append `=>` before the logic. Moreover, the logic should be in its own separate line with four spaces as indentation, like the following: + +``` +access_modifier [static] type SingleLogicFunctionName(string arg1, ...) => + MyLogic(arg1, ...).Modify().(...); +``` + +For example, + +``` +public static string[] GetWrappedSentences(string text, int maximumLength) => + GetWrappedSentences(text, maximumLength, 0); +``` + +### If, while, for, foreach statements that do only one thing + +*This is not applicable to languages that don't support this feature* + +In C#, you can literally make an if, while, for, and foreach statements without the opening and closing bracelets (`{ }`) if your statement only contains one logic. However, you must append `=>` before the logic. Moreover, the logic should be in its own separate line with four spaces as indentation, like the following: + +``` +if/while/for/foreach (...) + MyLogicToDo(); +``` + +For example, + +``` +// Also, compensate the \0 characters +if (text[i] == '\0') + vtSeqCompensate++; +``` + +### Naming of Public vs Internal and Private Components + +The naming must satisfy the following rules: + +* All public functions, properties, and fields must follow the Pascal Case (FunctionName) naming scheme, regardless of their purpose. +* For argument names in public, internal, and private functions, they must be named in the scheme of Camel Case (argumentName). +* Private and internal functions and properties must also follow the Pascal Case naming scheme. +* Private and internal fields must use the Camel Case naming style. +* Pascal Case should be used in class names at all times. +* You may never use the snake_case naming (this isn't Rust) or the kebab-case naming scheme (this isn't HTML) in all the components. + +To learn more about Pascal Case and Camel Case, visit [this site](https://www.freecodecamp.org/news/snake-case-vs-camel-case-vs-pascal-case-vs-kebab-case-whats-the-difference/). + +## Git commits + +We follow this conventional Git commit scheme: + +``` +Type - Attributes - Summary + +Extended Summary + +--- + +Description + +--- + +Type: Type +Breaking: Yes/No +Documentation Required: Yes/No +Part: 1/1 +``` + +For types, you should select exactly one type from the following types: + +``` +add: for additions +fix: for fixes +rem: for removals +imp: for improvements +ref: for refactors +upd: for library updates +doc: for documentation updates +``` + +Additionally, attributes are optional and can be specified. Multiple attributes should be separated with the pipe character (`|`). However, there are special cases that you may need to handle when you're committing your changes to your pull request: + +* If documentation is required (i.e. your commit requires documentation on GitBook and you've specified `doc`), change the `Documentation Required` part to `Yes`, otherwise, `No`. +* If this commit includes breaking changes (i.e. you've specified `brk`), change the `Breaking` part to `Yes`, otherwise, `No`. +* If this commit is a part of the commit series, specify `prt` and change the `Part` field where it says `1/1` to the current and the total parts in this format: `current/total`. Total parts must be accurate, and the title should stay the same as any former commits in the series. + +These are the attributes we officially support: + +``` +brk: for breaking changes +sec: for security +prf: for performance improvements +reg: for regression fixes +doc: for documentation requirement +ptp: for prototyping +prt: for commit series (PartNum is required) +``` + +## Engagement with the Community + +Thank you for your contribution to our project, but in order for this contribution to be flawless, you must be respectful to all other developers of the projects and the users in general, regardless of whether there is a fight or a heated discussion going on. Try to keep it civil during fights and don't use personal attacks, threats of any kind, derogatory and racist remarks against people or groups of any race, ethnicity, religion, or group, and explicit words (like swearing) to try to solve any disagreement with anyone, including the developers of the project. diff --git a/DocGen/.gitignore b/DocGen/.gitignore new file mode 100644 index 0000000..2a64487 --- /dev/null +++ b/DocGen/.gitignore @@ -0,0 +1,6 @@ +/**/DROP/ +/**/TEMP/ +/**/packages/ +/**/bin/ +/**/obj/ +reference \ No newline at end of file diff --git a/DocGen/docfx.json b/DocGen/docfx.json new file mode 100644 index 0000000..a155d84 --- /dev/null +++ b/DocGen/docfx.json @@ -0,0 +1,49 @@ +{ + "metadata": [ + { + "src": [ + { + "files": [ "Terminaux.TermInfo/**.csproj" ], + "src": ".." + } + ], + "dest": "api", + "disableGitFeatures": false, + "disableDefaultFilter": false, + "filter": "filterConfig.yml" + } + ], + "build": { + "content": [ + { + "files": [ + "api/**.yml", + "index.md", + "toc.yml" + ] + } + ], + "resource": [ + { + "files": [ "images/**" ] + } + ], + "dest": "../docs", + "globalMetadata": { + "_appTitle": "Terminaux.TermInfo API - Aptivi", + "_enableSearch": true + }, + "globalMetadataFiles": [], + "fileMetadataFiles": [], + "template": [ "default" ], + "postProcessors": [], + "markdownEngineName": "markdig", + "noLangKeyword": false, + "keepFileLink": false, + "cleanupCacheHistory": false, + "disableGitFeatures": false, + "sitemap": { + "baseUrl": "https://aptivi.github.io/Terminaux.TermInfo/" + } + } +} diff --git a/DocGen/filterConfig.yml b/DocGen/filterConfig.yml new file mode 100644 index 0000000..c1e4d00 --- /dev/null +++ b/DocGen/filterConfig.yml @@ -0,0 +1,17 @@ +apiRules: +- exclude: + # inherited members from Form + uidRegex: ^System\.Windows\.Forms\.Form\..*$ + type: Member +- exclude: + # inherited members from Control + uidRegex: ^System\.Windows\.Forms\.Control\..*$ + type: Member +- exclude: + # mentioning types from System.* namespace + uidRegex: ^System\..*$ + type: Type +- exclude: + # mentioning types from Microsoft.* namespace + uidRegex: ^Microsoft\..*$ + type: Type \ No newline at end of file diff --git a/DocGen/index.md b/DocGen/index.md new file mode 100644 index 0000000..d6d4c53 --- /dev/null +++ b/DocGen/index.md @@ -0,0 +1,21 @@ +## What is Terminaux.TermInfo? + +Terminaux.TermInfo is a library that allows you to get information about each console type and their properties. + +## What is this web page? + +This webpage is an API documentation for mod developers to be used as reference. It constantly gets updated as we push the updates to the main and servicing versions of this project. + +If you still intend to use a documentation specific to your preferred version of Terminaux.TermInfo, you may refer to the [releases](https://github.com/Aptivi/Terminaux.TermInfo/releases) page of the project and download the attached `-doc.rar` file. + +To get started using the documentation, select `API Documentation` from the top menu and select a namespace to get a clear overview of the API. + +## Feedback + +If you wish to leave feedback to us about this API reference website, use the [issue tracker](https://github.com/Aptivi/Terminaux.TermInfo/issues) of the project. + +If you wish to contribute to the documentation of the API, go to the project source code and make your improvements there on a draft [Pull Request](https://github.com/Aptivi/Terminaux.TermInfo/pulls); we don't support override files that are made by clicking on `Improve this doc`. + +Any meaningful contributions are welcome. + +Copyright (c) 2022-2023 Aptivi. All rights reserved. diff --git a/DocGen/toc.yml b/DocGen/toc.yml new file mode 100644 index 0000000..3b07592 --- /dev/null +++ b/DocGen/toc.yml @@ -0,0 +1,4 @@ +- name: Home + href: index.md +- name: API Documentation + href: api/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f918647 --- /dev/null +++ b/Makefile @@ -0,0 +1,33 @@ + +# Terminaux Copyright (C) 2023 Aptivi +# +# This file is part of Terminaux +# +# Terminaux is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Terminaux is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +OUTPUTS = Terminaux.*/bin Terminaux.*/obj Terminaux/bin Terminaux/obj + +.PHONY: all + +# General use + +all: all-online + +all-online: + $(MAKE) -C tools invoke-build + +clean: + rm -rf $(OUTPUTS) + +# This makefile is just a wrapper for tools scripts. diff --git a/README.md b/README.md index 4e606c8..c04a100 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,67 @@ -# terminfo -A library to read compiled, binary terminfo descriptions. +
-_[![TermInfo NuGet Version](https://img.shields.io/nuget/v/TermInfo.svg?style=flat&label=NuGet%3A%20TermInfo)](https://www.nuget.org/packages/TermInfo)_ +
+
+ + -## Usage +
-```csharp -// Load the active terminfo description -var info = TermInfoDesc.Load(); +# Terminaux.TermInfo + +*A library that allows you to inspect the TermInfo database. Part of the Terminaux library.* -// Load via terminfo name -var info = TermInfoDesc.Load("xterm-256color"); +
+
-// Default capabilities are strongly typed -Debug.Assert(info.MaxColors == 256) +[![Badge Main]][Main]    +[![Badge Main Linux]][Main Linux] -// But extended capabilities are also supported -bool? ax = info.Extended.GetBoolean("AX"); -int? u8 = info.Extended.GetNum("U8"); -string? kup = info.Extended.GetNum("kUP"); -``` +[![Badge Latest]][Latest]    +[![Badge NuGet]][NuGet] -## Building +![Badge Size]    +[![Badge Downloads]][Releases] -We're using [Cake](https://github.com/cake-build/cake) as a -[dotnet tool](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools) -for building. So make sure that you've restored Cake by running -the following in the repository root: +[![Button Manual]][Manual]    +[![Button Libraries]][Libraries] -``` -> dotnet tool restore -``` +
+ +
-After that, running the build is as easy as writing: + -``` -> dotnet cake -``` -## Acknowledgement + -This code is partly a port of https://github.com/xo/terminfo, -licensed under [MIT](https://github.com/xo/terminfo/blob/ca9a967f877831dd8742c136f5c19f82d03673f4/LICENSE). +[Releases]: https://github.com/Aptivi/Terminaux.TermInfo/releases +[Latest]: https://github.com/Aptivi/Terminaux.TermInfo/releases/latest +[NuGet]: https://www.nuget.org/packages/Terminaux.TermInfo/ + +[Main]: https://github.com/Aptivi/Terminaux.TermInfo/actions/workflows/build-win.yml +[Main Linux]: https://github.com/Aptivi/Terminaux.TermInfo/actions/workflows/build-linux.yml + +[Libraries]: https://aptivi.gitbook.io/terminaux-manual/project-dependencies +[Manual]: https://aptivi.gitbook.io/terminaux-manual/ + + + +[Badge Downloads]: https://img.shields.io/github/downloads/Aptivi/Terminaux.TermInfo/total?color=217346&label=Downloads&style=for-the-badge&logoColor=white&logo=DocuSign&labelColor=2d9d5f +[Badge Latest]: https://img.shields.io/github/v/release/Aptivi/Terminaux.TermInfo?color=212121&include_prereleases&label=github&style=for-the-badge&logoColor=white&logo=AzureArtifacts&labelColor=303030 +[Badge NuGet]: https://img.shields.io/nuget/vpre/Terminaux.TermInfo?color=012f52&style=for-the-badge&logoColor=white&logo=NuGet&labelColor=004880 +[Badge Size]: https://img.shields.io/github/repo-size/Aptivi/Terminaux.TermInfo?color=bb4a28&label=size&logoColor=white&style=for-the-badge&logo=GoogleAnalytics&labelColor=E85C33 + +[Badge Main]: https://github.com/Aptivi/Terminaux.TermInfo/actions/workflows/build-win.yml/badge.svg +[Badge Main Linux]: https://github.com/Aptivi/Terminaux.TermInfo/actions/workflows/build-linux.yml/badge.svg + + + + +[Button Libraries]: https://img.shields.io/badge/Libraries-EA8220?style=for-the-badge&logoColor=white&logo=AzureArtifacts +[Button Manual]: https://img.shields.io/badge/Docs-blueviolet?style=for-the-badge&logoColor=white&logo=GitBook diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..51a4eca --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,19 @@ +## Reporting security problems + +Thanks for finding security problems in our project! To report them, you must look at the supported versions in our GitBook page, which can be usually accessed by going to the project's main page at GitHub and selecting `Docs`. + +In case of the libraries, only the latest versions are supported. + +### How to report? + +Good question! To report security bugs, report them in the Issues section of our project. + +1. Go to our project's GitHub page +2. Click on Issues +3. Click on `New Issue` +4. Click on `Get Started` next to `Report an issue` +5. Fill in relevant details about this security bug +6. Click on the cogwheel icon next to `Labels` and click on `SECURITY` +7. Click on `Submit new issue` + +If we can reproduce your security issue, the security advisory will be published days after review. diff --git a/aptivi_snk.snk b/aptivi_snk.snk new file mode 100644 index 0000000000000000000000000000000000000000..b87cfc8a3f16dc777a1cbaa07985ddf900ab1052 GIT binary patch literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097jE>bZVZKg#8r9;&)ZK71^1|TQ>uHg?> zos;ar-n@}_4H^e~b}H&T?N`8^p94Rck(LB0m&)e{#nixp1YpV2;ym_mJOJKa4HZx9YKgOF z32Rb%f_F}h!=sp6fQiY$csXSPCqwV0Jg;Uf=t-Y_iF(yW%s^9Py}(;9o6$S&7?TX( zKNqTap0ZvAIuGO5&$Xd9jNb31;3IJal@b-psFlEhV-OLI#ZBYE$`c_n(OX&8Ci*NC zK95o8-Save{xn?Gt^Soy9w@PcM!*qD6O9OHdy<^vGQ~%V!kCx|8yE66D9cfG z3rBXM1STrlZ`s3RHHOaUDLF$xr_rtM-$yfg_v?D()>aPiwIx;7Az`Y6{c%8>BaC3Z3Xhz5q8L7|x2Brmt6@0bv8#q80VX%d&`WOBH literal 0 HcmV?d00001 diff --git a/build.cake b/build.cake deleted file mode 100644 index 7d4341b..0000000 --- a/build.cake +++ /dev/null @@ -1,79 +0,0 @@ -var target = Argument("target", "Default"); -var configuration = Argument("configuration", "Release"); - -//////////////////////////////////////////////////////////////// -// Tasks - -Task("Build") - .Does(context => -{ - DotNetBuild("./src/TermInfo.sln", new DotNetBuildSettings { - Configuration = configuration, - NoIncremental = context.HasArgument("rebuild"), - MSBuildSettings = new DotNetMSBuildSettings() - .TreatAllWarningsAs(MSBuildTreatAllWarningsAs.Error) - }); -}); - -Task("Test") - .IsDependentOn("Build") - .Does(context => -{ - DotNetTest("./src/TermInfo.sln", new DotNetTestSettings { - Configuration = configuration, - NoRestore = true, - NoBuild = true, - }); -}); - -Task("Package") - .IsDependentOn("Test") - .Does(context => -{ - context.CleanDirectory("./.artifacts"); - - context.DotNetPack($"./src/TermInfo.sln", new DotNetPackSettings { - Configuration = configuration, - NoRestore = true, - NoBuild = true, - OutputDirectory = "./.artifacts", - MSBuildSettings = new DotNetMSBuildSettings() - .TreatAllWarningsAs(MSBuildTreatAllWarningsAs.Error) - }); -}); - -Task("Publish-NuGet") - .WithCriteria(ctx => BuildSystem.IsRunningOnGitHubActions, "Not running on GitHub Actions") - .IsDependentOn("Package") - .Does(context => -{ - var apiKey = Argument("nuget-key", null); - if(string.IsNullOrWhiteSpace(apiKey)) { - throw new CakeException("No NuGet API key was provided."); - } - - // Publish to GitHub Packages - foreach(var file in context.GetFiles("./.artifacts/*.nupkg")) - { - context.Information("Publishing {0}...", file.GetFilename().FullPath); - DotNetNuGetPush(file.FullPath, new DotNetNuGetPushSettings - { - Source = "https://api.nuget.org/v3/index.json", - ApiKey = apiKey, - }); - } -}); - -//////////////////////////////////////////////////////////////// -// Targets - -Task("Publish") - .IsDependentOn("Publish-NuGet"); - -Task("Default") - .IsDependentOn("Package"); - -//////////////////////////////////////////////////////////////// -// Execution - -RunTarget(target) \ No newline at end of file diff --git a/dotnet-tools.json b/dotnet-tools.json deleted file mode 100644 index 2ff67de..0000000 --- a/dotnet-tools.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "cake.tool": { - "version": "3.2.0", - "commands": [ - "dotnet-cake" - ] - }, - "dotnet-example": { - "version": "1.6.0", - "commands": [ - "dotnet-example" - ] - } - } -} \ No newline at end of file diff --git a/global.json b/global.json deleted file mode 100644 index bd529ac..0000000 --- a/global.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "projects": [ "src" ], - "sdk": { - "version": "8.0.100", - "rollForward": "latestMinor" - } -} \ No newline at end of file diff --git a/scripts/Generate.ps1 b/scripts/Generate.ps1 index 8b5d7f5..1895aaa 100644 --- a/scripts/Generate.ps1 +++ b/scripts/Generate.ps1 @@ -3,14 +3,14 @@ ########################################################## $Output = Join-Path $PSScriptRoot ".temp" -$Source = Join-Path $PSScriptRoot "/../src/TermInfo" +$Source = Join-Path $PSScriptRoot "/../src/Terminaux.TermInfo" if(!(Test-Path $Output -PathType Container)) { New-Item -ItemType Directory -Path $Output | Out-Null } # Generate the files -Push-Location (Join-Path $PSScriptRoot "/../src/TermInfo.Cli") +Push-Location (Join-Path $PSScriptRoot "/../src/Terminaux.TermInfo.Cli") &dotnet run generate "$Output" --input $Output if(!$?) { Pop-Location diff --git a/src/Directory.Build.props b/src/Directory.Build.props index ea5be9a..f62b1ec 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -1,24 +1,20 @@ true - 9.0 + latest true - embedded + portable true true - - true - - - A .NET library to read binary terminfo files. - Patrik Svensson, Phil Scott + A .NET library to read binary terminfo files. This library is part of the Terminaux library. + Patrik Svensson, Phil Scott, Aptivi git - https://github.com/spectreconsole/terminfo - https://github.com/spectreconsole/terminfo - MIT + https://github.com/Aptivi/Terminaux.TermInfo + https://github.com/Aptivi/Terminaux.TermInfo + GPL-3.0-or-later @@ -37,4 +33,4 @@ All - \ No newline at end of file + diff --git a/src/TermInfo/Extensions/DictionaryExtensions.cs b/src/TermInfo/Extensions/DictionaryExtensions.cs deleted file mode 100644 index 1fd2478..0000000 --- a/src/TermInfo/Extensions/DictionaryExtensions.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace TermInfo -{ - internal static class DictionaryExtensions - { - public static Dictionary ToDictionarySafe( - this IEnumerable source, - Func keySelector, - Func valueSelector) - where TKey : notnull - { - var dictionary = new Dictionary(); - foreach (var item in source) - { - var key = keySelector(item); - var value = valueSelector(item); - - dictionary[key] = value; - } - - return dictionary; - } - } -} diff --git a/src/TermInfo/Extensions/EnumerableExtensions.cs b/src/TermInfo/Extensions/EnumerableExtensions.cs deleted file mode 100644 index aaa20d2..0000000 --- a/src/TermInfo/Extensions/EnumerableExtensions.cs +++ /dev/null @@ -1,16 +0,0 @@ -#if !NET5_0 -using System.Collections.Generic; -using System.Linq; - -namespace TermInfo -{ - internal static class EnumerableExtensions - { - public static IEnumerable<(TFirst First, TSecond Second)> Zip( - this IEnumerable source, IEnumerable first) - { - return source.Zip(first, (first, second) => (first, second)); - } - } -} -#endif \ No newline at end of file diff --git a/src/TermInfo/Extensions/ListExtensions.cs b/src/TermInfo/Extensions/ListExtensions.cs deleted file mode 100644 index 7ad3492..0000000 --- a/src/TermInfo/Extensions/ListExtensions.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.Collections.Generic; - -namespace TermInfo -{ - internal static class ListExtensions - { - public static void AddIfNotNullOrEmpty(this IList source, string? item) - { - if (source != null && !string.IsNullOrWhiteSpace(item)) - { - source.Add(item); - } - } - } -} diff --git a/src/TermInfo/Extensions/SpanExtensions.cs b/src/TermInfo/Extensions/SpanExtensions.cs deleted file mode 100644 index 69409c0..0000000 --- a/src/TermInfo/Extensions/SpanExtensions.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; - -namespace TermInfo -{ - internal static class SpanExtensions - { - public static int FindNullTerminator(this Span data, int start) - { - for (var i = start; i < data.Length; i++) - { - if (data[i] == '\0') - { - return i; - } - } - - return -1; - } - } -} diff --git a/src/TermInfo/Extensions/StringExtensions.cs b/src/TermInfo/Extensions/StringExtensions.cs deleted file mode 100644 index c7b6727..0000000 --- a/src/TermInfo/Extensions/StringExtensions.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.Text; - -namespace TermInfo -{ - internal static class StringExtensions - { - public static string ReadNullTerminatedString(this string source, int offset) - { - var accumulator = new StringBuilder(); - for (var pos = offset; pos < source.Length; pos++) - { - if (source[pos] == '\0') - { - break; - } - - accumulator.Append(source[pos]); - } - - return accumulator.ToString(); - } - } -} diff --git a/src/TermInfo/Parsing/BitWidth.cs b/src/TermInfo/Parsing/BitWidth.cs deleted file mode 100644 index 1814b78..0000000 --- a/src/TermInfo/Parsing/BitWidth.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace TermInfo -{ - internal enum BitWidth - { - OneByte = 8, - TwoBytes = 16, - FourBytes = 32, - } -} diff --git a/src/TermInfo/TermInfoCapsType.cs b/src/TermInfo/TermInfoCapsType.cs deleted file mode 100644 index b517a5e..0000000 --- a/src/TermInfo/TermInfoCapsType.cs +++ /dev/null @@ -1,24 +0,0 @@ -namespace TermInfo -{ - /// - /// Represents the different terminfo - /// capability kinds. - /// - public enum TermInfoCapsKind - { - /// - /// Boolean capability kind. - /// - Boolean = 0, - - /// - /// Num capability kind. - /// - Num = 1, - - /// - /// String capability kind. - /// - String = 2, - } -} diff --git a/src/TermInfo.Cli/.editorconfig b/src/Terminaux.TermInfo.Cli/.editorconfig similarity index 100% rename from src/TermInfo.Cli/.editorconfig rename to src/Terminaux.TermInfo.Cli/.editorconfig diff --git a/src/TermInfo.Cli/Commands/Generate/Capabilities.cs b/src/Terminaux.TermInfo.Cli/Commands/Generate/Capabilities.cs similarity index 100% rename from src/TermInfo.Cli/Commands/Generate/Capabilities.cs rename to src/Terminaux.TermInfo.Cli/Commands/Generate/Capabilities.cs diff --git a/src/TermInfo.Cli/Commands/Generate/Capability.cs b/src/Terminaux.TermInfo.Cli/Commands/Generate/Capability.cs similarity index 100% rename from src/TermInfo.Cli/Commands/Generate/Capability.cs rename to src/Terminaux.TermInfo.Cli/Commands/Generate/Capability.cs diff --git a/src/TermInfo.Cli/Commands/Generate/CapabilityType.cs b/src/Terminaux.TermInfo.Cli/Commands/Generate/CapabilityType.cs similarity index 100% rename from src/TermInfo.Cli/Commands/Generate/CapabilityType.cs rename to src/Terminaux.TermInfo.Cli/Commands/Generate/CapabilityType.cs diff --git a/src/TermInfo.Cli/Commands/Generate/GenerateCommand.cs b/src/Terminaux.TermInfo.Cli/Commands/Generate/GenerateCommand.cs similarity index 100% rename from src/TermInfo.Cli/Commands/Generate/GenerateCommand.cs rename to src/Terminaux.TermInfo.Cli/Commands/Generate/GenerateCommand.cs diff --git a/src/TermInfo.Cli/Commands/Inspect/InspectCommand.cs b/src/Terminaux.TermInfo.Cli/Commands/Inspect/InspectCommand.cs similarity index 99% rename from src/TermInfo.Cli/Commands/Inspect/InspectCommand.cs rename to src/Terminaux.TermInfo.Cli/Commands/Inspect/InspectCommand.cs index 7c1c003..797ada3 100644 --- a/src/TermInfo.Cli/Commands/Inspect/InspectCommand.cs +++ b/src/Terminaux.TermInfo.Cli/Commands/Inspect/InspectCommand.cs @@ -1,6 +1,7 @@ using System.Diagnostics; using Spectre.Console; using Spectre.Console.Cli; +using Terminaux.TermInfo; using TermInfo; namespace Generator.Commands diff --git a/src/TermInfo.Cli/Program.cs b/src/Terminaux.TermInfo.Cli/Program.cs similarity index 100% rename from src/TermInfo.Cli/Program.cs rename to src/Terminaux.TermInfo.Cli/Program.cs diff --git a/src/TermInfo.Cli/Templates/TermInfoCaps.template b/src/Terminaux.TermInfo.Cli/Templates/TermInfoCaps.template similarity index 100% rename from src/TermInfo.Cli/Templates/TermInfoCaps.template rename to src/Terminaux.TermInfo.Cli/Templates/TermInfoCaps.template diff --git a/src/TermInfo.Cli/Templates/TermInfoDesc.Generated.template b/src/Terminaux.TermInfo.Cli/Templates/TermInfoDesc.Generated.template similarity index 100% rename from src/TermInfo.Cli/Templates/TermInfoDesc.Generated.template rename to src/Terminaux.TermInfo.Cli/Templates/TermInfoDesc.Generated.template diff --git a/src/TermInfo.Cli/TermInfo.Cli.csproj b/src/Terminaux.TermInfo.Cli/Terminaux.TermInfo.Cli.csproj similarity index 93% rename from src/TermInfo.Cli/TermInfo.Cli.csproj rename to src/Terminaux.TermInfo.Cli/Terminaux.TermInfo.Cli.csproj index 5ec9fdc..d937251 100644 --- a/src/TermInfo.Cli/TermInfo.Cli.csproj +++ b/src/Terminaux.TermInfo.Cli/Terminaux.TermInfo.Cli.csproj @@ -30,7 +30,7 @@ - + diff --git a/src/TermInfo.Tests/.editorconfig b/src/Terminaux.TermInfo.Tests/.editorconfig similarity index 100% rename from src/TermInfo.Tests/.editorconfig rename to src/Terminaux.TermInfo.Tests/.editorconfig diff --git a/src/TermInfo.Tests/Data/eterm-256color b/src/Terminaux.TermInfo.Tests/Data/eterm-256color similarity index 100% rename from src/TermInfo.Tests/Data/eterm-256color rename to src/Terminaux.TermInfo.Tests/Data/eterm-256color diff --git a/src/TermInfo.Tests/Data/linux b/src/Terminaux.TermInfo.Tests/Data/linux similarity index 100% rename from src/TermInfo.Tests/Data/linux rename to src/Terminaux.TermInfo.Tests/Data/linux diff --git a/src/TermInfo.Tests/Data/windows-ansi b/src/Terminaux.TermInfo.Tests/Data/windows-ansi similarity index 100% rename from src/TermInfo.Tests/Data/windows-ansi rename to src/Terminaux.TermInfo.Tests/Data/windows-ansi diff --git a/src/TermInfo.Tests/Data/xterm+256color b/src/Terminaux.TermInfo.Tests/Data/xterm+256color similarity index 100% rename from src/TermInfo.Tests/Data/xterm+256color rename to src/Terminaux.TermInfo.Tests/Data/xterm+256color diff --git a/src/TermInfo.Tests/Data/xterm+88color b/src/Terminaux.TermInfo.Tests/Data/xterm+88color similarity index 100% rename from src/TermInfo.Tests/Data/xterm+88color rename to src/Terminaux.TermInfo.Tests/Data/xterm+88color diff --git a/src/TermInfo.Tests/TermInfoDataTests.cs b/src/Terminaux.TermInfo.Tests/TermInfoDataTests.cs similarity index 71% rename from src/TermInfo.Tests/TermInfoDataTests.cs rename to src/Terminaux.TermInfo.Tests/TermInfoDataTests.cs index 6dded95..b315ff5 100644 --- a/src/TermInfo.Tests/TermInfoDataTests.cs +++ b/src/Terminaux.TermInfo.Tests/TermInfoDataTests.cs @@ -1,7 +1,28 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + using Shouldly; +using Terminaux.TermInfo.Tests.Utilities; +using TermInfo; using Xunit; -namespace TermInfo.Tests +namespace Terminaux.TermInfo.Tests { public sealed class TermInfoDataTests { @@ -9,7 +30,7 @@ public sealed class TermInfoDataTests public void Should_Read_Standard_Format() { // Given - var stream = EmbeddedResourceReader.LoadResourceStream($"TermInfo.Tests/Data/windows-ansi"); + var stream = EmbeddedResourceReader.LoadResourceStream("Terminaux.TermInfo.Tests/Data/windows-ansi"); // When var info = TermInfoDesc.Load(stream); @@ -27,7 +48,7 @@ public void Should_Read_Standard_Format() public void Should_Read_MaxColors(string terminfo, int expected) { // Given - var stream = EmbeddedResourceReader.LoadResourceStream($"TermInfo.Tests/Data/{terminfo}"); + var stream = EmbeddedResourceReader.LoadResourceStream($"Terminaux.TermInfo.Tests/Data/{terminfo}"); // When var info = TermInfoDesc.Load(stream); @@ -40,7 +61,7 @@ public void Should_Read_MaxColors(string terminfo, int expected) public void Should_Read_Extended_Capabilities() { // Given - var stream = EmbeddedResourceReader.LoadResourceStream("TermInfo.Tests/Data/eterm-256color"); + var stream = EmbeddedResourceReader.LoadResourceStream("Terminaux.TermInfo.Tests/Data/eterm-256color"); // When var info = TermInfoDesc.Load(stream); @@ -59,7 +80,7 @@ public void Should_Read_Extended_Capabilities() public void Should_Read_Extended__Capabilities_Without_String_Values() { // Given - var stream = EmbeddedResourceReader.LoadResourceStream("TermInfo.Tests/Data/linux"); + var stream = EmbeddedResourceReader.LoadResourceStream("Terminaux.TermInfo.Tests/Data/linux"); // When var info = TermInfoDesc.Load(stream); @@ -81,7 +102,7 @@ public void Should_Read_Extended__Capabilities_Without_String_Values() public void Should_Consider_Extended_Caps_Case_Sensitive(string key, bool? expected) { // Given - var stream = EmbeddedResourceReader.LoadResourceStream("TermInfo.Tests/Data/linux"); + var stream = EmbeddedResourceReader.LoadResourceStream("Terminaux.TermInfo.Tests/Data/linux"); // When var info = TermInfoDesc.Load(stream); diff --git a/src/TermInfo.Tests/TermInfo.Tests.csproj b/src/Terminaux.TermInfo.Tests/Terminaux.TermInfo.Tests.csproj similarity index 95% rename from src/TermInfo.Tests/TermInfo.Tests.csproj rename to src/Terminaux.TermInfo.Tests/Terminaux.TermInfo.Tests.csproj index a1e93dd..19c5fd6 100644 --- a/src/TermInfo.Tests/TermInfo.Tests.csproj +++ b/src/Terminaux.TermInfo.Tests/Terminaux.TermInfo.Tests.csproj @@ -42,7 +42,7 @@ - + diff --git a/src/TermInfo.Tests/Utilities/EmbeddedResourceReader.cs b/src/Terminaux.TermInfo.Tests/Utilities/EmbeddedResourceReader.cs similarity index 55% rename from src/TermInfo.Tests/Utilities/EmbeddedResourceReader.cs rename to src/Terminaux.TermInfo.Tests/Utilities/EmbeddedResourceReader.cs index 4c370d5..851f1bc 100644 --- a/src/TermInfo.Tests/Utilities/EmbeddedResourceReader.cs +++ b/src/Terminaux.TermInfo.Tests/Utilities/EmbeddedResourceReader.cs @@ -1,8 +1,27 @@ -using System; +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +using System; using System.IO; using System.Reflection; -namespace TermInfo.Tests +namespace Terminaux.TermInfo.Tests.Utilities { public static class EmbeddedResourceReader { diff --git a/src/TermInfo.sln b/src/Terminaux.TermInfo.sln similarity index 88% rename from src/TermInfo.sln rename to src/Terminaux.TermInfo.sln index 3b1eff6..d9fcdbd 100644 --- a/src/TermInfo.sln +++ b/src/Terminaux.TermInfo.sln @@ -3,11 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.6.30114.105 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TermInfo", "TermInfo\TermInfo.csproj", "{C49A39CF-372F-4E4D-AFCF-8285CFB39255}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Terminaux.TermInfo", "Terminaux.TermInfo\Terminaux.TermInfo.csproj", "{C49A39CF-372F-4E4D-AFCF-8285CFB39255}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TermInfo.Tests", "TermInfo.Tests\TermInfo.Tests.csproj", "{4D5E6C3E-C7AC-426C-AABE-9C44B1834C93}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Terminaux.TermInfo.Tests", "Terminaux.TermInfo.Tests\Terminaux.TermInfo.Tests.csproj", "{4D5E6C3E-C7AC-426C-AABE-9C44B1834C93}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TermInfo.Cli", "TermInfo.Cli\TermInfo.Cli.csproj", "{7F1EFE12-88C8-493F-8FC7-C40488179D89}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Terminaux.TermInfo.Cli", "Terminaux.TermInfo.Cli\Terminaux.TermInfo.Cli.csproj", "{7F1EFE12-88C8-493F-8FC7-C40488179D89}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3D688222-B83C-4EDB-9ECD-C07CEC94FF2C}" ProjectSection(SolutionItems) = preProject diff --git a/src/TermInfo.v3.ncrunchsolution b/src/Terminaux.TermInfo.v3.ncrunchsolution similarity index 100% rename from src/TermInfo.v3.ncrunchsolution rename to src/Terminaux.TermInfo.v3.ncrunchsolution diff --git a/src/TermInfo/ExtendedCapabilities.cs b/src/Terminaux.TermInfo/ExtendedCapabilities.cs similarity index 83% rename from src/TermInfo/ExtendedCapabilities.cs rename to src/Terminaux.TermInfo/ExtendedCapabilities.cs index c4f6092..b37a45a 100644 --- a/src/TermInfo/ExtendedCapabilities.cs +++ b/src/Terminaux.TermInfo/ExtendedCapabilities.cs @@ -1,8 +1,28 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + using System; using System.Collections.Generic; using System.Linq; +using Terminaux.TermInfo.Extensions; -namespace TermInfo +namespace Terminaux.TermInfo { /// /// Represents extended capabilities. diff --git a/src/Terminaux.TermInfo/Extensions/DictionaryExtensions.cs b/src/Terminaux.TermInfo/Extensions/DictionaryExtensions.cs new file mode 100644 index 0000000..f45e719 --- /dev/null +++ b/src/Terminaux.TermInfo/Extensions/DictionaryExtensions.cs @@ -0,0 +1,45 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +using System; +using System.Collections.Generic; + +namespace Terminaux.TermInfo.Extensions +{ + internal static class DictionaryExtensions + { + public static Dictionary ToDictionarySafe( + this IEnumerable source, + Func keySelector, + Func valueSelector) + where TKey : notnull + { + var dictionary = new Dictionary(); + foreach (var item in source) + { + var key = keySelector(item); + var value = valueSelector(item); + + dictionary[key] = value; + } + + return dictionary; + } + } +} diff --git a/src/Terminaux.TermInfo/Extensions/EnumerableExtensions.cs b/src/Terminaux.TermInfo/Extensions/EnumerableExtensions.cs new file mode 100644 index 0000000..8cb0c1e --- /dev/null +++ b/src/Terminaux.TermInfo/Extensions/EnumerableExtensions.cs @@ -0,0 +1,36 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +#if !NET5_0 +using System.Collections.Generic; +using System.Linq; +using Terminaux.TermInfo.Extensions; + +namespace Terminaux.TermInfo.Extensions +{ + internal static class EnumerableExtensions + { + public static IEnumerable<(TFirst First, TSecond Second)> Zip( + this IEnumerable source, IEnumerable first) + { + return source.Zip(first, (first, second) => (first, second)); + } + } +} +#endif \ No newline at end of file diff --git a/src/Terminaux.TermInfo/Extensions/ListExtensions.cs b/src/Terminaux.TermInfo/Extensions/ListExtensions.cs new file mode 100644 index 0000000..2db88f6 --- /dev/null +++ b/src/Terminaux.TermInfo/Extensions/ListExtensions.cs @@ -0,0 +1,34 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +using System.Collections.Generic; + +namespace Terminaux.TermInfo.Extensions +{ + internal static class ListExtensions + { + public static void AddIfNotNullOrEmpty(this IList source, string? item) + { + if (source != null && !string.IsNullOrWhiteSpace(item)) + { + source.Add(item); + } + } + } +} diff --git a/src/Terminaux.TermInfo/Extensions/SpanExtensions.cs b/src/Terminaux.TermInfo/Extensions/SpanExtensions.cs new file mode 100644 index 0000000..30bb26f --- /dev/null +++ b/src/Terminaux.TermInfo/Extensions/SpanExtensions.cs @@ -0,0 +1,39 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +using System; + +namespace Terminaux.TermInfo.Extensions +{ + internal static class SpanExtensions + { + public static int FindNullTerminator(this Span data, int start) + { + for (var i = start; i < data.Length; i++) + { + if (data[i] == '\0') + { + return i; + } + } + + return -1; + } + } +} diff --git a/src/Terminaux.TermInfo/Extensions/StringExtensions.cs b/src/Terminaux.TermInfo/Extensions/StringExtensions.cs new file mode 100644 index 0000000..6b5d50f --- /dev/null +++ b/src/Terminaux.TermInfo/Extensions/StringExtensions.cs @@ -0,0 +1,42 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +using System.Text; + +namespace Terminaux.TermInfo.Extensions +{ + internal static class StringExtensions + { + public static string ReadNullTerminatedString(this string source, int offset) + { + var accumulator = new StringBuilder(); + for (var pos = offset; pos < source.Length; pos++) + { + if (source[pos] == '\0') + { + break; + } + + accumulator.Append(source[pos]); + } + + return accumulator.ToString(); + } + } +} diff --git a/src/Terminaux.TermInfo/OfficialAppIcon-Terminaux-512.png b/src/Terminaux.TermInfo/OfficialAppIcon-Terminaux-512.png new file mode 100644 index 0000000000000000000000000000000000000000..fb0536dfcd90bba5027202da03f4fc9da067816c GIT binary patch literal 85781 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 z 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. +// + +namespace Terminaux.TermInfo.Parsing +{ + internal enum BitWidth + { + OneByte = 8, + TwoBytes = 16, + FourBytes = 32, + } +} diff --git a/src/TermInfo/Parsing/ByteReader.cs b/src/Terminaux.TermInfo/Parsing/ByteReader.cs similarity index 57% rename from src/TermInfo/Parsing/ByteReader.cs rename to src/Terminaux.TermInfo/Parsing/ByteReader.cs index 3659a6b..3006c64 100644 --- a/src/TermInfo/Parsing/ByteReader.cs +++ b/src/Terminaux.TermInfo/Parsing/ByteReader.cs @@ -1,7 +1,26 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + using System; using System.IO; -namespace TermInfo +namespace Terminaux.TermInfo.Parsing { internal sealed class ByteReader { diff --git a/src/TermInfo/Parsing/NullTerminatedIndexedString.cs b/src/Terminaux.TermInfo/Parsing/NullTerminatedIndexedString.cs similarity index 65% rename from src/TermInfo/Parsing/NullTerminatedIndexedString.cs rename to src/Terminaux.TermInfo/Parsing/NullTerminatedIndexedString.cs index d72b122..42b8f89 100644 --- a/src/TermInfo/Parsing/NullTerminatedIndexedString.cs +++ b/src/Terminaux.TermInfo/Parsing/NullTerminatedIndexedString.cs @@ -1,6 +1,25 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + using System; -namespace TermInfo +namespace Terminaux.TermInfo.Parsing { internal sealed class NullTerminatedIndexedString { diff --git a/src/TermInfo/Parsing/TermInfoParser.cs b/src/Terminaux.TermInfo/Parsing/TermInfoParser.cs similarity index 89% rename from src/TermInfo/Parsing/TermInfoParser.cs rename to src/Terminaux.TermInfo/Parsing/TermInfoParser.cs index 0871225..1456cc0 100644 --- a/src/TermInfo/Parsing/TermInfoParser.cs +++ b/src/Terminaux.TermInfo/Parsing/TermInfoParser.cs @@ -1,10 +1,29 @@ -// Ported from https://github.com/xo/terminfo/blob/master/gen.go +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// using System; using System.IO; using System.Text; +using Terminaux.TermInfo.Extensions; +using TermInfo; -namespace TermInfo +namespace Terminaux.TermInfo.Parsing { internal static class TermInfoParser { diff --git a/src/TermInfo/TermInfoCaps.cs b/src/Terminaux.TermInfo/TermInfoCaps.cs similarity index 100% rename from src/TermInfo/TermInfoCaps.cs rename to src/Terminaux.TermInfo/TermInfoCaps.cs diff --git a/src/Terminaux.TermInfo/TermInfoCapsType.cs b/src/Terminaux.TermInfo/TermInfoCapsType.cs new file mode 100644 index 0000000..39b1e1e --- /dev/null +++ b/src/Terminaux.TermInfo/TermInfoCapsType.cs @@ -0,0 +1,43 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +namespace Terminaux.TermInfo +{ + /// + /// Represents the different terminfo + /// capability kinds. + /// + public enum TermInfoCapsKind + { + /// + /// Boolean capability kind. + /// + Boolean = 0, + + /// + /// Num capability kind. + /// + Num = 1, + + /// + /// String capability kind. + /// + String = 2, + } +} diff --git a/src/TermInfo/TermInfoDesc.Generated.cs b/src/Terminaux.TermInfo/TermInfoDesc.Generated.cs similarity index 100% rename from src/TermInfo/TermInfoDesc.Generated.cs rename to src/Terminaux.TermInfo/TermInfoDesc.Generated.cs diff --git a/src/TermInfo/TermInfoDesc.Static.cs b/src/Terminaux.TermInfo/TermInfoDesc.Static.cs similarity index 83% rename from src/TermInfo/TermInfoDesc.Static.cs rename to src/Terminaux.TermInfo/TermInfoDesc.Static.cs index 22beb94..7ecf3c2 100644 --- a/src/TermInfo/TermInfoDesc.Static.cs +++ b/src/Terminaux.TermInfo/TermInfoDesc.Static.cs @@ -1,5 +1,25 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + using System; using System.IO; +using Terminaux.TermInfo; namespace TermInfo { diff --git a/src/TermInfo/TermInfoDesc.cs b/src/Terminaux.TermInfo/TermInfoDesc.cs similarity index 76% rename from src/TermInfo/TermInfoDesc.cs rename to src/Terminaux.TermInfo/TermInfoDesc.cs index c7561e1..1d2a799 100644 --- a/src/TermInfo/TermInfoDesc.cs +++ b/src/Terminaux.TermInfo/TermInfoDesc.cs @@ -1,3 +1,24 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +using Terminaux.TermInfo; + namespace TermInfo { /// @@ -84,11 +105,6 @@ internal TermInfoDesc( } var result = _strings[index]; - if (result == null) - { - return null; - } - return result; } } diff --git a/src/TermInfo/TermInfoLoader.cs b/src/Terminaux.TermInfo/TermInfoLoader.cs similarity index 75% rename from src/TermInfo/TermInfoLoader.cs rename to src/Terminaux.TermInfo/TermInfoLoader.cs index 12336c5..2f1dbaf 100644 --- a/src/TermInfo/TermInfoLoader.cs +++ b/src/Terminaux.TermInfo/TermInfoLoader.cs @@ -1,9 +1,31 @@ +// +// Terminaux.TermInfo Copyright (C) 2023-2024 Aptivi +// +// This file is part of Terminaux.TermInfo +// +// Terminaux.TermInfo is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// Terminaux.TermInfo is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY, without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + using System; using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; +using Terminaux.TermInfo.Extensions; +using Terminaux.TermInfo.Parsing; +using TermInfo; -namespace TermInfo +namespace Terminaux.TermInfo { internal static class TermInfoLoader { diff --git a/src/TermInfo/TermInfo.csproj b/src/Terminaux.TermInfo/Terminaux.TermInfo.csproj similarity index 51% rename from src/TermInfo/TermInfo.csproj rename to src/Terminaux.TermInfo/Terminaux.TermInfo.csproj index a9ce66a..de21b11 100644 --- a/src/TermInfo/TermInfo.csproj +++ b/src/Terminaux.TermInfo/Terminaux.TermInfo.csproj @@ -1,8 +1,19 @@ - + - net8.0;netstandard2.0 + netstandard2.0 enable + 2.6.0 + console;shell;readline;gnu;cui;tui;cli;manipulation;console;vt;sequences;color;vt100;truecolor;library;csharp;reader;input;writer;styles;formatter + True + True + Aptivi + Copyright (c) 2022-2023 Aptivi. + README.md + True + OfficialAppIcon-Terminaux-512.png + True + ..\..\aptivi_snk.snk @@ -29,4 +40,18 @@ False + + + True + \ + + + + + + True + \ + + + diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..31b7b2f --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,27 @@ + +# Terminaux Copyright (C) 2023 Aptivi +# +# This file is part of Terminaux +# +# Terminaux is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Terminaux is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Below is a workaround for .NET SDK 7.0 trying to allocate large amounts of memory for GC work: +# https://github.com/dotnet/runtime/issues/85556#issuecomment-1529177092 +DOTNET_PAGE_SIZE = $(shell getconf PAGESIZE) +DOTNET_AVPHYS_PAGES = $(shell getconf _AVPHYS_PAGES) +DOTNET_HEAP_LIMIT = $(shell printf '%X\n' $$(($(DOTNET_AVPHYS_PAGES) * $(DOTNET_PAGE_SIZE)))) + +invoke-build: + chmod +x ./build.sh + ./build.sh || (echo Retrying with heap limit 0x$(DOTNET_HEAP_LIMIT)... && DOTNET_GCHeapHardLimit=$(DOTNET_HEAP_LIMIT) ./build.sh) diff --git a/tools/build.cmd b/tools/build.cmd new file mode 100644 index 0000000..5580f16 --- /dev/null +++ b/tools/build.cmd @@ -0,0 +1,40 @@ +@echo off + +REM Terminaux.TermInfo Copyright (C) 2018-2021 Aptivi +REM +REM This file is part of Terminaux.TermInfo +REM +REM Terminaux.TermInfo is free software: you can redistribute it and/or modify +REM it under the terms of the GNU General Public License as published by +REM the Free Software Foundation, either version 3 of the License, or +REM (at your option) any later version. +REM +REM Terminaux.TermInfo is distributed in the hope that it will be useful, +REM but WITHOUT ANY WARRANTY; without even the implied warranty of +REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +REM GNU General Public License for more details. +REM +REM You should have received a copy of the GNU General Public License +REM along with this program. If not, see . + +REM This script builds and packs the artifacts. Use when you have VS installed. +set releaseconfig=%1 +if "%releaseconfig%" == "" set releaseconfig=Release + +:download +echo Downloading packages... +"%ProgramFiles%\dotnet\dotnet.exe" msbuild "..\src\Terminaux.TermInfo.sln" -t:restore -p:Configuration=%releaseconfig% +if %errorlevel% == 0 goto :build +echo There was an error trying to download packages (%errorlevel%). +goto :finished + +:build +echo Building... +"%ProgramFiles%\dotnet\dotnet.exe" msbuild "..\src\Terminaux.TermInfo.sln" -p:Configuration=%releaseconfig% +if %errorlevel% == 0 goto :success +echo There was an error trying to build (%errorlevel%). +goto :finished + +:success +echo Build successful. +:finished diff --git a/tools/build.sh b/tools/build.sh new file mode 100644 index 0000000..0bb1eb6 --- /dev/null +++ b/tools/build.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +# Terminaux.TermInfo Copyright (C) 2023 Aptivi +# +# This file is part of Terminaux.TermInfo +# +# Terminaux.TermInfo is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Terminaux.TermInfo is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# This script builds. Use when you have dotnet installed. +releaseconf=$1 +if [ -z $releaseconf ]; then + releaseconf=Release +fi + +# Check for dependencies +dotnetpath=`which dotnet` +if [ ! $? == 0 ]; then + echo dotnet is not found. + exit 1 +fi + +# Download packages +echo Downloading packages... +"$dotnetpath" msbuild "../src/Terminaux.TermInfo.sln" -t:restore -p:Configuration=$releaseconf +if [ ! $? == 0 ]; then + echo Download failed. + exit 1 +fi + +# Build KS +echo Building KS... +"$dotnetpath" msbuild "../src/Terminaux.TermInfo.sln" -p:Configuration=$releaseconf +if [ ! $? == 0 ]; then + echo Build failed. + exit 1 +fi + +# Inform success +echo Build successful. +exit 0 diff --git a/tools/docgen-pack.cmd b/tools/docgen-pack.cmd new file mode 100644 index 0000000..3309565 --- /dev/null +++ b/tools/docgen-pack.cmd @@ -0,0 +1,22 @@ +@echo off + +REM This script builds KS documentation and packs the artifacts. Use when you have VS installed. +for /f "tokens=* USEBACKQ" %%f in (`type version`) do set ksversion=%%f + +:pack +echo Packing documentation... +"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%ksversion%-doc.zip "..\docs\*" +if %errorlevel% == 0 goto :finalize +echo There was an error trying to pack documentation (%errorlevel%). +goto :finished + +:finalize +rmdir /S /Q "..\DocGen\api\" +rmdir /S /Q "..\DocGen\obj\" +rmdir /S /Q "..\docs\" +move %temp%\%ksversion%-doc.zip +echo Build and pack successful. +goto :finished + +:finished +pause diff --git a/tools/docgen-pack.sh b/tools/docgen-pack.sh new file mode 100644 index 0000000..7ac1782 --- /dev/null +++ b/tools/docgen-pack.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +# This script builds KS and packs the artifacts. Use when you have MSBuild installed. +ksversion=$(cat version) + +# Check for dependencies +zippath=`which zip` +if [ ! $? == 0 ]; then + echo zip is not found. + exit 1 +fi + +# Pack documentation +echo Packing documentation... +cd "../docs/" && "$zippath" -r /tmp/$ksversion-doc.zip . && cd - +if [ ! $? == 0 ]; then + echo Packing failed. + exit 1 +fi + +# Inform success +rm -rf "../DocGen/api" +rm -rf "../DocGen/obj" +rm -rf "../docs" +mv /tmp/$ksversion-doc.zip . +echo Pack successful. +exit 0 diff --git a/tools/docgen.cmd b/tools/docgen.cmd new file mode 100644 index 0000000..1b04209 --- /dev/null +++ b/tools/docgen.cmd @@ -0,0 +1,36 @@ +@echo off + +REM Terminaux Copyright (C) 2018-2022 Aptivi +REM +REM This file is part of Terminaux +REM +REM Terminaux is free software: you can redistribute it and/or modify +REM it under the terms of the GNU General Public License as published by +REM the Free Software Foundation, either version 3 of the License, or +REM (at your option) any later version. +REM +REM Terminaux is distributed in the hope that it will be useful, +REM but WITHOUT ANY WARRANTY; without even the implied warranty of +REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +REM GNU General Public License for more details. +REM +REM You should have received a copy of the GNU General Public License +REM along with this program. If not, see . + +REM This script builds documentation and packs the artifacts. + +echo Finding DocFX... +if exist %ProgramData%\chocolatey\bin\docfx.exe goto :build +echo You don't have DocFX installed. Download and install Chocolatey and DocFX. +goto :finished + +:build +echo Building Documentation... +%ProgramData%\chocolatey\bin\docfx.exe "..\DocGen\docfx.json" +if %errorlevel% == 0 goto :success +echo There was an error trying to build documentation (%errorlevel%). +goto :finished + +:success +echo Build and pack successful. +:finished diff --git a/tools/docgen.sh b/tools/docgen.sh new file mode 100644 index 0000000..bdac5a0 --- /dev/null +++ b/tools/docgen.sh @@ -0,0 +1,37 @@ +#!/bin/bash + +# Terminaux Copyright (C) 2023 Aptivi +# +# This file is part of Terminaux +# +# Terminaux is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Terminaux is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Check for dependencies +msbuildpath=`which docfx` +if [ ! $? == 0 ]; then + echo DocFX is not found. + exit 1 +fi + +# Build KS +echo Building documentation... +docfx DocGen/docfx.json +if [ ! $? == 0 ]; then + echo Build failed. + exit 1 +fi + +# Inform success +echo Build successful. +exit 0 diff --git a/tools/pack.cmd b/tools/pack.cmd new file mode 100644 index 0000000..5714343 --- /dev/null +++ b/tools/pack.cmd @@ -0,0 +1,37 @@ +@echo off + +REM Terminaux.TermInfo Copyright (C) 2018-2021 Aptivi +REM +REM This file is part of Terminaux.TermInfo +REM +REM Terminaux.TermInfo is free software: you can redistribute it and/or modify +REM it under the terms of the GNU General Public License as published by +REM the Free Software Foundation, either version 3 of the License, or +REM (at your option) any later version. +REM +REM Terminaux.TermInfo is distributed in the hope that it will be useful, +REM but WITHOUT ANY WARRANTY; without even the implied warranty of +REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +REM GNU General Public License for more details. +REM +REM You should have received a copy of the GNU General Public License +REM along with this program. If not, see . + +for /f "tokens=* USEBACKQ" %%f in (`type version`) do set version=%%f +set releaseconfig=%1 +if "%releaseconfig%" == "" set releaseconfig=Release + +:packbin +echo Packing binary... +"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%version%-bin.zip "..\src\Terminaux.TermInfo\bin\%releaseconfig%\netstandard2.0\*" +"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%version%-demo.zip "..\src\Terminaux.TermInfo.Cli\bin\%releaseconfig%\net8.0\*" +if %errorlevel% == 0 goto :complete +echo There was an error trying to pack binary (%errorlevel%). +goto :finished + +:complete +move %temp%\%version%-bin.zip +move %temp%\%version%-demo.zip + +echo Pack successful. +:finished diff --git a/tools/pack.sh b/tools/pack.sh new file mode 100644 index 0000000..db124ed --- /dev/null +++ b/tools/pack.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +# Terminaux.TermInfo Copyright (C) 2023 Aptivi +# +# This file is part of Terminaux.TermInfo +# +# Terminaux.TermInfo is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Terminaux.TermInfo is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# This script builds and packs the artifacts. Use when you have MSBuild installed. +version=$(cat version) +releaseconf=$1 +if [ -z $releaseconf ]; then + releaseconf=Release +fi + +# Check for dependencies +zippath=`which zip` +if [ ! $? == 0 ]; then + echo zip is not found. + exit 1 +fi + +# Pack binary +echo Packing binary... +cd "../src/Terminaux.TermInfo/bin/$releaseconf/netstandard2.0/" && "$zippath" -r /tmp/$version-bin.zip . && cd - +cd "../src/Terminaux.TermInfo.Cli/bin/$releaseconf/net8.0/" && "$zippath" -r /tmp/$version-demo.zip . && cd - +if [ ! $? == 0 ]; then + echo Packing using zip failed. + exit 1 +fi + +# Inform success +mv /tmp/$version-bin.zip . +mv /tmp/$version-demo.zip . +echo Build and pack successful. +exit 0 diff --git a/tools/version b/tools/version new file mode 100644 index 0000000..e70b452 --- /dev/null +++ b/tools/version @@ -0,0 +1 @@ +2.6.0