Commit 4cd3b18a authored by Талибов Сэрхан Махмад Оглы's avatar Талибов Сэрхан Махмад Оглы
Browse files

Created CLI parser for a broker

1 merge request!12 of 4 services are donwe
Showing with 470 additions and 0 deletions
+470 -0
.gitignore 0 → 100644
.vs/
\ No newline at end of file

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34728.123
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Broker", "Broker\Broker.csproj", "{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {93E8500E-DF4F-40CA-856C-CB9D77B21DF9}
EndGlobalSection
EndGlobal
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.2" />
</ItemGroup>
</Project>
namespace HDLNoCGen
{
static class Program
{
static void Main(string[] args)
{
string project_name = "";
string project_location = "";
bool project_open = false;
bool project_create = false;
bool project_erase = false;
string topology = "";
List<int> generators = new List<int>();
string queue_type = "";
string queue_position = "";
string arbiter_type = "";
string algorithm = "";
int info_width = 0;
int queue_length = 0;
bool create_verilog = false;
string device_name = "5CGXFC9E7F35C8";
string db_ip = "";
string db_username = "";
string db_password = "";
string db_name = "";
int db_port = 5432;
string quartus_path = "";
#region arguments
for (int i = 0; i < args.Length; i++)
{
switch (args[i])
{
case "--project":
bool project_breaker = false;
while (!project_breaker)
{
switch (args[++i])
{
case "-n":
case "--name":
project_name = args[++i];
break;
case "-l":
case "--location":
project_location = args[++i];
break;
case "-o":
case "--open":
project_open = true;
break;
case "-c":
case "--create":
project_create = true;
break;
case "-e":
case "--erase":
project_erase = true;
break;
default:
i--;
project_breaker = true;
break;
}
}
break;
case "--graph":
bool graph_breaker = false;
while (!graph_breaker)
{
switch (args[++i])
{
case "c":
topology = "c";
break;
case "m":
topology = "m";
break;
case "t":
topology = "t";
break;
case "--queue_type":
queue_type = args[++i];
break;
case "--queue_position":
queue_position = args[++i];
break;
case "--arbiter_type":
arbiter_type = args[++i];
break;
case "--algorithm":
algorithm = args[++i];
break;
case "--info_width":
try
{
info_width = Convert.ToInt32(args[++i]);
}
catch (Exception e)
{
Console.WriteLine("--info_width must be a number");
}
break;
case "--queue_length":
try
{
queue_length = Convert.ToInt32(args[++i]);
}
catch (Exception e)
{
Console.WriteLine("--queue_lenght must be a number");
}
break;
case "-v":
case "--verilog":
create_verilog = true;
break;
default:
try
{
generators.Add(Convert.ToInt32(args[i]));
}
catch (Exception e)
{
i--;
graph_breaker = true;
}
break;
}
}
break;
case "--quartus":
switch (args[++i])
{
case "-d":
case "--device":
device_name = args[++i];
break;
default:
i--;
break;
}
break;
case "--database":
bool db_breaker = false;
while (!db_breaker)
{
switch (args[++i])
{
case "-i":
case "--ip":
db_ip = args[++i];
break;
case "-u":
case "--username":
db_username = args[++i];
break;
case "--pass":
case "--password":
db_password = args[++i];
break;
case "-n":
case "--name":
db_name = args[++i];
break;
case "--port":
try
{
db_port = Convert.ToInt32(args[++i]);
}
catch (Exception e)
{
Console.WriteLine("--port must be a number");
}
break;
default:
i--;
db_breaker = true;
break;
}
}
break;
case "--settings":
bool settings_breaker = false;
while (!settings_breaker)
{
if (i + 2 < args.Length)
{
switch (args[++i])
{
case "--qp":
case "--quartus_path":
quartus_path = args[++i];
break;
default:
i--;
settings_breaker = true;
break;
}
}
else
{
settings_breaker = true;
}
}
break;
default:
Console.WriteLine($"Argument {args[i]} does not exist. Check the spelling or check graph generator numbers\n");
break;
}
}
#endregion
Console.WriteLine(quartus_path);
}
}
}
\ No newline at end of file
{
"profiles": {
"Broker": {
"commandName": "Project",
"commandLineArgs": "--project --name s --location sd --open --create --erase --graph c 3 5 --queue_type f --queue_position fj --arbiter_type sdfj --algorithm sdfjk --info_width sdf --queue_length sdf -v --quartus --device lkfjsdklf --database --ip fj --username klsdf --password lksdf --name dsjkf --port sdf --settings --quartus_path sdljkfsldfj"
}
}
}
\ No newline at end of file
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Broker/1.0.0": {
"dependencies": {
"System.Security.Cryptography.ProtectedData": "9.0.2"
},
"runtime": {
"Broker.dll": {}
}
},
"System.Security.Cryptography.ProtectedData/9.0.2": {
"runtime": {
"lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.225.6610"
}
}
}
}
},
"libraries": {
"Broker/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"System.Security.Cryptography.ProtectedData/9.0.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+z9JWtU9di45tW/w6zpuJms4SnAAqKY2Usmmxs7MpOhxWoIeR2pKl1vEkaFbEx52ZfrMFcZXsFe+8WERMozzGg==",
"path": "system.security.cryptography.protecteddata/9.0.2",
"hashPath": "system.security.cryptography.protecteddata.9.0.2.nupkg.sha512"
}
}
}
\ No newline at end of file
File added
File added
File added
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
\ No newline at end of file
File added
{
"format": 1,
"restore": {
"D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj": {}
},
"projects": {
"D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
"projectName": "Broker",
"projectPath": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
"packagesPath": "C:\\Users\\Serha\\.nuget\\packages\\",
"outputPath": "D:\\Project1718\\Microservice\\Broker\\Broker\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Serha\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"System.Security.Cryptography.ProtectedData": {
"target": "Package",
"version": "[9.0.2, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Serha\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.2</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Serha\.nuget\packages\" />
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
\ No newline at end of file
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Broker")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+36bd3217a4e6a661467f138ea6e903ae2ab690b6")]
[assembly: System.Reflection.AssemblyProductAttribute("Broker")]
[assembly: System.Reflection.AssemblyTitleAttribute("Broker")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Создано классом WriteCodeFragment MSBuild.
164aa339aa5c02fff256d960be8c8a0193fc8384fd63fee486433b40d95b3a44
is_global = true
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Broker
build_property.ProjectDir = D:\Project1718\Microservice\Broker\Broker\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
File added
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment