FileDownloadCacheWrapper
public
class
FileDownloadCacheWrapper
extends Object
implements
IFileDownloader
java.lang.Object 中
|
↳ |
com.android.tradefed.build.FileDownloadCacheWrapper
|
一个封装容器类,可在实现FileDownloadCache
IFileDownloader
接口。
当您希望从调用方抽象出对缓存的使用时,此用例很有用。
摘要
公共方法 |
void
|
downloadFile(String remoteFilePath, File destFile)
downloadFile(String) 的替代形式,允许调用方指定
目标文件。
|
File
|
downloadFile(String remoteFilePath)
将远程文件下载到本地磁盘上的临时文件中。
|
void
|
downloadZippedFiles(File destDir, String remoteFilePath, includeFilters, excludeFilters)
以远程 ZIP 文件形式下载符合指定过滤条件的文件。
|
boolean
|
isFresh(File localFile, String remoteFilePath)
检查本地文件的时效性。
|
公共构造函数
FileDownloadCacheWrapper
public FileDownloadCacheWrapper (File cacheDir,
IFileDownloader delegateDownloader)
参数 |
cacheDir |
File |
delegateDownloader |
IFileDownloader |
公共方法
下载
public void downloadFile (String remoteFilePath,
File destFile)
downloadFile(String)
的替代形式,允许调用方指定
目标文件。
参数 |
remoteFilePath |
String :要下载的文件的远程路径(相对于
特定于实现的根。 |
destFile |
File :用于存放已下载的内容的文件。不应存在。 |
下载
public File downloadFile (String remoteFilePath)
将远程文件下载到本地磁盘上的临时文件中。
参数 |
remoteFilePath |
String :要下载的文件的远程路径(相对于实现)
特定根。 |
下载 ZippedFiles
public void downloadZippedFiles (File destDir,
String remoteFilePath,
includeFilters,
excludeFilters)
以远程 ZIP 文件形式下载符合指定过滤条件的文件。
远程 zip 文件中的文件只会下载到与任何
包含过滤器,但不包含排除过滤器。
参数 |
destDir |
File :用于存放已下载的内容的文件。 |
remoteFilePath |
String :要下载的文件的远程路径(相对于实现)
特定根。 |
includeFilters |
:用于下载匹配文件的过滤条件列表。 |
excludeFilters |
:用于跳过下载匹配文件的过滤条件列表。 |
新鲜出炉
public boolean isFresh (File localFile,
String remoteFilePath)
检查本地文件的时效性。如果本地文件与远程文件相同,则为新的文件。如果
因为本地文件已过时。这主要用于缓存。默认实现将
始终返回 true,因此如果文件不可变,则永远不需要检查新鲜度。
参数 |
localFile |
File :本地文件。 |
remoteFilePath |
String :远程文件路径。 |
返回 |
boolean |
如果本地文件是最新的,则为 true,否则为 false。 |