Ai
2 Star 0 Fork 0

mirrors_android_source/bsdiff

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
decompressor_interface.cc 823 Bytes
一键复制 编辑 原始数据 按行查看 历史
Alex Deymo 提交于 2018-02-14 23:30 +08:00 . Add missing newline at end of file.
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "bsdiff/decompressor_interface.h"
#include "bsdiff/brotli_decompressor.h"
#include "bsdiff/bz2_decompressor.h"
#include "bsdiff/logging.h"
namespace bsdiff {
std::unique_ptr<DecompressorInterface> CreateDecompressor(CompressorType type) {
switch (type) {
case CompressorType::kBZ2:
return std::unique_ptr<DecompressorInterface>(new BZ2Decompressor());
case CompressorType::kBrotli:
return std::unique_ptr<DecompressorInterface>(new BrotliDecompressor());
default:
LOG(ERROR) << "unsupported compressor type: "
<< static_cast<uint8_t>(type);
return nullptr;
}
}
} // namespace bsdiff
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_android_source/bsdiff.git
git@gitee.com:mirrors_android_source/bsdiff.git
mirrors_android_source
bsdiff
bsdiff
main

搜索帮助