Skip to content

Commit ae824fb

Browse files
jaracoLUCI
authored and
LUCI
committed
cleanup: convert exceptions to OSError
In Python 3, these exceptions were merged into OSError, so switch everything over to that. Change-Id: If876a28b692de5aa5c62a3bdc8c000793ce52c63 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/390376 Reviewed-by: Aravind Vasudevan <[email protected]> Commit-Queue: Mike Frysinger <[email protected]> Tested-by: Mike Frysinger <[email protected]>
1 parent 034950b commit ae824fb

File tree

7 files changed

+19
-22
lines changed

7 files changed

+19
-22
lines changed

git_config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -370,15 +370,15 @@ def _ReadJson(self):
370370
with Trace(": parsing %s", self.file):
371371
with open(self._json) as fd:
372372
return json.load(fd)
373-
except (IOError, ValueError):
373+
except (OSError, ValueError):
374374
platform_utils.remove(self._json, missing_ok=True)
375375
return None
376376

377377
def _SaveJson(self, cache):
378378
try:
379379
with open(self._json, "w") as fd:
380380
json.dump(cache, fd, indent=2)
381-
except (IOError, TypeError):
381+
except (OSError, TypeError):
382382
platform_utils.remove(self._json, missing_ok=True)
383383

384384
def _ReadGit(self):

git_refs.py

-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ def _ReadPackedRefs(self):
107107
try:
108108
fd = open(path)
109109
mtime = os.path.getmtime(path)
110-
except IOError:
111-
return
112110
except OSError:
113111
return
114112
try:

git_superproject.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def _WriteManifestFile(self):
381381
try:
382382
with open(manifest_path, "w", encoding="utf-8") as fp:
383383
fp.write(manifest_str)
384-
except IOError as e:
384+
except OSError as e:
385385
self._LogError("cannot write manifest to : {} {}", manifest_path, e)
386386
return None
387387
return manifest_path

main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def init_http():
789789
mgr.add_password(p[1], "https://%s/" % host, p[0], p[2])
790790
except netrc.NetrcParseError:
791791
pass
792-
except IOError:
792+
except OSError:
793793
pass
794794
handlers.append(_BasicAuthHandler(mgr))
795795
handlers.append(_DigestAuthHandler(mgr))

project.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def _Copy(self):
431431
mode = os.stat(dest)[stat.ST_MODE]
432432
mode = mode & ~(stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH)
433433
os.chmod(dest, mode)
434-
except IOError:
434+
except OSError:
435435
logger.error("error: Cannot copy file %s to %s", src, dest)
436436

437437

@@ -466,7 +466,7 @@ def __linkIt(self, relSrc, absDest):
466466
if not platform_utils.isdir(dest_dir):
467467
os.makedirs(dest_dir)
468468
platform_utils.symlink(relSrc, absDest)
469-
except IOError:
469+
except OSError:
470470
logger.error(
471471
"error: Cannot link file %s to %s", relSrc, absDest
472472
)
@@ -1198,7 +1198,7 @@ def _ExtractArchive(self, tarpath, path=None):
11981198
with tarfile.open(tarpath, "r") as tar:
11991199
tar.extractall(path=path)
12001200
return True
1201-
except (IOError, tarfile.TarError) as e:
1201+
except (OSError, tarfile.TarError) as e:
12021202
logger.error("error: Cannot extract archive %s: %s", tarpath, e)
12031203
return False
12041204

@@ -1309,7 +1309,7 @@ def Sync_NetworkHalf(
13091309
alt_dir = os.path.join(
13101310
self.objdir, "objects", fd.readline().rstrip()
13111311
)
1312-
except IOError:
1312+
except OSError:
13131313
alt_dir = None
13141314
else:
13151315
alt_dir = None
@@ -3584,7 +3584,7 @@ def GetHead(self):
35843584
try:
35853585
with open(path) as fd:
35863586
line = fd.readline()
3587-
except IOError as e:
3587+
except OSError as e:
35883588
raise NoManifestException(path, str(e))
35893589
try:
35903590
line = line.decode()

repo

+2-2
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def get_gitc_manifest_dir():
627627
match = re.match("gitc_dir=(?P<gitc_manifest_dir>.*)", line)
628628
if match:
629629
_gitc_manifest_dir = match.group("gitc_manifest_dir")
630-
except IOError:
630+
except OSError:
631631
pass
632632
return _gitc_manifest_dir
633633

@@ -1277,7 +1277,7 @@ class Requirements:
12771277
try:
12781278
with open(path, "rb") as f:
12791279
data = f.read()
1280-
except EnvironmentError:
1280+
except OSError:
12811281
# NB: EnvironmentError is used for Python 2 & 3 compatibility.
12821282
# If we couldn't open the file, assume it's an old source tree.
12831283
return None

subcmds/sync.py

+8-9
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import netrc
2222
import optparse
2323
import os
24-
import socket
2524
import sys
2625
import tempfile
2726
import time
@@ -1376,7 +1375,7 @@ def _SmartSyncSetup(self, opt, smart_sync_manifest_path, manifest):
13761375
else:
13771376
try:
13781377
info = netrc.netrc()
1379-
except IOError:
1378+
except OSError:
13801379
# .netrc file does not exist or could not be opened.
13811380
pass
13821381
else:
@@ -1435,7 +1434,7 @@ def _SmartSyncSetup(self, opt, smart_sync_manifest_path, manifest):
14351434
try:
14361435
with open(smart_sync_manifest_path, "w") as f:
14371436
f.write(manifest_str)
1438-
except IOError as e:
1437+
except OSError as e:
14391438
raise SmartSyncError(
14401439
"error: cannot write manifest to %s:\n%s"
14411440
% (smart_sync_manifest_path, e),
@@ -1446,7 +1445,7 @@ def _SmartSyncSetup(self, opt, smart_sync_manifest_path, manifest):
14461445
raise SmartSyncError(
14471446
"error: manifest server RPC call failed: %s" % manifest_str
14481447
)
1449-
except (socket.error, IOError, xmlrpc.client.Fault) as e:
1448+
except (OSError, xmlrpc.client.Fault) as e:
14501449
raise SmartSyncError(
14511450
"error: cannot connect to manifest server %s:\n%s"
14521451
% (manifest.manifest_server, e),
@@ -1931,7 +1930,7 @@ def _Load(self):
19311930
try:
19321931
with open(self._path) as f:
19331932
self._saved = json.load(f)
1934-
except (IOError, ValueError):
1933+
except (OSError, ValueError):
19351934
platform_utils.remove(self._path, missing_ok=True)
19361935
self._saved = {}
19371936

@@ -1947,7 +1946,7 @@ def Save(self):
19471946
try:
19481947
with open(self._path, "w") as f:
19491948
json.dump(self._seen, f, indent=2)
1950-
except (IOError, TypeError):
1949+
except (OSError, TypeError):
19511950
platform_utils.remove(self._path, missing_ok=True)
19521951

19531952

@@ -1994,7 +1993,7 @@ def _Load(self):
19941993
try:
19951994
with open(self._path) as f:
19961995
self._state = json.load(f)
1997-
except (IOError, ValueError):
1996+
except (OSError, ValueError):
19981997
platform_utils.remove(self._path, missing_ok=True)
19991998
self._state = {}
20001999

@@ -2004,7 +2003,7 @@ def Save(self):
20042003
try:
20052004
with open(self._path, "w") as f:
20062005
json.dump(self._state, f, indent=2)
2007-
except (IOError, TypeError):
2006+
except (OSError, TypeError):
20082007
platform_utils.remove(self._path, missing_ok=True)
20092008

20102009
def PruneRemovedProjects(self):
@@ -2137,7 +2136,7 @@ def request(self, host, handler, request_body, verbose=False):
21372136
try:
21382137
p.feed(data)
21392138
except xml.parsers.expat.ExpatError as e:
2140-
raise IOError(
2139+
raise OSError(
21412140
f"Parsing the manifest failed: {e}\n"
21422141
f"Please report this to your manifest server admin.\n"
21432142
f'Here is the full response:\n{data.decode("utf-8")}'

0 commit comments

Comments
 (0)