• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/python -B
2
3# Copyright 2017 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9#      http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17"""Utility methods to work with Zip archives."""
18
19try:
20    import itertools.izip as zip
21except ImportError:
22    pass
23
24from operator import attrgetter
25from zipfile import ZipFile
26import os
27
28
29def ZipCompare(path_a, path_b):
30  """Compares the contents of two Zip archives, returns True if equal."""
31
32  if not os.path.isfile(path_a) or not os.path.isfile(path_b):
33    return False
34
35  with ZipFile(path_a, 'r') as zip_a:
36    info_a = zip_a.infolist()
37
38  with ZipFile(path_b, 'r') as zip_b:
39    info_b = zip_b.infolist()
40
41  if len(info_a) != len(info_b):
42    return False
43
44  info_a.sort(key=attrgetter('filename'))
45  info_b.sort(key=attrgetter('filename'))
46
47  return all(
48      a.filename == b.filename and
49      a.file_size == b.file_size and
50      a.CRC == b.CRC
51      for a, b in zip(info_a, info_b))
52