mirror of
https://github.com/github/codeql.git
synced 2026-04-17 21:14:02 +02:00
37 lines
855 B
Python
Executable File
37 lines
855 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
"""Concerns were raised about performance on Windows with having 2.5 k files for modeling, and it was recommended we join them all together when shipping.
|
|
|
|
This script does that.
|
|
|
|
Workflow when working on the automatic subclass modeling:
|
|
1. split files
|
|
2. do your work
|
|
3. join files
|
|
4. commit your changes
|
|
"""
|
|
|
|
import sys
|
|
import glob
|
|
import os
|
|
|
|
from shared_subclass_functions import *
|
|
|
|
if joined_file.exists():
|
|
sys.exit(f"File {joined_file} already exists")
|
|
|
|
package_data = gather_from_existing()
|
|
as_lists = list()
|
|
for data in package_data.values():
|
|
as_lists.extend(list(t) for t in data)
|
|
as_lists.sort()
|
|
|
|
|
|
to_write = wrap_in_template(as_lists)
|
|
write_data(to_write, joined_file)
|
|
|
|
print("Joined all files into", joined_file)
|
|
|
|
for f in glob.glob(f"{subclass_capture_path}/auto-*.model.yml", recursive=True):
|
|
os.unlink(f)
|