Source code for romsearch.util.io

import json
import os
import zipfile

import xmltodict
import yaml


class DumperEdit(yaml.Dumper):

    def increase_indent(self, flow=False, indentless=False):
        return super(DumperEdit, self).increase_indent(flow, False)

    def write_line_break(self, data=None):
        super().write_line_break(data)

        if len(self.indents) == 1:
            super().write_line_break()


[docs] def load_yml(f): """Load YAML file""" with open(f, "r") as file: config = yaml.safe_load(file) return config
[docs] def save_yml(f, data): """Save YAML file""" with open(f, "w") as file: yaml.dump( data, file, Dumper=DumperEdit, default_flow_style=False, sort_keys=False, indent=2, )
[docs] def unzip_file( zip_file_name, out_dir, ): """Unzip a file""" if not os.path.exists(out_dir): os.makedirs(out_dir) out_dir = str(out_dir) with zipfile.ZipFile(zip_file_name, "r") as zip_file: # Get the names of all the files we're going to extract unzipped_files = zip_file.namelist() # And extract zip_file.extractall(out_dir) return unzipped_files
[docs] def load_json(file): """Load json file""" with open(file, "r", encoding="utf-8") as f: j = json.load(f) return j
[docs] def save_json( data, out_file, sort_key=None, ): """Save json in a pretty way Args: data (dict): Data to be saved out_file (str): Path to JSON file sort_key (str): Key within each dictionary entry to sort by. Default is None, which will not sort. """ # Optionally sort this by name if sort_key is not None: keys = list(data[sort_key].keys()) keys.sort() sorted_data = {key: data[sort_key][key] for key in keys} data[sort_key] = sorted_data with open(out_file, "w", encoding="utf-8") as f: json.dump( data, f, ensure_ascii=False, indent=4, )
[docs] def get_dat( dat_file_name, ): """Parse the dat file to a raw dictionary from a zip file""" with open(dat_file_name, "r") as f: dat = xmltodict.parse(f.read(), attr_prefix="") return dat
[docs] def format_dat(dat): """Format dat into a nice dictionary""" rom_dict = {} rom_data = dat["datafile"]["game"] for rom in rom_data: rom_dict[rom["name"]] = rom return rom_dict