Skip to content

Commit

Permalink
Update create_ladder_zip.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FredNoonienSingh authored Dec 5, 2024
1 parent bd98a2f commit b124ab9
Showing 1 changed file with 8 additions and 279 deletions.
287 changes: 8 additions & 279 deletions scripts/create_ladder_zip.py
Original file line number Diff line number Diff line change
@@ -1,283 +1,12 @@
"""
Zips the relevant files and directories so that Bot can be updated
to ladder or tournaments.
TODO: check all files and folders are present before zipping
"""
import os
import platform
import shutil
import site
import zipfile
from os import path, remove, walk
from subprocess import Popen, run
from typing import Dict, List, Tuple

#import yaml

MY_BOT_NAME: str = "HarstemsAunt"
ZIPFILE_NAME: str = "bot.zip"

CONFIG_FILE: str = "config.yml"
ZIP_FILES: List[str] = [
"config.yml",
"config.yaml",
"ladder.py",
"run.py",
"terran_builds.yml",
"terran_builds.yaml",
"protoss_builds.yml",
"protoss_builds.yaml",
"zerg_builds.yml",
"zerg_builds.yaml",
]
if platform.system() == "Windows":
EXCLUDE: list[str] = [
"ares-sc2\\build",
"ares-sc2\\dist",
"ares-sc2\\tests",
"ares-src\\docs",
"map_analyzer\\pickle_gameinfo",
]
FILETYPES_TO_IGNORE: Tuple = (".c", ".so", "pyx", "pyi")
ROOT_DIRECTORY = "./"
else:
EXCLUDE: list[str] = [
"ares-sc2/build",
"ares-sc2/dist",
"ares-sc2/tests",
"ares-sc2/docs",
"map_analyzer/pickle_gameinfo",
]
FILETYPES_TO_IGNORE: Tuple = (".c", ".pyd", "pyx", "pyi")
ROOT_DIRECTORY = "./"

ZIP_DIRECTORIES: Dict[str, Dict] = {
"bot": {"zip_all": True, "folder_to_zip": "bot"},
"ares-sc2": {"zip_all": True, "folder_to_zip": ""},
"python-sc2": {"zip_all": False, "folder_to_zip": "sc2"},
# "sc2_helper": {"zip_all": True, "folder_to_zip": "sc2_helper"},
"SC2MapAnalysis": {"zip_all": False, "folder_to_zip": "map_analyzer"},
"cython-extensions-sc2": {"zip_all": False, "folder_to_zip": "cython_extensions"},
}


def zip_dir(dir_path, zip_file):
"""
Will walk through a directory recursively and add all folders and files to zipfile
@param dir_path:
@param zip_file:
@return:
"""
for root, _, files in walk(dir_path):
if any(exclude in root for exclude in EXCLUDE):
continue
for file in files:
if file.lower().endswith(FILETYPES_TO_IGNORE):
continue
zip_file.write(
path.join(root, file),
path.relpath(path.join(root, file), path.join(dir_path, "..")),
)


def zip_files_and_directories(zipfile_name: str) -> None:
"""
@return:
"""

path_to_zipfile = path.join(ROOT_DIRECTORY, zipfile_name)
# if the zip file already exists remove it
if path.isfile(path_to_zipfile):
remove(path_to_zipfile)
# create a new zip file
zip_file = zipfile.ZipFile(path_to_zipfile, "w", zipfile.ZIP_DEFLATED)

# write directories to the zipfile
for directory, values in ZIP_DIRECTORIES.items():
if values["zip_all"]:
zip_dir(path.join(ROOT_DIRECTORY, directory), zip_file)
else:
path_to_dir = path.join(ROOT_DIRECTORY, directory, values["folder_to_zip"])
zip_dir(path_to_dir, zip_file)

# write individual files
for single_file in ZIP_FILES:
_path: str = path.join(ROOT_DIRECTORY, single_file)
if path.isfile(_path):
zip_file.write(_path, single_file)

# close the zip file
zip_file.close()


def get_library_from_site_packages(library_name, project_directory):
# Find the site packages directory

site_packages_dir = site.getsitepackages()[0]

# Construct the library path
library_path = os.path.join(site_packages_dir, "Lib", "site-packages", library_name)

# Check if the library path exists
if not os.path.exists(library_path):
raise ValueError(f"Library '{library_name}' not found in site packages.")

# Determine the destination directory in the zip file
destination_directory = os.path.join(project_directory, library_name)

# Remove the destination directory if it already exists
if os.path.exists(destination_directory):
shutil.rmtree(destination_directory)

# Copy the library directory into the project directory
shutil.copytree(library_path, destination_directory)


def check_git_status():
"""
Make sure the branch is master and has no uncommitted changes.
Not currently used
@return:
"""
difference = run("git diff", capture_output=True, text=True)
branch_name = run("git rev-parse --abbrev-ref HEAD", capture_output=True, text=True)
assert not difference.stdout, "Uncommitted changes are present"
assert branch_name.stdout.strip() == "master", "This is not the master branch"


def check_config_values():
"""
Make sure debug is False.
"""
config_path: str = path.join(ROOT_DIRECTORY, CONFIG_FILE)
if path.isfile(config_path):
with open(path.join(ROOT_DIRECTORY, CONFIG_FILE), "r") as f:
pass
#config = yaml.safe_load(f)
assert not config["Debug"], "Debug is not False"


def get_zipfile_name() -> str:
"""Attempt to get bot name from config."""
__user_config_location__: str = path.abspath(".")
user_config_path: str = path.join(__user_config_location__, CONFIG_FILE)
zipfile_name = ZIPFILE_NAME
# attempt to get race and bot name from config file if they exist
if path.isfile(user_config_path):
with open(user_config_path) as config_file:
config: dict = yaml.safe_load(config_file)
if MY_BOT_NAME in config:
zipfile_name = f"{config[MY_BOT_NAME]}.zip"
return zipfile_name


def on_error(func, path, exc_info):
"""
Error handler for ``shutil.rmtree``.
If the error is due to an access error (read only file)
it attempts to add write permission and then retries.
If the error is for another reason it re-raises the error.
Usage : ``shutil.rmtree(path, onerror=onerror)``
"""
import stat

# Is the error an access error?
if not os.access(path, os.W_OK):
os.chmod(path, stat.S_IWUSR)
func(path)
else:
raise
import os

def create_zip(zip_filename):
with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:
for root, dirs, files in os.walk('.'):
for file in files:
zipf.write(os.path.join(root, file))

if __name__ == "__main__":
print("Cloning python-sc2...")
destination_directory = os.path.join("../", "python-sc2")
if os.path.exists(destination_directory):
shutil.rmtree(destination_directory, ignore_errors=False, onerror=on_error)

# clone python-sc2
run("git clone https://github.com/august-k/python-sc2", shell=True)
# clone map-analyzer
run("git clone https://github.com/raspersc2/SC2MapAnalysis", shell=True)
# cython extensions
run("git clone https://github.com/AresSC2/cython-extensions-sc2", shell=True)
run("cd cython-extensions-sc2 && poetry build", shell=True)

# clone sc2-helper
# run("git clone https://github.com/danielvschoor/sc2-helper", shell=True)
# # install rust build tools
# run("curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh", shell=True)
# # activate Rust
# run("source $HOME/.cargo/env", shell=True)
# # compile rust code
# run("cd sc2-helper && cargo build --release", shell=True)
# run("cd ..", shell=True)

"""
Move the sc2 helper binary to correct place
"""
# source_file = "sc2-helper/target/release/libsc2_helper.so"
# # Define the destination directory path
# destination_directory = "sc2-helper/sc2_helper/"
# # Define the new name for the file
# new_file_name = "sc2_helper.so"
# # Combine the destination directory path and the new file name
# new_file_path = os.path.join(destination_directory, new_file_name)
# # Move the file to the destination directory with the new name
# shutil.move(source_file, new_file_path)

# print structure out for debugging purposes
current_directory = os.getcwd()
print("Current Directory:", current_directory)

# List all files and directories in the current directory
for item in os.listdir(current_directory):
item_path = os.path.join(current_directory, item)
if os.path.isdir(item_path):
print("Directory:", item)
elif os.path.isfile(item_path):
print("File:", item)

# get name of bot from config if possible (otherwise use default name)
# zipfile_name = get_zipfile_name()
zipfile_name = ZIPFILE_NAME
print("Setting up poetry environment...")
# ensure env is setup and dependencies are installed
p = Popen(["poetry", "install"], cwd=f"{ROOT_DIRECTORY}")
# makes the process wait, otherwise files get zipped before compile is complete
p.communicate()
p_status = p.wait()

# compile the cython code
print("Compiling cython code...")
p = Popen(["poetry", "build"], cwd=f"{ROOT_DIRECTORY}ares-sc2")
# makes the process wait, otherwise files get zipped before compile is complete
p.communicate()
p_status = p.wait()

# at the moment -> ensure debug=False
print("Checking config values...")
check_config_values()

print("Copying sc2 folder from site packages...")

print(f"Zipping files and directories to {zipfile_name}...")
# copy everything we need into a zip file
zip_files_and_directories(zipfile_name)

print(f"Cleaning up...")

destination_directory = os.path.join("./", "python-sc2")
if os.path.exists(destination_directory):
shutil.rmtree(destination_directory, onerror=on_error)
destination_directory = os.path.join("./", "sc2-helper")
if os.path.exists(destination_directory):
shutil.rmtree(destination_directory, onerror=on_error)
destination_directory = os.path.join("./", "SC2MapAnalysis")
if os.path.exists(destination_directory):
shutil.rmtree(destination_directory, onerror=on_error)

print(f"Ladder zip complete.")
zip_filename = "my_project.zip"
create_zip(zip_filename)

0 comments on commit b124ab9

Please sign in to comment.