Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
0f80116a
Unverified
Commit
0f80116a
authored
Nov 11, 2020
by
Jonah Williams
Committed by
GitHub
Nov 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] improve hash performance in build_system (#70065)
parent
1f0df545
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
298 additions
and
64 deletions
+298
-64
build_system.dart
...ages/flutter_tools/lib/src/build_system/build_system.dart
+6
-6
file_store.dart
packages/flutter_tools/lib/src/build_system/file_store.dart
+35
-43
hash.dart
packages/flutter_tools/lib/src/build_system/hash.dart
+169
-0
file_store_test.dart
...ools/test/general.shard/build_system/file_store_test.dart
+10
-13
hash_test.dart
...tter_tools/test/general.shard/build_system/hash_test.dart
+74
-0
resident_runner_test.dart
...lutter_tools/test/general.shard/resident_runner_test.dart
+4
-2
No files found.
packages/flutter_tools/lib/src/build_system/build_system.dart
View file @
0f80116a
...
@@ -772,7 +772,7 @@ class _BuildInstance {
...
@@ -772,7 +772,7 @@ class _BuildInstance {
// If we're missing a depfile, wait until after evaluating the target to
// If we're missing a depfile, wait until after evaluating the target to
// compute changes.
// compute changes.
final
bool
canSkip
=
!
node
.
missingDepfile
&&
final
bool
canSkip
=
!
node
.
missingDepfile
&&
await
node
.
computeChanges
(
environment
,
fileCache
,
fileSystem
,
logger
);
node
.
computeChanges
(
environment
,
fileCache
,
fileSystem
,
logger
);
if
(
canSkip
)
{
if
(
canSkip
)
{
skipped
=
true
;
skipped
=
true
;
...
@@ -802,11 +802,11 @@ class _BuildInstance {
...
@@ -802,11 +802,11 @@ class _BuildInstance {
// If we were missing the depfile, resolve input files after executing the
// If we were missing the depfile, resolve input files after executing the
// target so that all file hashes are up to date on the next run.
// target so that all file hashes are up to date on the next run.
if
(
node
.
missingDepfile
)
{
if
(
node
.
missingDepfile
)
{
await
fileCache
.
diffFileList
(
node
.
inputs
);
fileCache
.
diffFileList
(
node
.
inputs
);
}
}
// Always update hashes for output files.
// Always update hashes for output files.
await
fileCache
.
diffFileList
(
node
.
outputs
);
fileCache
.
diffFileList
(
node
.
outputs
);
node
.
target
.
_writeStamp
(
node
.
inputs
,
node
.
outputs
,
environment
);
node
.
target
.
_writeStamp
(
node
.
inputs
,
node
.
outputs
,
environment
);
updateGraph
();
updateGraph
();
...
@@ -1001,12 +1001,12 @@ class Node {
...
@@ -1001,12 +1001,12 @@ class Node {
/// Collect hashes for all inputs to determine if any have changed.
/// Collect hashes for all inputs to determine if any have changed.
///
///
/// Returns whether this target can be skipped.
/// Returns whether this target can be skipped.
Future
<
bool
>
computeChanges
(
bool
computeChanges
(
Environment
environment
,
Environment
environment
,
FileStore
fileStore
,
FileStore
fileStore
,
FileSystem
fileSystem
,
FileSystem
fileSystem
,
Logger
logger
,
Logger
logger
,
)
async
{
)
{
final
Set
<
String
>
currentOutputPaths
=
<
String
>{
final
Set
<
String
>
currentOutputPaths
=
<
String
>{
for
(
final
File
file
in
outputs
)
file
.
path
,
for
(
final
File
file
in
outputs
)
file
.
path
,
};
};
...
@@ -1075,7 +1075,7 @@ class Node {
...
@@ -1075,7 +1075,7 @@ class Node {
// If we have files to diff, compute them asynchronously and then
// If we have files to diff, compute them asynchronously and then
// update the result.
// update the result.
if
(
sourcesToDiff
.
isNotEmpty
)
{
if
(
sourcesToDiff
.
isNotEmpty
)
{
final
List
<
File
>
dirty
=
await
fileStore
.
diffFileList
(
sourcesToDiff
);
final
List
<
File
>
dirty
=
fileStore
.
diffFileList
(
sourcesToDiff
);
if
(
dirty
.
isNotEmpty
)
{
if
(
dirty
.
isNotEmpty
)
{
invalidatedReasons
.
add
(
InvalidatedReason
.
inputChanged
);
invalidatedReasons
.
add
(
InvalidatedReason
.
inputChanged
);
_dirty
=
true
;
_dirty
=
true
;
...
...
packages/flutter_tools/lib/src/build_system/file_store.dart
View file @
0f80116a
...
@@ -2,22 +2,17 @@
...
@@ -2,22 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:collection'
;
import
'dart:collection'
;
import
'dart:typed_data'
;
import
'dart:typed_data'
;
import
'package:crypto/crypto.dart'
;
import
'package:crypto/crypto.dart'
;
import
'package:meta/meta.dart'
;
import
'package:meta/meta.dart'
;
import
'package:pool/pool.dart'
;
import
'../base/file_system.dart'
;
import
'../base/file_system.dart'
;
import
'../base/logger.dart'
;
import
'../base/logger.dart'
;
import
'../base/utils.dart'
;
import
'../base/utils.dart'
;
import
'../convert.dart'
;
import
'../convert.dart'
;
import
'build_system.dart'
;
import
'hash.dart'
;
/// The default threshold for file chunking is 250 KB, or about the size of `framework.dart`.
const
int
kDefaultFileChunkThresholdBytes
=
250000
;
/// An encoded representation of all file hashes.
/// An encoded representation of all file hashes.
class
FileStorage
{
class
FileStorage
{
...
@@ -94,16 +89,13 @@ class FileStore {
...
@@ -94,16 +89,13 @@ class FileStore {
@required
File
cacheFile
,
@required
File
cacheFile
,
@required
Logger
logger
,
@required
Logger
logger
,
FileStoreStrategy
strategy
=
FileStoreStrategy
.
hash
,
FileStoreStrategy
strategy
=
FileStoreStrategy
.
hash
,
int
fileChunkThreshold
=
kDefaultFileChunkThresholdBytes
,
})
:
_logger
=
logger
,
})
:
_logger
=
logger
,
_strategy
=
strategy
,
_strategy
=
strategy
,
_cacheFile
=
cacheFile
,
_cacheFile
=
cacheFile
;
_fileChunkThreshold
=
fileChunkThreshold
;
final
File
_cacheFile
;
final
File
_cacheFile
;
final
Logger
_logger
;
final
Logger
_logger
;
final
FileStoreStrategy
_strategy
;
final
FileStoreStrategy
_strategy
;
final
int
_fileChunkThreshold
;
final
HashMap
<
String
,
String
>
previousAssetKeys
=
HashMap
<
String
,
String
>();
final
HashMap
<
String
,
String
>
previousAssetKeys
=
HashMap
<
String
,
String
>();
final
HashMap
<
String
,
String
>
currentAssetKeys
=
HashMap
<
String
,
String
>();
final
HashMap
<
String
,
String
>
currentAssetKeys
=
HashMap
<
String
,
String
>();
...
@@ -187,14 +179,13 @@ class FileStore {
...
@@ -187,14 +179,13 @@ class FileStore {
/// Computes a diff of the provided files and returns a list of files
/// Computes a diff of the provided files and returns a list of files
/// that were dirty.
/// that were dirty.
Future
<
List
<
File
>>
diffFileList
(
List
<
File
>
files
)
async
{
List
<
File
>
diffFileList
(
List
<
File
>
files
)
{
final
List
<
File
>
dirty
=
<
File
>[];
final
List
<
File
>
dirty
=
<
File
>[];
switch
(
_strategy
)
{
switch
(
_strategy
)
{
case
FileStoreStrategy
.
hash
:
case
FileStoreStrategy
.
hash
:
final
Pool
openFiles
=
Pool
(
kMaxOpenFiles
);
for
(
final
File
file
in
files
)
{
await
Future
.
wait
(<
Future
<
void
>>[
_hashFile
(
file
,
dirty
);
for
(
final
File
file
in
files
)
_hashFile
(
file
,
dirty
,
openFiles
)
}
]);
break
;
break
;
case
FileStoreStrategy
.
timestamp
:
case
FileStoreStrategy
.
timestamp
:
for
(
final
File
file
in
files
)
{
for
(
final
File
file
in
files
)
{
...
@@ -223,9 +214,10 @@ class FileStore {
...
@@ -223,9 +214,10 @@ class FileStore {
currentAssetKeys
[
absolutePath
]
=
modifiedTime
;
currentAssetKeys
[
absolutePath
]
=
modifiedTime
;
}
}
Future
<
void
>
_hashFile
(
File
file
,
List
<
File
>
dirty
,
Pool
pool
)
async
{
// 64k is the same sized buffer used by dart:io for `File.openRead`.
final
PoolResource
resource
=
await
pool
.
request
();
static
final
Uint8List
_readBuffer
=
Uint8List
(
64
*
1024
);
try
{
void
_hashFile
(
File
file
,
List
<
File
>
dirty
)
{
final
String
absolutePath
=
file
.
path
;
final
String
absolutePath
=
file
.
path
;
final
String
previousHash
=
previousAssetKeys
[
absolutePath
];
final
String
previousHash
=
previousAssetKeys
[
absolutePath
];
// If the file is missing it is assumed to be dirty.
// If the file is missing it is assumed to be dirty.
...
@@ -235,25 +227,25 @@ class FileStore {
...
@@ -235,25 +227,25 @@ class FileStore {
dirty
.
add
(
file
);
dirty
.
add
(
file
);
return
;
return
;
}
}
Digest
digest
;
final
int
fileBytes
=
file
.
lengthSync
();
final
int
fileBytes
=
file
.
lengthSync
();
// For files larger than a given threshold, chunk the conversion.
final
Md5Hash
hash
=
Md5Hash
();
if
(
fileBytes
>
_fileChunkThreshold
)
{
RandomAccessFile
openFile
;
final
StreamController
<
Digest
>
digests
=
StreamController
<
Digest
>();
try
{
final
ByteConversionSink
inputSink
=
md5
.
startChunkedConversion
(
digests
);
openFile
=
file
.
openSync
(
mode:
FileMode
.
read
);
await
file
.
openRead
().
forEach
(
inputSink
.
add
);
int
bytes
=
0
;
inputSink
.
close
();
while
(
bytes
<
fileBytes
)
{
digest
=
await
digests
.
stream
.
last
;
final
int
bytesRead
=
openFile
.
readIntoSync
(
_readBuffer
);
}
else
{
hash
.
addChunk
(
_readBuffer
,
bytesRead
);
digest
=
md5
.
convert
(
await
file
.
readAsBytes
());
bytes
+=
bytesRead
;
}
}
finally
{
openFile
?.
closeSync
();
}
}
final
Digest
digest
=
Digest
(
hash
.
finalize
().
buffer
.
asUint8List
());
final
String
currentHash
=
digest
.
toString
();
final
String
currentHash
=
digest
.
toString
();
if
(
currentHash
!=
previousHash
)
{
if
(
currentHash
!=
previousHash
)
{
dirty
.
add
(
file
);
dirty
.
add
(
file
);
}
}
currentAssetKeys
[
absolutePath
]
=
currentHash
;
currentAssetKeys
[
absolutePath
]
=
currentHash
;
}
finally
{
resource
.
release
();
}
}
}
}
}
packages/flutter_tools/lib/src/build_system/hash.dart
0 → 100644
View file @
0f80116a
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:typed_data'
;
/// Data from a non-linear mathematical function that functions as
/// reproducible noise.
final
Uint32List
_noise
=
Uint32List
.
fromList
(<
int
>[
0xd76aa478
,
0xe8c7b756
,
0x242070db
,
0xc1bdceee
,
0xf57c0faf
,
0x4787c62a
,
0xa8304613
,
0xfd469501
,
0x698098d8
,
0x8b44f7af
,
0xffff5bb1
,
0x895cd7be
,
0x6b901122
,
0xfd987193
,
0xa679438e
,
0x49b40821
,
0xf61e2562
,
0xc040b340
,
0x265e5a51
,
0xe9b6c7aa
,
0xd62f105d
,
0x02441453
,
0xd8a1e681
,
0xe7d3fbc8
,
0x21e1cde6
,
0xc33707d6
,
0xf4d50d87
,
0x455a14ed
,
0xa9e3e905
,
0xfcefa3f8
,
0x676f02d9
,
0x8d2a4c8a
,
0xfffa3942
,
0x8771f681
,
0x6d9d6122
,
0xfde5380c
,
0xa4beea44
,
0x4bdecfa9
,
0xf6bb4b60
,
0xbebfbc70
,
0x289b7ec6
,
0xeaa127fa
,
0xd4ef3085
,
0x04881d05
,
0xd9d4d039
,
0xe6db99e5
,
0x1fa27cf8
,
0xc4ac5665
,
0xf4292244
,
0x432aff97
,
0xab9423a7
,
0xfc93a039
,
0x655b59c3
,
0x8f0ccc92
,
0xffeff47d
,
0x85845dd1
,
0x6fa87e4f
,
0xfe2ce6e0
,
0xa3014314
,
0x4e0811a1
,
0xf7537e82
,
0xbd3af235
,
0x2ad7d2bb
,
0xeb86d391
]);
/// Per-round shift amounts.
const
List
<
int
>
_shiftAmounts
=
<
int
>[
07
,
12
,
17
,
22
,
07
,
12
,
17
,
22
,
07
,
12
,
17
,
22
,
07
,
12
,
17
,
22
,
05
,
09
,
14
,
20
,
05
,
09
,
14
,
20
,
05
,
09
,
14
,
20
,
05
,
09
,
14
,
20
,
04
,
11
,
16
,
23
,
04
,
11
,
16
,
23
,
04
,
11
,
16
,
23
,
04
,
11
,
16
,
23
,
06
,
10
,
15
,
21
,
06
,
10
,
15
,
21
,
06
,
10
,
15
,
21
,
06
,
10
,
15
,
21
];
/// A bitmask that limits an integer to 32 bits.
const
int
_mask32
=
0xFFFFFFFF
;
/// An incremental hash computation of md5.
class
Md5Hash
{
Md5Hash
()
{
_digest
[
0
]
=
0x67452301
;
_digest
[
1
]
=
0xefcdab89
;
_digest
[
2
]
=
0x98badcfe
;
_digest
[
3
]
=
0x10325476
;
}
// 64 bytes is 512 bits.
static
const
int
_kChunkSize
=
64
;
/// The current hash digest.
final
Uint32List
_digest
=
Uint32List
(
4
);
final
Uint8List
_scratchSpace
=
Uint8List
(
_kChunkSize
);
int
_remainingLength
=
0
;
int
_contentLength
=
0
;
void
addChunk
(
Uint8List
data
,
[
int
stop
])
{
assert
(
_remainingLength
==
0
);
stop
??=
data
.
length
;
int
i
=
0
;
for
(;
i
<=
stop
-
_kChunkSize
;
i
+=
_kChunkSize
)
{
final
Uint32List
view
=
Uint32List
.
view
(
data
.
buffer
,
i
,
16
);
_writeChunk
(
view
);
}
if
(
i
!=
stop
)
{
// The data must be copied so that the provided buffer can be reused.
int
j
=
0
;
for
(;
i
<
stop
;
i
+=
1
)
{
_scratchSpace
[
j
]
=
data
[
i
];
j
+=
1
;
}
_remainingLength
=
j
;
}
_contentLength
+=
stop
;
}
void
_writeChunk
(
Uint32List
chunk
)
{
// help dart remove bounds checks
// ignore: unnecessary_statements
chunk
[
15
];
// ignore: unnecessary_statements
_shiftAmounts
[
63
];
// ignore: unnecessary_statements
_noise
[
63
];
int
d
=
_digest
[
3
];
int
c
=
_digest
[
2
];
int
b
=
_digest
[
1
];
int
a
=
_digest
[
0
];
int
e
=
0
;
int
f
=
0
;
int
i
=
0
;
for
(;
i
<
16
;
i
+=
1
)
{
e
=
(
b
&
c
)
|
((~
b
&
_mask32
)
&
d
);
f
=
i
;
final
int
temp
=
d
;
d
=
c
;
c
=
b
;
b
=
_add32
(
b
,
_rotl32
(
_add32
(
_add32
(
a
,
e
),
_add32
(
_noise
[
i
],
chunk
[
f
])),
_shiftAmounts
[
i
]));
a
=
temp
;
}
for
(;
i
<
32
;
i
+=
1
)
{
e
=
(
d
&
b
)
|
((~
d
&
_mask32
)
&
c
);
f
=
((
5
*
i
)
+
1
)
%
16
;
final
int
temp
=
d
;
d
=
c
;
c
=
b
;
b
=
_add32
(
b
,
_rotl32
(
_add32
(
_add32
(
a
,
e
),
_add32
(
_noise
[
i
],
chunk
[
f
])),
_shiftAmounts
[
i
]));
a
=
temp
;
}
for
(;
i
<
48
;
i
+=
1
)
{
e
=
b
^
c
^
d
;
f
=
((
3
*
i
)
+
5
)
%
16
;
final
int
temp
=
d
;
d
=
c
;
c
=
b
;
b
=
_add32
(
b
,
_rotl32
(
_add32
(
_add32
(
a
,
e
),
_add32
(
_noise
[
i
],
chunk
[
f
])),
_shiftAmounts
[
i
]));
a
=
temp
;
}
for
(;
i
<
64
;
i
+=
1
)
{
e
=
c
^
(
b
|
(~
d
&
_mask32
));
f
=
(
7
*
i
)
%
16
;
final
int
temp
=
d
;
d
=
c
;
c
=
b
;
b
=
_add32
(
b
,
_rotl32
(
_add32
(
_add32
(
a
,
e
),
_add32
(
_noise
[
i
],
chunk
[
f
])),
_shiftAmounts
[
i
]));
a
=
temp
;
}
_digest
[
0
]
+=
a
;
_digest
[
1
]
+=
b
;
_digest
[
2
]
+=
c
;
_digest
[
3
]
+=
d
;
}
Uint32List
finalize
()
{
// help dart remove bounds checks
// ignore: unnecessary_statements
_scratchSpace
[
63
];
_scratchSpace
[
_remainingLength
]
=
0x80
;
_remainingLength
+=
1
;
final
int
zeroes
=
56
-
_remainingLength
;
for
(
int
i
=
_remainingLength
;
i
<
zeroes
;
i
+=
1
)
{
_scratchSpace
[
i
]
=
0
;
}
final
int
bitLength
=
_contentLength
*
8
;
_scratchSpace
.
buffer
.
asByteData
().
setUint64
(
56
,
bitLength
,
Endian
.
little
);
_writeChunk
(
Uint32List
.
view
(
_scratchSpace
.
buffer
,
0
,
16
));
return
_digest
;
}
/// Adds [x] and [y] with 32-bit overflow semantics.
int
_add32
(
int
x
,
int
y
)
=>
(
x
+
y
)
&
_mask32
;
/// Bitwise rotates [val] to the left by [shift], obeying 32-bit overflow
/// semantics.
int
_rotl32
(
int
val
,
int
shift
)
{
final
int
modShift
=
shift
&
31
;
return
((
val
<<
modShift
)
&
_mask32
)
|
((
val
&
_mask32
)
>>
(
32
-
modShift
));
}
}
packages/flutter_tools/test/general.shard/build_system/file_store_test.dart
View file @
0f80116a
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
import
'dart:typed_data'
;
import
'dart:typed_data'
;
import
'package:crypto/crypto.dart'
;
import
'package:file/memory.dart'
;
import
'package:file/memory.dart'
;
import
'package:file_testing/file_testing.dart'
;
import
'package:file_testing/file_testing.dart'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
...
@@ -40,27 +39,28 @@ void main() {
...
@@ -40,27 +39,28 @@ void main() {
final
FileStore
fileCache
=
FileStore
(
final
FileStore
fileCache
=
FileStore
(
cacheFile:
cacheFile
,
cacheFile:
cacheFile
,
logger:
BufferLogger
.
test
(),
logger:
BufferLogger
.
test
(),
strategy:
FileStoreStrategy
.
timestamp
,
);
);
fileCache
.
initialize
();
fileCache
.
initialize
();
final
File
file
=
fileSystem
.
file
(
'test'
)..
createSync
();
final
File
file
=
fileSystem
.
file
(
'test'
)..
createSync
();
// Initial run does not contain any timestamps for file.
// Initial run does not contain any timestamps for file.
expect
(
await
fileCache
.
diffFileList
(<
File
>[
file
]),
hasLength
(
1
));
expect
(
fileCache
.
diffFileList
(<
File
>[
file
]),
hasLength
(
1
));
// Swap current timestamps to previous timestamps.
// Swap current timestamps to previous timestamps.
fileCache
.
persistIncremental
();
fileCache
.
persistIncremental
();
// timestamp matches previous timestamp.
// timestamp matches previous timestamp.
expect
(
await
fileCache
.
diffFileList
(<
File
>[
file
]),
isEmpty
);
expect
(
fileCache
.
diffFileList
(<
File
>[
file
]),
isEmpty
);
// clear current timestamp list.
// clear current timestamp list.
fileCache
.
persistIncremental
();
fileCache
.
persistIncremental
();
// modify the time stamp.
// modify the time stamp.
file
.
writeAsStringSync
(
'foo'
);
file
.
setLastModifiedSync
(
DateTime
(
1991
)
);
// verify the file is marked as dirty again.
// verify the file is marked as dirty again.
expect
(
await
fileCache
.
diffFileList
(<
File
>[
file
]),
hasLength
(
1
));
expect
(
fileCache
.
diffFileList
(<
File
>[
file
]),
hasLength
(
1
));
});
});
testWithoutContext
(
'FileStore saves and restores to file cache'
,
()
async
{
testWithoutContext
(
'FileStore saves and restores to file cache'
,
()
async
{
...
@@ -75,7 +75,7 @@ void main() {
...
@@ -75,7 +75,7 @@ void main() {
..
writeAsStringSync
(
'hello'
);
..
writeAsStringSync
(
'hello'
);
fileCache
.
initialize
();
fileCache
.
initialize
();
await
fileCache
.
diffFileList
(<
File
>[
file
]);
fileCache
.
diffFileList
(<
File
>[
file
]);
fileCache
.
persist
();
fileCache
.
persist
();
final
String
currentHash
=
fileCache
.
currentAssetKeys
[
file
.
path
];
final
String
currentHash
=
fileCache
.
currentAssetKeys
[
file
.
path
];
final
Uint8List
buffer
=
cacheFile
final
Uint8List
buffer
=
cacheFile
...
@@ -119,7 +119,7 @@ void main() {
...
@@ -119,7 +119,7 @@ void main() {
cacheFile
.
parent
.
deleteSync
(
recursive:
true
);
cacheFile
.
parent
.
deleteSync
(
recursive:
true
);
await
fileCache
.
diffFileList
(<
File
>[
file
]);
fileCache
.
diffFileList
(<
File
>[
file
]);
expect
(
fileCache
.
persist
,
returnsNormally
);
expect
(
fileCache
.
persist
,
returnsNormally
);
});
});
...
@@ -133,7 +133,7 @@ void main() {
...
@@ -133,7 +133,7 @@ void main() {
);
);
fileCache
.
initialize
();
fileCache
.
initialize
();
final
List
<
File
>
results
=
await
fileCache
.
diffFileList
(<
File
>[
fileSystem
.
file
(
'hello.dart'
)]);
final
List
<
File
>
results
=
fileCache
.
diffFileList
(<
File
>[
fileSystem
.
file
(
'hello.dart'
)]);
expect
(
results
,
hasLength
(
1
));
expect
(
results
,
hasLength
(
1
));
expect
(
results
.
single
.
path
,
'hello.dart'
);
expect
(
results
.
single
.
path
,
'hello.dart'
);
...
@@ -183,7 +183,6 @@ void main() {
...
@@ -183,7 +183,6 @@ void main() {
final
FileStore
fileCache
=
FileStore
(
final
FileStore
fileCache
=
FileStore
(
cacheFile:
cacheFile
,
cacheFile:
cacheFile
,
logger:
BufferLogger
.
test
(),
logger:
BufferLogger
.
test
(),
fileChunkThreshold:
1
,
// Chunk files larger than 1 byte.
);
);
final
File
file
=
fileSystem
.
file
(
'foo.dart'
)
final
File
file
=
fileSystem
.
file
(
'foo.dart'
)
..
createSync
()
..
createSync
()
...
@@ -192,11 +191,9 @@ void main() {
...
@@ -192,11 +191,9 @@ void main() {
cacheFile
.
parent
.
deleteSync
(
recursive:
true
);
cacheFile
.
parent
.
deleteSync
(
recursive:
true
);
await
fileCache
.
diffFileList
(<
File
>[
file
]);
fileCache
.
diffFileList
(<
File
>[
file
]);
// Validate that chunked hash is the same as non-chunked.
expect
(
fileCache
.
currentAssetKeys
[
'foo.dart'
],
'5d41402abc4b2a76b9719d911017c592'
);
expect
(
fileCache
.
currentAssetKeys
[
'foo.dart'
],
md5
.
convert
(
file
.
readAsBytesSync
()).
toString
());
});
});
}
}
...
...
packages/flutter_tools/test/general.shard/build_system/hash_test.dart
0 → 100644
View file @
0f80116a
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:convert'
;
import
'dart:typed_data'
;
import
'package:convert/convert.dart'
;
import
'package:flutter_tools/src/build_system/hash.dart'
;
import
'../../src/common.dart'
;
void
main
(
)
{
// Examples taken from https://en.wikipedia.org/wiki/MD5
testWithoutContext
(
'md5 control test zero length string'
,
()
{
final
Md5Hash
hash
=
Md5Hash
();
expect
(
hex
.
encode
(
hash
.
finalize
().
buffer
.
asUint8List
()),
'd41d8cd98f00b204e9800998ecf8427e'
);
});
testWithoutContext
(
'md5 control test fox test'
,
()
{
final
Md5Hash
hash
=
Md5Hash
();
hash
.
addChunk
(
ascii
.
encode
(
'The quick brown fox jumps over the lazy dog'
));
expect
(
hex
.
encode
(
hash
.
finalize
().
buffer
.
asUint8List
()),
'9e107d9d372bb6826bd81d3542a419d6'
);
});
testWithoutContext
(
'md5 control test fox test with period'
,
()
{
final
Md5Hash
hash
=
Md5Hash
();
hash
.
addChunk
(
ascii
.
encode
(
'The quick brown fox jumps over the lazy dog.'
));
expect
(
hex
.
encode
(
hash
.
finalize
().
buffer
.
asUint8List
()),
'e4d909c290d0fb1ca068ffaddf22cbd0'
);
});
testWithoutContext
(
'Can hash bytes less than 64 length'
,
()
{
final
Uint8List
bytes
=
Uint8List
.
fromList
(<
int
>[
1
,
2
,
3
,
4
,
5
,
6
]);
final
Md5Hash
hashA
=
Md5Hash
();
hashA
.
addChunk
(
bytes
);
expect
(
hashA
.
finalize
(),
<
int
>[
1810219370
,
268668871
,
3900423769
,
1277973076
]);
final
Md5Hash
hashB
=
Md5Hash
();
hashB
.
addChunk
(
bytes
);
expect
(
hashB
.
finalize
(),
<
int
>[
1810219370
,
268668871
,
3900423769
,
1277973076
]);
});
testWithoutContext
(
'Can hash bytes exactly 64 length'
,
()
{
final
Uint8List
bytes
=
Uint8List
.
fromList
(
List
<
int
>.
filled
(
64
,
2
));
final
Md5Hash
hashA
=
Md5Hash
();
hashA
.
addChunk
(
bytes
);
expect
(
hashA
.
finalize
(),
<
int
>[
260592333
,
2557619848
,
2729912077
,
812879060
]);
final
Md5Hash
hashB
=
Md5Hash
();
hashB
.
addChunk
(
bytes
);
expect
(
hashB
.
finalize
(),
<
int
>[
260592333
,
2557619848
,
2729912077
,
812879060
]);
});
testWithoutContext
(
'Can hash bytes more than 64 length'
,
()
{
final
Uint8List
bytes
=
Uint8List
.
fromList
(
List
<
int
>.
filled
(
514
,
2
));
final
Md5Hash
hashA
=
Md5Hash
();
hashA
.
addChunk
(
bytes
);
expect
(
hashA
.
finalize
(),
<
int
>[
387658779
,
2003142991
,
243395797
,
1487291259
]);
final
Md5Hash
hashB
=
Md5Hash
();
hashB
.
addChunk
(
bytes
);
expect
(
hashB
.
finalize
(),
<
int
>[
387658779
,
2003142991
,
243395797
,
1487291259
]);
});
}
packages/flutter_tools/test/general.shard/resident_runner_test.dart
View file @
0f80116a
...
@@ -889,10 +889,10 @@ void main() {
...
@@ -889,10 +889,10 @@ void main() {
testUsingContext
(
'ResidentRunner can send target platform to analytics from hot reload'
,
()
=>
testbed
.
run
(()
async
{
testUsingContext
(
'ResidentRunner can send target platform to analytics from hot reload'
,
()
=>
testbed
.
run
(()
async
{
fakeVmServiceHost
=
FakeVmServiceHost
(
requests:
<
VmServiceExpectation
>[
fakeVmServiceHost
=
FakeVmServiceHost
(
requests:
<
VmServiceExpectation
>[
listViews
,
listViews
,
listViews
,
listViews
,
listViews
,
setAssetBundlePath
,
setAssetBundlePath
,
listViews
,
FakeVmServiceRequest
(
FakeVmServiceRequest
(
method:
'getVM'
,
method:
'getVM'
,
jsonResponse:
vm_service
.
VM
.
parse
(<
String
,
Object
>{
jsonResponse:
vm_service
.
VM
.
parse
(<
String
,
Object
>{
...
@@ -945,6 +945,7 @@ void main() {
...
@@ -945,6 +945,7 @@ void main() {
appStartedCompleter:
onAppStart
,
appStartedCompleter:
onAppStart
,
connectionInfoCompleter:
onConnectionInfo
,
connectionInfoCompleter:
onConnectionInfo
,
));
));
await
onAppStart
.
future
;
final
OperationResult
result
=
await
residentRunner
.
restart
(
fullRestart:
false
);
final
OperationResult
result
=
await
residentRunner
.
restart
(
fullRestart:
false
);
expect
(
result
.
fatal
,
false
);
expect
(
result
.
fatal
,
false
);
...
@@ -966,12 +967,12 @@ void main() {
...
@@ -966,12 +967,12 @@ void main() {
jsonResponse:
fakeVM
.
toJson
(),
jsonResponse:
fakeVM
.
toJson
(),
),
),
listViews
,
listViews
,
setAssetBundlePath
,
listViews
,
listViews
,
FakeVmServiceRequest
(
FakeVmServiceRequest
(
method:
'getVM'
,
method:
'getVM'
,
jsonResponse:
fakeVM
.
toJson
(),
jsonResponse:
fakeVM
.
toJson
(),
),
),
setAssetBundlePath
,
const
FakeVmServiceRequest
(
const
FakeVmServiceRequest
(
method:
'reloadSources'
,
method:
'reloadSources'
,
args:
<
String
,
Object
>{
args:
<
String
,
Object
>{
...
@@ -1054,6 +1055,7 @@ void main() {
...
@@ -1054,6 +1055,7 @@ void main() {
connectionInfoCompleter:
onConnectionInfo
,
connectionInfoCompleter:
onConnectionInfo
,
));
));
await
onAppStart
.
future
;
final
OperationResult
result
=
await
residentRunner
.
restart
(
fullRestart:
false
);
final
OperationResult
result
=
await
residentRunner
.
restart
(
fullRestart:
false
);
expect
(
result
.
fatal
,
false
);
expect
(
result
.
fatal
,
false
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment