forked from luigifreda/pyslam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils_files.py
113 lines (90 loc) · 3.61 KB
/
utils_files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# From torchvision.uitls
import smtplib, socket, os, os.path, hashlib, errno
import __main__ as main
from email.mime.text import MIMEText
from os import path, mkdir
def check_integrity(fpath, md5):
if not os.path.isfile(fpath):
return False
md5o = hashlib.md5()
with open(fpath, "rb") as f:
# read in 1MB chunks
for chunk in iter(lambda: f.read(1024 * 1024), b""):
md5o.update(chunk)
md5c = md5o.hexdigest()
if md5c != md5:
return False
return True
def download_url(url, root, filename, md5):
from six.moves import urllib
root = os.path.expanduser(root)
fpath = os.path.join(root, filename)
try:
os.makedirs(root)
except OSError as e:
if e.errno == errno.EEXIST:
pass
else:
raise
# downloads file
if os.path.isfile(fpath) and check_integrity(fpath, md5):
print("Using downloaded and verified file: " + fpath)
else:
try:
print("Downloading " + url + " to " + fpath)
urllib.request.urlretrieve(url, fpath)
except:
if url[:5] == "https":
url = url.replace("https:", "http:")
print("Failed download. Trying https -> http instead." " Downloading " + url + " to " + fpath)
urllib.request.urlretrieve(url, fpath)
def check_dir(dir):
if not path.isdir(dir):
mkdir(dir)
def list_dir(root, prefix=False):
### List all directories at a given root
# root (str): Path to directory whose folders need to be listed
# prefix (bool, optional): If true, prepends the path to each result, otherwise only returns the name of the directories found
root = os.path.expanduser(root)
directories = list(filter(lambda p: os.path.isdir(os.path.join(root, p)), os.listdir(root)))
if prefix is True:
directories = [os.path.join(root, d) for d in directories]
return directories
def list_files(root, suffix, prefix=False):
### List all files ending with a suffix at a given root
# root (str): Path to directory whose folders need to be listed
# suffix (str or tuple): Suffix of the files to match, e.g. '.png' or ('.jpg', '.png'). It uses the Python "str.endswith" method and is passed directly
# prefix (bool, optional): If true, prepends the path to each result, otherwise only returns the name of the files found
root = os.path.expanduser(root)
files = list(filter(lambda p: os.path.isfile(os.path.join(root, p)) and p.endswith(suffix), os.listdir(root)))
if prefix is True:
files = [os.path.join(root, d) for d in files]
return files
def make_dirs(dir, exist_ok=True):
# helper function, adds exist_ok to python2
if exist_ok:
try:
os.makedirs(dir)
except:
pass
else:
os.makedirs(dir)
import smtplib, socket, os
from email.mime.text import MIMEText
# Open a plain text file for reading. For this example, assume that
# the text file contains only ASCII characters.
# with open(textfile) as fp:
# Create a text/plain message
# msg = MIMEText(fp.read())
def send_email(recipient, ignore_host="", login_gmail="", login_password=""):
msg = MIMEText("")
if socket.gethostname() == ignore_host:
return
msg["Subject"] = socket.gethostname() + " just finished running a job " + os.path.basename(main.__file__)
msg["From"] = "clustersgpu@gmail.com"
msg["To"] = recipient
s = smtplib.SMTP_SSL("smtp.gmail.com", 465)
s.ehlo()
s.login(login_gmail, login_password)
s.sendmail(login_gmail, recipient, msg.as_string())
s.quit()