Go to file
Piotr Rogowski 438142eab5
Move Table code
2024-03-16 21:14:18 +01:00
.github Bump codecov/codecov-action from 3 to 4 (#7) 2024-02-02 08:57:58 +01:00
.vscode Turn on eagerError 2023-12-08 08:59:29 +01:00
example Update README with example 2023-12-08 09:08:40 +01:00
lib Move Table code 2024-03-16 21:14:18 +01:00
scripts Improve curve parsing 2024-02-20 20:10:30 +01:00
test Improve table parsing 2024-02-20 20:17:28 +01:00
.gitignore Initial commit 2023-09-27 13:19:33 +02:00
.metadata Initial commit 2023-09-27 13:19:33 +02:00
LICENSE Initial commit 2023-09-27 13:19:33 +02:00
README.md Update README with example 2023-12-08 09:08:40 +01:00
analysis_options.yaml Initial commit 2023-09-27 13:19:33 +02:00
pubspec.yaml Improve curve parsing 2024-02-20 20:10:30 +01:00

README.md

codecov

HyperTuner INI parser

INI parser for HyperTuner written in Dart.

Roadmap

Checkout Roadmap issue: https://github.com/hyper-tuner/ini_parser/issues/2

Example usage

from example/save_as_json.dart:

import 'dart:convert';
import 'dart:io';

import 'package:ini_parser/ini_parser.dart';
import 'package:path/path.dart' as p;

void main() async {
  final timer = Stopwatch()..start();
  const fileNames = [
    {
      'ecosystem': 'speeduino',
      'name': '202207',
    },
    {
      'ecosystem': 'fome',
      'name': 'fome_proteus_f4',
    },
  ];

  for (final fileName in fileNames) {
    final raw = File(
      p.join(
        Directory.current.path,
        'test/data/${fileName['ecosystem']}/ini/${fileName['name']}.ini',
      ),
    ).readAsStringSync();
    final config = await INIParser(raw).parse();
    final json = const JsonEncoder.withIndent('  ').convert(config);

    File(
      p.join(
        Directory.current.path,
        'test/data/${fileName['ecosystem']}/json/${fileName['name']}.json',
      ),
    ).writeAsStringSync(json);
  }

  // ignore: avoid_print
  print('Done in ${timer.elapsedMilliseconds}ms');
}

Compile and run:

dart compile exe example/save_as_json.dart

./example/save_as_json