S3IOWriter.cpp 1.1 KB
Newer Older
1
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
C
Cai Yudong 已提交
2
//
3 4
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
C
Cai Yudong 已提交
5
//
6 7 8 9 10
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
// or implied. See the License for the specific language governing permissions and limitations under the License.
C
Cai Yudong 已提交
11 12 13 14 15 16 17

#include "storage/s3/S3IOWriter.h"
#include "storage/s3/S3ClientWrapper.h"

namespace milvus {
namespace storage {

C
Cai Yudong 已提交
18
bool
19 20 21
S3IOWriter::open(const std::string& name) {
    name_ = name;
    len_ = 0;
C
Cai Yudong 已提交
22
    buffer_ = "";
C
Cai Yudong 已提交
23
    return true;
C
Cai Yudong 已提交
24 25 26
}

void
C
Cai Yudong 已提交
27
S3IOWriter::write(void* ptr, int64_t size) {
C
Cai Yudong 已提交
28 29 30 31
    buffer_ += std::string(reinterpret_cast<char*>(ptr), size);
    len_ += size;
}

C
Cai Yudong 已提交
32
int64_t
C
Cai Yudong 已提交
33 34 35 36
S3IOWriter::length() {
    return len_;
}

37 38 39 40 41
void
S3IOWriter::close() {
    S3ClientWrapper::GetInstance().PutObjectStr(name_, buffer_);
}

C
Cai Yudong 已提交
42 43
}  // namespace storage
}  // namespace milvus