DiskIOWriter.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
#include "storage/disk/DiskIOWriter.h"
C
Cai Yudong 已提交
13 14 15 16

namespace milvus {
namespace storage {

C
Cai Yudong 已提交
17
bool
18 19 20
DiskIOWriter::open(const std::string& name) {
    name_ = name;
    len_ = 0;
C
Cai Yudong 已提交
21
    fs_ = std::fstream(name_, std::ios::out | std::ios::binary);
C
Cai Yudong 已提交
22
    return fs_.good();
C
Cai Yudong 已提交
23 24 25
}

void
C
Cai Yudong 已提交
26
DiskIOWriter::write(void* ptr, int64_t size) {
C
Cai Yudong 已提交
27 28 29 30
    fs_.write(reinterpret_cast<char*>(ptr), size);
    len_ += size;
}

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

36 37 38 39 40
void
DiskIOWriter::close() {
    fs_.close();
}

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