113 lines
3.6 KiB
Python
113 lines
3.6 KiB
Python
#! /usr/bin/env python3
|
|
"""
|
|
@file objects.py
|
|
@brief Part of the Mission Information Base Exporter for the SOURCE project by KSat.
|
|
@details
|
|
Object exporter.
|
|
To use MySQLdb, run pip install mysqlclient or install in IDE.
|
|
On Windows, Build Tools installation might be necessary
|
|
@data 21.11.2019
|
|
"""
|
|
import datetime
|
|
|
|
from fsfwgen.objects.objects import sql_object_exporter, ObjectDefinitionParser, write_translation_file, \
|
|
export_object_file, write_translation_header_file
|
|
from fsfwgen.utility.printer import PrettyPrinter
|
|
from fsfwgen.utility.file_management import copy_file, move_file
|
|
|
|
from definitions import BspType, DATABASE_NAME
|
|
|
|
DATE_TODAY = datetime.datetime.now()
|
|
DATE_STRING_FULL = DATE_TODAY.strftime("%Y-%m-%d %H:%M:%S")
|
|
|
|
GENERATE_CSV = True
|
|
MOVE_CSV = True
|
|
|
|
GENERATE_CPP = True
|
|
COPY_CPP = True
|
|
|
|
GENERATE_HEADER = True
|
|
|
|
BSP_SELECT = BspType.BSP_Q7S
|
|
BSP_DIR_NAME = BSP_SELECT.value
|
|
if BSP_SELECT == BspType.BSP_Q7S or BSP_SELECT == BspType.BSP_LINUX_BOARD:
|
|
FSFW_CONFIG_ROOT = f"../../linux/fsfwconfig"
|
|
else:
|
|
FSFW_CONFIG_ROOT = f"../../{BSP_DIR_NAME}/fsfwconfig"
|
|
|
|
EXPORT_TO_SQL = True
|
|
|
|
CPP_COPY_DESTINATION = f"{FSFW_CONFIG_ROOT}/objects/"
|
|
CSV_MOVE_DESTINATION = "../"
|
|
CPP_FILENAME = "translateObjects.cpp"
|
|
CPP_H_FILENAME = "translateObjects.h"
|
|
CSV_OBJECT_FILENAME = f"{BSP_SELECT.value}_objects.csv"
|
|
FILE_SEPARATOR = ";"
|
|
|
|
|
|
OBJECTS_PATH = f"{FSFW_CONFIG_ROOT}/objects/systemObjectList.h"
|
|
FRAMEWORK_OBJECT_PATH = "../../fsfw/objectmanager/frameworkObjects.h"
|
|
COMMON_OBJECTS_PATH = "../../common/config/commonObjects.h"
|
|
OBJECTS_DEFINITIONS = [OBJECTS_PATH, FRAMEWORK_OBJECT_PATH, COMMON_OBJECTS_PATH]
|
|
|
|
SQL_DELETE_OBJECTS_CMD = """
|
|
DROP TABLE IF EXISTS Objects
|
|
"""
|
|
|
|
SQL_CREATE_OBJECTS_CMD = """
|
|
CREATE TABLE IF NOT EXISTS Objects(
|
|
id INTEGER PRIMARY KEY,
|
|
objectid TEXT,
|
|
name TEXT
|
|
)
|
|
"""
|
|
|
|
SQL_INSERT_INTO_OBJECTS_CMD = """
|
|
INSERT INTO Objects(objectid, name)
|
|
VALUES(?,?)
|
|
"""
|
|
|
|
|
|
def main():
|
|
print("Parsing objects: ")
|
|
list_items = parse_objects()
|
|
handle_file_export(list_items)
|
|
if EXPORT_TO_SQL:
|
|
print("ObjectParser: Exporting to SQL")
|
|
sql_object_exporter(
|
|
object_table=list_items, delete_cmd=SQL_DELETE_OBJECTS_CMD, insert_cmd=SQL_INSERT_INTO_OBJECTS_CMD,
|
|
create_cmd=SQL_CREATE_OBJECTS_CMD, db_filename=f"../{DATABASE_NAME}"
|
|
)
|
|
|
|
|
|
def parse_objects():
|
|
# fetch objects
|
|
object_parser = ObjectDefinitionParser(OBJECTS_DEFINITIONS)
|
|
subsystem_definitions = object_parser.parse_files()
|
|
# id_subsystem_definitions.update(framework_subsystem_definitions)
|
|
list_items = sorted(subsystem_definitions.items())
|
|
PrettyPrinter.pprint(list_items)
|
|
print("ObjectParser: Number of objects: ", len(list_items))
|
|
return list_items
|
|
|
|
|
|
def handle_file_export(list_items):
|
|
if GENERATE_CPP:
|
|
print("ObjectParser: Generating translation C++ file.")
|
|
write_translation_file(filename=CPP_FILENAME, list_of_entries=list_items, date_string_full=DATE_STRING_FULL)
|
|
if COPY_CPP:
|
|
print("ObjectParser: Copying object file to " + CPP_COPY_DESTINATION)
|
|
copy_file(CPP_FILENAME, CPP_COPY_DESTINATION)
|
|
if GENERATE_HEADER:
|
|
write_translation_header_file(filename=CPP_H_FILENAME)
|
|
copy_file(filename=CPP_H_FILENAME, destination=CPP_COPY_DESTINATION)
|
|
if GENERATE_CSV:
|
|
print("ObjectParser: Generating text export.")
|
|
export_object_file(filename=CSV_OBJECT_FILENAME, object_list=list_items, file_separator=FILE_SEPARATOR)
|
|
if MOVE_CSV:
|
|
move_file(file_name=CSV_OBJECT_FILENAME, destination=CSV_MOVE_DESTINATION)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|