@@ -42,7 +42,8 @@ private static ArrayList<String> createLibraryBlacklist() {
42
42
}
43
43
44
44
private static String getAarArchitectureName () {
45
- switch (Architecture .getDeviceArchitecture ()) {
45
+ int architecture = Architecture .getDeviceArchitecture ();
46
+ switch (architecture ) {
46
47
case Architecture .ARCH_ARM :
47
48
return "armeabi-v7a" ;
48
49
case Architecture .ARCH_ARM64 :
@@ -52,37 +53,33 @@ private static String getAarArchitectureName() {
52
53
case Architecture .ARCH_X86_64 :
53
54
return "x86_64" ;
54
55
}
55
- throw new RuntimeException ("Unknown CPU architecture!" );
56
+ throw new RuntimeException ("Unknown CPU architecture: " + architecture );
56
57
}
57
58
58
59
public void extractFromAar (File source ) throws IOException {
59
- try (FileInputStream fileInputStream = new FileInputStream (source )) {
60
- try (ZipInputStream zipInputStream = new ZipInputStream (fileInputStream )) {
61
- // Wrap the ZIP input stream into a non-closeable stream to
62
- // avoid it being closed by processEntry()
63
- NonCloseableInputStream entryCopyStream = new NonCloseableInputStream (zipInputStream );
64
-
65
- while (true ) {
66
- ZipEntry entry = zipInputStream .getNextEntry ();
67
- if (entry == null ) break ;
68
-
69
- String entryName = entry .getName ();
70
- if (!entryName .startsWith (mLibraryLocation ) || entry .isDirectory ()) continue ;
71
- // Entry name is actually the full path, so we need to strip the path before extraction
72
- entryName = FileUtils .getFileName (entryName );
73
- // getFileName may make the file name null, avoid that case.
74
- if (entryName == null || LIBRARY_BLACKLIST .contains (entryName )) continue ;
75
-
76
- processEntry (entryCopyStream , entry , new File (mDestinationDir , entryName ));
77
- }
60
+ byte [] buffer = new byte [8192 ];
61
+ try (FileInputStream fileInputStream = new FileInputStream (source );
62
+ ZipInputStream zipInputStream = new ZipInputStream (fileInputStream )) {
63
+ // Wrap the ZIP input stream into a non-closeable stream to
64
+ // avoid it being closed by processEntry()
65
+ NonCloseableInputStream entryCopyStream = new NonCloseableInputStream (zipInputStream );
66
+ ZipEntry entry ;
67
+ while ((entry = zipInputStream .getNextEntry ()) != null ) {
68
+ String entryName = entry .getName ();
69
+ if (!entryName .startsWith (mLibraryLocation ) || entry .isDirectory ()) continue ;
70
+ // Entry name is actually the full path, so we need to strip the path before extraction
71
+ entryName = FileUtils .getFileName (entryName );
72
+ // getFileName may make the file name null, avoid that case.
73
+ if (entryName == null || LIBRARY_BLACKLIST .contains (entryName )) continue ;
74
+
75
+ processEntry (entryCopyStream , entry , new File (mDestinationDir , entryName ), buffer );
78
76
}
79
77
}
80
78
}
81
79
82
- private static long fileCrc32 (File target ) throws IOException {
80
+ private static long fileCrc32 (File target , byte [] buffer ) throws IOException {
83
81
try (FileInputStream fileInputStream = new FileInputStream (target )) {
84
82
CRC32 crc32 = new CRC32 ();
85
- byte [] buffer = new byte [1024 ];
86
83
int len ;
87
84
while ((len = fileInputStream .read (buffer )) != -1 ) {
88
85
crc32 .update (buffer , 0 , len );
@@ -91,12 +88,12 @@ private static long fileCrc32(File target) throws IOException {
91
88
}
92
89
}
93
90
94
- private void processEntry (InputStream sourceStream , ZipEntry zipEntry , File entryDestination ) throws IOException {
91
+ private void processEntry (InputStream sourceStream , ZipEntry zipEntry , File entryDestination , byte [] buffer ) throws IOException {
95
92
if (entryDestination .exists ()) {
96
93
long expectedSize = zipEntry .getSize ();
97
94
long expectedCrc32 = zipEntry .getCrc ();
98
95
long realSize = entryDestination .length ();
99
- long realCrc32 = fileCrc32 (entryDestination );
96
+ long realCrc32 = fileCrc32 (entryDestination , buffer );
100
97
// File in archive is the same as the local one, don't extract
101
98
if (realSize == expectedSize && realCrc32 == expectedCrc32 ) return ;
102
99
}
0 commit comments