DiskIOReader.cpp 1.3 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/DiskIOReader.h"
C
Cai Yudong 已提交
13 14 15 16

namespace milvus {
namespace storage {

C
Cai Yudong 已提交
17
bool
18
DiskIOReader::Open(const std::string& name) {
19
    name_ = name;
C
Cai Yudong 已提交
20
    fs_ = std::fstream(name_, std::ios::in | std::ios::binary);
21
    return fs_.is_open();
C
Cai Yudong 已提交
22 23 24
}

void
25
DiskIOReader::Read(void* ptr, int64_t size) {
C
Cai Yudong 已提交
26 27 28 29
    fs_.read(reinterpret_cast<char*>(ptr), size);
}

void
30
DiskIOReader::Seekg(int64_t pos) {
C
Cai Yudong 已提交
31 32 33
    fs_.seekg(pos);
}

C
Cai Yudong 已提交
34
int64_t
35 36 37 38 39
DiskIOReader::Length() {
    /* save current position */
    int64_t cur = fs_.tellg();

    /* move position to end of file */
C
Cai Yudong 已提交
40
    fs_.seekg(0, fs_.end);
C
Cai Yudong 已提交
41
    int64_t len = fs_.tellg();
42 43 44

    /* restore position */
    fs_.seekg(cur, fs_.beg);
45
    return len;
C
Cai Yudong 已提交
46
}
47 48

void
49
DiskIOReader::Close() {
50 51 52
    fs_.close();
}

C
Cai Yudong 已提交
53 54
}  // namespace storage
}  // namespace milvus