~ruther/Nostale-Anonymizer

deb634c61debbcc8537401a43b1955a31c5ae8ea — František Boháček 2 years ago 879aafd
feat: process files from cli
M src/Anonymizer.CLI/Anonymizer.CLI.csproj => src/Anonymizer.CLI/Anonymizer.CLI.csproj +15 -0
@@ 4,6 4,21 @@
        <TargetFramework>net7.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <OutputType>Exe</OutputType>
    </PropertyGroup>

    <ItemGroup>
      <PackageReference Include="CommandLineParser" Version="2.9.1" />
      <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
      <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
      <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
      <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
      <PackageReference Include="NosSmooth.Packets" Version="3.3.1" />
      <PackageReference Include="NosSmooth.PacketSerializer" Version="2.2.1" />
    </ItemGroup>

    <ItemGroup>
      <ProjectReference Include="..\Anonymizer\Anonymizer.csproj" />
    </ItemGroup>

</Project>

A src/Anonymizer.CLI/Options.cs => src/Anonymizer.CLI/Options.cs +33 -0
@@ 0,0 1,33 @@
//
//  Options.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using CommandLine;

namespace Anonymizer.CLI;

/// <summary>
/// CLI Options.
/// </summary>
public class Options
{
    /// <summary>
    /// Gets or sets the input path.
    /// </summary>
    [Option('i', "input")]
    public string Input { get; set; } = "input.log";

    /// <summary>
    /// Gets or sets the output path.
    /// </summary>
    [Option('o', "output")]
    public string Output { get; set; } = "output.log";

    /// <summary>
    /// Gets or sets the config path.
    /// </summary>
    [Option('c', "config")]
    public string Config { get; set; } = "config.json";
}
\ No newline at end of file

A src/Anonymizer.CLI/Program.cs => src/Anonymizer.CLI/Program.cs +91 -0
@@ 0,0 1,91 @@
//
//  Program.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using Anonymizer.Extensions;
using Anonymizer.Filters;
using Anonymizer.Sinks;
using CommandLine;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using NosSmooth.PacketSerializer.Extensions;
using NosSmooth.PacketSerializer.Packets;

namespace Anonymizer.CLI;

/// <summary>
/// A main class.
/// </summary>
public static class Program
{
    /// <summary>
    /// A main method.
    /// </summary>
    /// <param name="args">The cli arguments.</param>
    /// <returns>The exit code.</returns>
    public static int Main(string[] args)
    {
        return Parser.Default.ParseArguments<Options>(args)
            .MapResult
            (
                options => MakeAsync
                        (new FileInfo(options.Input), new FileInfo(options.Output), new FileInfo(options.Config))
                    .GetAwaiter().GetResult(),
                _ => 1
            );
    }

    private static async Task<int> MakeAsync(FileInfo input, FileInfo output, FileInfo config)
    {
        if (!input.Exists)
        {
            Console.Error.WriteLine("The input file does not exist.");
            return 1;
        }

        if (output.Exists)
        {
            Console.Error.WriteLine("The output file already exists.");
            return 1;
        }

        if (!config.Exists)
        {
            Console.Error.WriteLine($"The config file {config.FullName} does not exist.");
            return 1;
        }

        IConfigurationRoot configuration = new ConfigurationBuilder()
            .AddJsonFile(config.FullName)
            .Build();

        var services = new ServiceCollection()
            .Configure<HeaderFilterOptions>(configuration.GetSection("HeaderFilter"))
            .Configure<FileSinkOptions>(configuration.GetSection("PacketFile"))
            .AddPacketSerialization()
            .AddAnonymizer()
            .BuildServiceProvider();

        services.GetRequiredService<IPacketTypesRepository>().AddDefaultPackets();
        var processor = services.GetRequiredService<PacketProcessor>();
        using var fileSink = new FileSink
        (
            input.FullName,
            output.FullName,
            services.GetRequiredService<IOptions<FileSinkOptions>>().Value
        );

        var result = await processor.ProcessSourceDestination(fileSink, fileSink);
        if (!result.IsSuccess)
        {
            Console.WriteLine(result.Error);
        }

        return 0;
    }
}
\ No newline at end of file

Do not follow this link