15
15
import tarfile
16
16
import zipfile
17
17
import re
18
- import requests
19
18
if sys .version_info [0 ] == 3 :
20
19
from urllib .request import urlretrieve
21
20
else :
22
21
# Not Python 3 - today, it is most likely to be Python 2
23
22
from urllib import urlretrieve
24
23
25
- dist_dir = 'dist/'
24
+ if 'Windows' in platform .system ():
25
+ import requests
26
+
27
+ current_dir = os .path .dirname (os .path .realpath (__file__ ))
28
+ dist_dir = current_dir + '/dist/'
26
29
27
30
def sha256sum (filename , blocksize = 65536 ):
28
31
hash = hashlib .sha256 ()
@@ -46,7 +49,8 @@ def report_progress(count, blockSize, totalSize):
46
49
47
50
def unpack (filename , destination ):
48
51
dirname = ''
49
- print ('Extracting {0}' .format (filename ))
52
+ print ('Extracting {0}' .format (os .path .basename (filename )))
53
+ sys .stdout .flush ()
50
54
if filename .endswith ('tar.gz' ):
51
55
tfile = tarfile .open (filename , 'r:gz' )
52
56
tfile .extractall (destination )
@@ -72,26 +76,26 @@ def get_tool(tool):
72
76
local_path = dist_dir + archive_name
73
77
url = tool ['url' ]
74
78
#real_hash = tool['checksum'].split(':')[1]
75
- if 'CYGWIN_NT' in sys_name :
76
- ctx = ssl .create_default_context ()
77
- ctx .check_hostname = False
78
- ctx .verify_mode = ssl .CERT_NONE
79
79
if not os .path .isfile (local_path ):
80
80
print ('Downloading ' + archive_name );
81
+ sys .stdout .flush ()
81
82
if 'CYGWIN_NT' in sys_name :
82
- urlretrieve (url , local_path , report_progress ,context = ctx )
83
+ ctx = ssl .create_default_context ()
84
+ ctx .check_hostname = False
85
+ ctx .verify_mode = ssl .CERT_NONE
86
+ urlretrieve (url , local_path , report_progress , context = ctx )
87
+ elif 'Windows' in sys_name :
88
+ r = requests .get (url )
89
+ f = open (local_path , 'wb' )
90
+ f .write (r .content )
91
+ f .close ()
83
92
else :
84
- try :
85
- urlretrieve (url , local_path , report_progress )
86
- except Exception ,e :
87
- r = requests .get (url )
88
- f = open (local_path , 'wb' )
89
- f .write (r .content )
90
- f .close ()
93
+ urlretrieve (url , local_path , report_progress )
91
94
sys .stdout .write ("\r Done\n " )
92
95
sys .stdout .flush ()
93
96
else :
94
97
print ('Tool {0} already downloaded' .format (archive_name ))
98
+ sys .stdout .flush ()
95
99
#local_hash = sha256sum(local_path)
96
100
#if local_hash != real_hash:
97
101
# print('Hash mismatch for {0}, delete the file and try again'.format(local_path))
@@ -117,15 +121,19 @@ def identify_platform():
117
121
if sys .maxsize > 2 ** 32 :
118
122
bits = 64
119
123
sys_name = platform .system ()
120
- if 'Linux' in sys_name and platform .platform ().find ('arm' ) > 0 :
124
+ sys_platform = platform .platform ()
125
+ print ('System: %s, Info: %s' % (sys_name , sys_platform ))
126
+ if 'Linux' in sys_name and sys_platform .find ('arm' ) > 0 :
121
127
sys_name = 'LinuxARM'
122
128
if 'CYGWIN_NT' in sys_name :
123
129
sys_name = 'Windows'
124
130
return arduino_platform_names [sys_name ][bits ]
125
131
126
132
if __name__ == '__main__' :
127
- print ('Platform: {0}' .format (identify_platform ()))
128
- tools_to_download = load_tools_list ('../package/package_esp32_index.template.json' , identify_platform ())
133
+ identified_platform = identify_platform ()
134
+ print ('Platform: {0}' .format (identified_platform ))
135
+ tools_to_download = load_tools_list (current_dir + '/../package/package_esp32_index.template.json' , identified_platform )
129
136
mkdir_p (dist_dir )
130
137
for tool in tools_to_download :
131
138
get_tool (tool )
139
+ print ('Done' )
0 commit comments