123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534 |
- #
- # Copyright (c) Contributors to the Open 3D Engine Project.
- # For complete copyright and license terms please see the LICENSE at the root of this distribution.
- #
- # SPDX-License-Identifier: Apache-2.0 OR MIT
- #
- import os
- import argparse
- import copy
- import time
- import tkinter as tk
- from tkinter import messagebox
- from tkinter import filedialog
- from config_data import ConfigData
- from keystore_settings import KeystoreSettings
- import discovery
- from wait_dialog import WaitDialog
- from keystore_generator import KeystoreGenerator
- from project_generator import ProjectGenerator
- DEFAULT_APG_CONFIG_FILE="apg_config.json"
- class TkApp(tk.Tk):
- """
- This is the main UI of the Android Project Generator, known as APG for short.
- """
- def __init__(self, config: ConfigData, config_file_path: str = ""):
- super().__init__()
- self.title("Android Project Generator")
- # Display the main window wherever the mouse is located.
- x, y = self.winfo_pointerx(), self.winfo_pointery()
- self.geometry(f"+{x}+{y}")
- # Set the padding for all label frames
- self._frame_pad_x = 4
- self._frame_pad_y = 4
- # Set the main widget's column 1 as the target expand column
- self.columnconfigure(0, weight=1)
- self._config = config
- self._config_file_path_var = tk.StringVar()
- self._config_file_path_var.set(config_file_path)
- self._init_load_save_ui()
- self._init_keystore_settings_ui()
- self._init_sdk_settings_ui()
- self._init_additional_build_settings_ui()
- # Add the project generation button.
- btn = tk.Button(self, text="Generate Project", command=self.on_generate_project_button)
- btn.grid()
- self._init_report_ui()
- def _init_load_save_ui(self):
- apg_settings_frame = tk.LabelFrame(self, text="Android Project Generator Settings")
- apg_settings_frame.columnconfigure(0, weight=0)
- apg_settings_frame.columnconfigure(1, weight=1)
- apg_settings_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y, ipadx=2, ipady=2, sticky=tk.EW)
- self._config_file_path_var, _, row_number = self._add_label_entry(apg_settings_frame,
- "Config Path",
- self._config_file_path_var.get(),
- entry_colspan=1,
- label_width=28,
- entry_read_only=True)
- btn = tk.Button(apg_settings_frame, text="Load", command=self.on_load_settings_button)
- btn.grid(row=row_number, column=2, padx=2, sticky=tk.E)
- btn = tk.Button(apg_settings_frame, text="Save", command=self.on_save_settings_button)
- btn.grid(row=row_number, column=3, padx=2, sticky=tk.E)
- def _init_keystore_settings_ui(self):
- # Create a button widget with an event handler.
- keystore_frame = tk.LabelFrame(self, text="Keystore Settings")
- keystore_frame.columnconfigure(0, weight=1)
- keystore_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y, sticky=tk.EW)
- # Let's add the fields that make the Distinguished Name.
- self._init_keystore_distinguished_name_ui(keystore_frame, 0)
- # Now let's add the rest of the keystore fields.
- keystore_details_frame = tk.LabelFrame(keystore_frame)
- keystore_details_frame.columnconfigure(0, weight=0)
- keystore_details_frame.columnconfigure(1, weight=1)
- keystore_details_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y,row=1, column=0, sticky=tk.EW)
- ks_data = self._config.keystore_settings
- self._keystore_validity_days_var = self._add_label_entry(keystore_details_frame, "Validity Days", ks_data.validity_days, entry_colspan=3, label_width=28)[0]
- self._keystore_key_size_var = self._add_label_entry(keystore_details_frame, "Key Size", ks_data.key_size, entry_colspan=3)[0]
- self._keystore_app_key_alias_var = self._add_label_entry(keystore_details_frame, "App Key Alias", ks_data.key_alias, entry_colspan=3)[0]
- self._keystore_app_key_password_var = self._add_label_entry(keystore_details_frame, "App Key Password", ks_data.key_password, entry_colspan=3)[0]
- self._keystore_keystore_password_var = self._add_label_entry(keystore_details_frame, "Keystore Password", ks_data.keystore_password, entry_colspan=3)[0]
- self._keystore_file_var, _, row_number = self._add_label_entry(keystore_details_frame, "Keystore File", ks_data.keystore_file)
- btn = tk.Button(keystore_details_frame, text="...", command=self.on_select_keystore_file_button)
- btn.grid(row=row_number, column=3)
- btn = tk.Button(keystore_frame, text="Create Keystore", command=self.on_create_keystore_button)
- btn.grid()
- def _init_keystore_distinguished_name_ui(self, parent_frame: tk.Frame, row:int):
- dn_frame = tk.LabelFrame(parent_frame, text='Distinguished Name Settings')
- dn_frame.columnconfigure(0, weight=0)
- dn_frame.columnconfigure(1, weight=1)
- dn_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y,row=row, sticky=tk.EW)
- ks_data = self._config.keystore_settings
- self._dn_country_code_var = self._add_label_entry(dn_frame, f"Country Code", ks_data.dn_country_code, label_width=28)[0]
- self._dn_company_var = self._add_label_entry(dn_frame, f"Company (aka Organization)", ks_data.dn_organization)[0]
- self._dn_organizational_unit_var = self._add_label_entry(dn_frame, f"Organizational Unit", ks_data.dn_organizational_unit)[0]
- self._dn_app_name_var = self._add_label_entry(dn_frame, f"App Name (aka Common Name)", ks_data.dn_common_name)[0]
- def _init_sdk_settings_ui(self):
- sdk_frame = tk.LabelFrame(self, text="Android SDK/NDK Settings")
- sdk_frame.columnconfigure(0, weight=0)
- sdk_frame.columnconfigure(1, weight=1)
- sdk_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y,sticky=tk.EW)
- cf = self._config
- self._android_ndk_version_var = self._add_label_entry(sdk_frame, "NDK Version", cf.android_ndk_version, entry_colspan=3, label_width=28)[0]
- self._android_sdk_api_level_var = self._add_label_entry(sdk_frame, "SDK API Level", cf.android_sdk_api_level, entry_colspan=3)[0]
- self._android_sdk_path_var, _, row_number = self._add_label_entry(sdk_frame, "SDK Path", cf.android_sdk_path)
- sdk_path_btn = tk.Button(sdk_frame, text="...", command=self.on_select_sdk_path_button)
- sdk_path_btn.grid(row=row_number, column=2)
- # Add the meta quest project checkbox
- self._android_quest_flag_var, _, row_number = self._add_checkbox(sdk_frame, "This is a Meta Quest project", cf.is_meta_quest_project)
-
- def _init_additional_build_settings_ui(self):
- build_settings_frame = tk.LabelFrame(self, text="Additional Build Settings")
- build_settings_frame.columnconfigure(0, weight=0)
- build_settings_frame.columnconfigure(1, weight=1)
- build_settings_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y,sticky=tk.EW)
- cf = self._config
- self._extra_cmake_args_var = self._add_label_entry(build_settings_frame, "Extra CMake Arguments", cf.extra_cmake_args, entry_colspan=3, label_width=28)[0]
- def _add_label_entry(self, parent_frame: tk.Frame, lbl_name: str, default_value: str = "", entry_colspan=1, label_width=None, entry_read_only=False) -> tuple[tk.StringVar, tk.Entry, int]:
- """
- Returns the tuple (string_var, entry, row_frame),
- where @string_var is the TK StringVar bound to the Entry widget,
- @entry is the Entry widget,
- @row The grid row number of inserted entry.
- """
- lbl = tk.Label(parent_frame, text=lbl_name, anchor=tk.W, width=label_width)
- lbl.grid(column=0, padx=5, pady=2, sticky=tk.W)
- row = lbl.grid_info().get("row")
- entry = tk.Entry(parent_frame, justify='right',state=tk.DISABLED if entry_read_only else tk.NORMAL)
- entry.grid(row=row, column=1, padx=5, pady=2, sticky=tk.EW, columnspan=entry_colspan)
- string_var = tk.StringVar()
- string_var.set(default_value)
- entry["textvariable"] = string_var
- return string_var, entry, row
- def _add_checkbox(self, parent_frame: tk.Frame, lbl_name: str, default_value: bool = False) -> tuple[tk.BooleanVar, tk.Checkbutton, int]:
- """
- Returns the tuple (BooleanVar, check_box, row_frame),
- where @BooleanVar is the TK BooleanVar bound to the CheckBox widget,
- @check_box is the Checkbutton widget,
- @row The grid row number of inserted entry.
- """
- bool_var = tk.BooleanVar()
- bool_var.set(default_value)
- # Create a Checkbutton widget and bind it to the variable.
- checkbutton = tk.Checkbutton(parent_frame, text=lbl_name, variable=bool_var)
- checkbutton.grid(sticky=tk.W)
- row_number = checkbutton.grid_info().get("row")
- return bool_var, checkbutton, row_number
- def _init_report_ui(self):
- """
- Instanties the scrollable text widget where this app will report
- all the stdout and stderr string produced by all subprocess invoked
- by this application.
- """
- operations_report_frame = tk.LabelFrame(self, text="Operations Report")
- operations_report_frame.columnconfigure(0, weight=1)
- operations_report_frame.rowconfigure(0, weight=1)
- operations_report_frame.grid(padx=self._frame_pad_x, pady=self._frame_pad_y,sticky=tk.NSEW)
- last_row = operations_report_frame.grid_info().get("row")
- self.rowconfigure(last_row, weight=1)
- self._report_text_widget = tk.Text(operations_report_frame, wrap=tk.WORD, borderwidth=2, relief=tk.SUNKEN)
- self._report_scrollbar_widget = tk.Scrollbar(operations_report_frame, orient=tk.VERTICAL, command=self._report_text_widget.yview)
- # Configure the Text widget and the Scrollbar widget.
- self._report_text_widget.configure(yscrollcommand=self._report_scrollbar_widget.set)
- self._report_text_widget.grid(sticky=tk.NSEW)
- self._report_scrollbar_widget.grid(row=0, column=1,sticky=tk.NSEW)
- def _get_time_now_str(self) -> str:
- """
- @returns The current local time as a formatted string.
- """
- time_secs = time.time()
- time_st = time.localtime(time_secs)
- no_millis_str = time.strftime("%H:%M:%S", time_st)
- fractional_secs = int(str(time_secs).split(".")[1])
- return f"{no_millis_str}.{fractional_secs}"
- def _append_log_message(self, msg: str):
- """
- Append the msg with a timestamp to the report widget, and automatically scrolls to
- the bottom of the report.
- """
- timestamp_str = self._get_time_now_str()
- self._report_text_widget.insert(tk.END, f">>{timestamp_str}>>\n{msg}\n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n")
- self._report_text_widget.see(tk.END) #scroll to the end.
- def create_keystore_settings_from_widgets(self) -> KeystoreSettings:
- """
- @returns A new KeystoreSettings object, where all the values are read from the
- current content in the UI text/entry fields.
- """
- ks = KeystoreSettings()
- ks.keystore_file = self._keystore_file_var.get()
- ks.keystore_password = self._keystore_keystore_password_var.get()
- ks.key_alias = self._keystore_app_key_alias_var.get()
- ks.key_password = self._keystore_app_key_password_var.get()
- ks.key_size = self._keystore_key_size_var.get()
- ks.validity_days = self._keystore_validity_days_var.get()
- ks.dn_common_name = self._dn_app_name_var.get()
- ks.dn_organizational_unit = self._dn_organizational_unit_var.get()
- ks.dn_organization = self._dn_company_var.get()
- ks.dn_country_code = self._dn_country_code_var.get()
- return ks
- def create_config_data_from_widgets(self) -> ConfigData:
- """
- @returns A new ConfigData object, where all the values are read from the
- current content in the UI text/entry fields.
- """
- config = copy.deepcopy(self._config)
- config.android_sdk_path = self._android_sdk_path_var.get()
- config.android_ndk_version = self._android_ndk_version_var.get()
- config.android_sdk_api_level = self._android_sdk_api_level_var.get()
- config.is_meta_quest_project = self._android_quest_flag_var.get()
- config.extra_cmake_args = self._extra_cmake_args_var.get()
- config.keystore_settings = self.create_keystore_settings_from_widgets()
- return config
- def update_widgets_from_keystore_settings(self, ks: KeystoreSettings):
- self._keystore_file_var.set(ks.keystore_file)
- self._keystore_keystore_password_var.set(ks.keystore_password)
- self._keystore_app_key_alias_var.set(ks.key_alias)
- self._keystore_app_key_password_var.set(ks.key_password)
- self._keystore_key_size_var.set(ks.key_size)
- self._keystore_validity_days_var.set(ks.validity_days)
- self._dn_app_name_var.set(ks.dn_common_name)
- self._dn_organizational_unit_var.set(ks.dn_organizational_unit)
- self._dn_company_var.set(ks.dn_organization)
- self._dn_country_code_var.set(ks.dn_country_code)
- def update_widgets_from_config(self, config: ConfigData):
- self._android_sdk_path_var.set(config.android_sdk_path)
- self._android_ndk_version_var.set(config.android_ndk_version)
- self._android_sdk_api_level_var.set(config.android_sdk_api_level)
- self._android_quest_flag_var.set(config.is_meta_quest_project)
- self._extra_cmake_args_var.set(config.extra_cmake_args)
- self.update_widgets_from_keystore_settings(config.keystore_settings)
- def on_load_settings_button(self):
- """
- Invoked when the user clicks the `Load Settings` button.
- """
- suggested_file_path = self._config_file_path_var.get()
- if suggested_file_path == "":
- suggested_file_path = os.path.join(self._config.project_path, DEFAULT_APG_CONFIG_FILE)
- initial_dir, initial_file = os.path.split(suggested_file_path)
- filename = filedialog.askopenfilename(
- initialdir=initial_dir,
- initialfile=initial_file,
- title="Load Settings",
- filetypes=[("JSON files", "*.json"), ("All files", "*")],
- defaultextension=".json",
- parent=self
- )
- if (not filename) or (not os.path.isfile(filename)):
- messagebox.showinfo("Invalid Settings File Path", f"The path {filename} is invalid!")
- return
- if not self._config.load_from_json_file(filename):
- messagebox.showerror("File I/O Error", f"Failed to read settings from file:\n{filename}")
- return
- self._config_file_path_var.set(filename)
- messagebox.showinfo("Success!", f"Current settings were loaded from file:\n{filename}")
- self.update_widgets_from_config(self._config)
- def on_save_settings_button(self):
- """
- Invoked when the user clicks the `Save Settings` button.
- """
- configData = self.create_config_data_from_widgets()
- suggested_file_path = self._config_file_path_var.get()
- if suggested_file_path == "":
- suggested_file_path = os.path.join(configData.project_path, DEFAULT_APG_CONFIG_FILE)
- initial_dir, initial_file = os.path.split(suggested_file_path)
- filename = filedialog.asksaveasfilename(
- initialdir=initial_dir,
- initialfile=initial_file,
- title="Save Settings",
- filetypes=[("JSON files", "*.json"), ("All files", "*")],
- defaultextension=".json",
- parent=self
- )
- if (filename is None) or (filename == ""):
- return # Cancelled by user.
- if not configData.save_to_json_file(filename):
- messagebox.showerror("File I/O Error", f"Failed to save settings to file {filename}")
- self._config = configData
- self._config_file_path_var.set(filename)
- messagebox.showinfo("Success!", f"Current settings were saved as file:\n{filename}")
- def _on_user_cancel_task(self):
- """
- This is a callback invoked by self._wait_dialog when the user
- decides to cancel the current operation.
- """
- self._wait_dialog = None
- self._cancel_current_operation()
- self._current_operation = None # Doesn't hurt to force this to None.
- def _tick_operation(self):
- """
- This function will be called periodically while there's an operation running in the background.
- """
- if self._current_operation and self._current_operation.is_finished():
- # The operation completed. Time to close the progress dialog
- # and report the results.
- if self._wait_dialog:
- self._wait_dialog.close()
- self._wait_dialog = None
- self._on_current_operation_finished()
- return
- # Keep ticking, until next time if the operation is finished or the user
- # decides to cancel the current operation.
- if self._wait_dialog:
- self._wait_dialog.on_tick(float(self._tick_delta_ms)/1000.0)
- self.after(self._tick_delta_ms, self._tick_operation)
- def _cancel_current_operation(self):
- """
- This one is called upon user request.
- """
- self._current_operation.cancel()
- report_msg = self._current_operation.get_report_msg()
- self._append_log_message(report_msg)
- messagebox.showinfo("Cancelled By User", f"{self._current_operation.get_basic_description()}\nwas cancelled by user!")
- self._current_operation = None
- def _on_current_operation_finished(self):
- # The current operation is finished. But it could have
- # finished with error or success. Let the user know the outcome.
- report_msg = self._current_operation.get_report_msg()
- self._append_log_message(report_msg)
- if self._current_operation.is_success():
- messagebox.showinfo("Success", f"{self._current_operation.get_basic_description()}\ncompleted succesfully!")
- else:
- messagebox.showerror("Error", f"{self._current_operation.get_basic_description()}\ncompleted with errors!")
- self._current_operation = None
- def on_select_keystore_file_button(self):
- """
- The user clicked the "..." button next to the `Keystore File` field, with the purpose
- of selecting a different keystore file.
- """
- suggested_file_path = self._keystore_file_var.get()
- if suggested_file_path == "":
- # If the user input data is empty, try the cached data.
- suggested_file_path = self._config.keystore_settings.keystore_file
- if suggested_file_path == "":
- # If the cached data is empty, let's try a default
- suggested_file_path = os.path.join(self._config.project_path, "app.keystore")
- initial_dir, initial_file = os.path.split(suggested_file_path)
- filename = filedialog.asksaveasfilename(
- initialdir=initial_dir,
- initialfile=initial_file,
- title="Select Keystore File",
- filetypes=[("keystore files", "*.keystore"), ("All files", "*")],
- defaultextension=".json",
- parent=self
- )
- if (not filename) or (filename == ""):
- messagebox.showerror("Error", f"Invalid Keystore File Path!")
- return
- self._keystore_file_var.set(filename)
- self._config.keystore_settings.keystore_file = filename
- def on_select_sdk_path_button(self):
- """
- The user clicked the "..." button next to the `SDK Path` field, with the purpose
- of selecting a different Android SDK path.
- """
- configData = self.create_config_data_from_widgets()
- initial_dir = configData.android_sdk_path
- directory = filedialog.askdirectory(
- initialdir=initial_dir,
- title="Pick Android SDK Location",
- parent=self
- )
- if (not directory ) or (directory == "") or (not os.path.isdir(directory)):
- messagebox.showerror("Invalid SDK Path", f"The path {directory} is invalid!")
- return
- if not discovery.could_be_android_sdk_directory(directory):
- messagebox.showwarning("Warning", f"The directory:\n{directory}\nDoesn't appear to be an Android SDK directory.")
- configData.android_sdk_path = directory
- self._config = configData
- self.update_widgets_from_config(self._config)
- def on_create_keystore_button(self):
- """
- The user clicked the `Create Keystore` button. Will spawn the required tools to create the keystore.
- """
- ks = self.create_keystore_settings_from_widgets()
- if (not ks.keystore_file) or (ks.keystore_file == ""):
- messagebox.showerror("Error", f"A vaid `Keystore File` is required.")
- return
- if os.path.isfile(ks.keystore_file):
- result = messagebox.askyesno("Attention!", f"Do you want to replace the Keystore File:\n{ks.keystore_file}?")
- if not result:
- return
- else:
- # It's important to delete the existing keystore file, otherwise the java keytool will fail to replace it.
- try:
- os.remove(ks.keystore_file)
- except Exception as err:
- messagebox.showerror("Error", f"Failed to delete keystore file {ks.keystore_file}. Got Exception:\n{err}")
- return
- self._config.keystore_settings = ks
- # Start the in-progress modal dialog.
- def _inner_cancel_cb():
- self._on_user_cancel_task()
- self._wait_dialog = WaitDialog(self, "Creating Keystore.\nThis operation takes around 5 seconds.", _inner_cancel_cb)
- self._tick_delta_ms = 250
- self.after(self._tick_delta_ms, self._tick_operation)
- # Instantiate and start the job.
- self._current_operation = KeystoreGenerator(self._config)
- self._current_operation.start()
- def on_generate_project_button(self):
- """
- The user clicked the `Generate Project` button. Will spawn the required tools to create the android project.
- """
- configData = self.create_config_data_from_widgets()
- # Make sure the keystore file exist.
- ks = configData.keystore_settings
- if (not ks.keystore_file) or (ks.keystore_file == ""):
- messagebox.showerror("Error", f"Can not generate an android project without a valid `Keystore File`.")
- return
- if not os.path.isfile(ks.keystore_file):
- messagebox.showerror("Error", f"The keystore file {ks.keystore_file} doesn't exist.\nPush the `Create Keystore` button to create it.")
- return
- # Start the in-progress modal dialog.
- def _inner_cancel_cb():
- self._on_user_cancel_task()
- self._wait_dialog = WaitDialog(self, "Generating the android project.\nThis operation takes around 30 seconds.", _inner_cancel_cb)
- self._tick_delta_ms = 250
- self.after(self._tick_delta_ms, self._tick_operation)
- # Instantiate and start the job.
- self._config = configData
- self._current_operation = ProjectGenerator(configData)
- self._current_operation.start()
- # class TkApp END
- ######################################################
- if __name__ == "__main__":
- parser = argparse.ArgumentParser(description='Presents a UI that automates the generation of an Android Project and its keystore.')
- parser.add_argument('--engine', '--e', required=True,
- help='Path to the engine root directory.')
- parser.add_argument('--project', '--p', required=True,
- help='Path to the project root directory.')
- parser.add_argument('--build', '--b', required=True,
- help='Path to the build directory.')
- parser.add_argument('--third_party', '--t', required=True,
- help='Path to the 3rd Party root folder.')
- args = parser.parse_args()
- # Check if the project directory contains a json file with configuration data.
- configPath = os.path.join(args.project, DEFAULT_APG_CONFIG_FILE)
- config_data = ConfigData()
- config_data.load_from_json_file(configPath)
- # Discover the location of the keystore file if not defined yet.
- ks = config_data.keystore_settings
- if (not ks.keystore_file) or (ks.keystore_file == ""):
- ks.keystore_file = os.path.join(args.project, "app.keystore")
- # Discover the android sdk path if empty.
- if (config_data.android_sdk_path is None) or (config_data.android_sdk_path == ""):
- config_data.android_sdk_path = discovery.discover_android_sdk_path()
- config_data.engine_path = args.engine
- config_data.project_path = args.project
- config_data.build_path = args.build
- config_data.third_party_path = args.third_party
- app = TkApp(config_data, configPath)
- app.mainloop()
|