 b908275354
			
		
	
	
		b908275354
		
			
		
	
	
	
	
		
			
			* fix some broken info.json files * optimize our jsonschema using refs * fix formatting after vscode broke it * make flake8 happy * cleanup * make our schema validation more compact and flexible
		
			
				
	
	
		
			74 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Functions that help us generate and use info.json files.
 | |
| """
 | |
| import json
 | |
| from collections.abc import Mapping
 | |
| from pathlib import Path
 | |
| 
 | |
| import hjson
 | |
| import jsonschema
 | |
| from milc import cli
 | |
| 
 | |
| 
 | |
| def json_load(json_file):
 | |
|     """Load a json file from disk.
 | |
| 
 | |
|     Note: file must be a Path object.
 | |
|     """
 | |
|     try:
 | |
|         return hjson.load(json_file.open(encoding='utf-8'))
 | |
| 
 | |
|     except json.decoder.JSONDecodeError as e:
 | |
|         cli.log.error('Invalid JSON encountered attempting to load {fg_cyan}%s{fg_reset}:\n\t{fg_red}%s', json_file, e)
 | |
|         exit(1)
 | |
| 
 | |
| 
 | |
| def load_jsonschema(schema_name):
 | |
|     """Read a jsonschema file from disk.
 | |
|     """
 | |
|     if Path(schema_name).exists():
 | |
|         return json_load(schema_name)
 | |
| 
 | |
|     schema_path = Path(f'data/schemas/{schema_name}.jsonschema')
 | |
| 
 | |
|     if not schema_path.exists():
 | |
|         schema_path = Path('data/schemas/false.jsonschema')
 | |
| 
 | |
|     return json_load(schema_path)
 | |
| 
 | |
| 
 | |
| def create_validator(schema):
 | |
|     """Creates a validator for the given schema id.
 | |
|     """
 | |
|     schema_store = {}
 | |
| 
 | |
|     for schema_file in Path('data/schemas').glob('*.jsonschema'):
 | |
|         schema_data = load_jsonschema(schema_file)
 | |
|         if not isinstance(schema_data, dict):
 | |
|             cli.log.debug('Skipping schema file %s', schema_file)
 | |
|             continue
 | |
|         schema_store[schema_data['$id']] = schema_data
 | |
| 
 | |
|     resolver = jsonschema.RefResolver.from_schema(schema_store['qmk.keyboard.v1'], store=schema_store)
 | |
| 
 | |
|     return jsonschema.Draft7Validator(schema_store[schema], resolver=resolver).validate
 | |
| 
 | |
| 
 | |
| def validate(data, schema):
 | |
|     """Validates data against a schema.
 | |
|     """
 | |
|     validator = create_validator(schema)
 | |
| 
 | |
|     return validator(data)
 | |
| 
 | |
| 
 | |
| def deep_update(origdict, newdict):
 | |
|     """Update a dictionary in place, recursing to do a depth-first deep copy.
 | |
|     """
 | |
|     for key, value in newdict.items():
 | |
|         if isinstance(value, Mapping):
 | |
|             origdict[key] = deep_update(origdict.get(key, {}), value)
 | |
| 
 | |
|         else:
 | |
|             origdict[key] = value
 | |
| 
 | |
|     return origdict
 |