1
0
mirror of https://github.com/Melon-Bread/RetroUFO synced 2024-11-24 16:28:30 -05:00

Maybe instead of stressing about threads I should make sure my logic is sound.

This commit is contained in:
Rain Clark 2019-03-05 09:27:48 -05:00
parent e2dcf08cd5
commit 30f68a3521

View File

@ -10,7 +10,6 @@ __license__ = "MIT"
import os import os
import platform import platform
import sys import sys
import time
import zipfile import zipfile
from shutil import rmtree from shutil import rmtree
from urllib.request import urlretrieve from urllib.request import urlretrieve
@ -48,23 +47,27 @@ class GrabThread(QThread):
self.extract_cores(self.location) self.extract_cores(self.location)
pass pass
def create_dir(self, _name):
if not os.path.isdir(_name):
os.makedirs(_name)
def obtain_core_list(self, _platform, _architecture):
urlretrieve(
'{}/{}/{}/latest/.index-extended'.format(
URL, _platform, _architecture), 'cores/index')
self.add_to_log.emit('Obtained core index!\n')
def download_cores(self, _platform, _architecture): def download_cores(self, _platform, _architecture):
""" Downloads every core to the working directory """ """ Downloads every core to the working directory """
cores = [] cores = []
# Makes core directory to store archives if needed # Makes core directory to store archives if needed
if not os.path.isdir('cores'): self.create_dir("cores")
os.makedirs("cores")
time.sleep(1) # TODO: Do not leave this here! Find a way to wait for the core dir to be made!
# Downloads a list of all the cores available # Downloads a list of all the cores available
urlretrieve( self.obtain_core_list(_platform, _architecture)
'{}/{}/{}/latest/.index-extended'.format(
URL, _platform, _architecture), 'cores/index')
time.sleep(1) # TODO: Do not leave this here! Find a way to wait for the index to download!
self.add_to_log.emit('Obtained core index!\n')
# Adds all the core's file names to a list # Adds all the core's file names to a list
core_index = open('cores/index') core_index = open('cores/index')
@ -180,6 +183,8 @@ class Form(QDialog):
def grab_cores(self): def grab_cores(self):
""" Where the magic happens """ """ Where the magic happens """
if not self.chkboxKeepDownload.isChecked():
self.clean_up()
# TODO: Lock (disable) the UI elements while grabbing cores # TODO: Lock (disable) the UI elements while grabbing cores
@ -191,8 +196,6 @@ class Form(QDialog):
self.grab.add_to_log.connect(self.update_log) self.grab.add_to_log.connect(self.update_log)
self.grab.start() self.grab.start()
if not self.chkboxKeepDownload.isChecked():
self.clean_up()
def get_platform(self): def get_platform(self):
""" Gets the Platform and Architecture if not supplied """ """ Gets the Platform and Architecture if not supplied """