VRS
A file format for sensor data.
Loading...
Searching...
No Matches
FileDetailsCache.h
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
19#include <map>
20#include <set>
21#include <string>
22#include <vector>
23
24#include "ForwardDefinitions.h"
25
26namespace vrs {
27
28using std::map;
29using std::set;
30using std::string;
31using std::vector;
32
34namespace FileDetailsCache {
35
44int write(
45 const string& cacheFile,
46 const set<StreamId>& streamIds,
47 const map<string, string>& fileTags,
48 const map<StreamId, StreamTags>& streamTags,
49 const vector<IndexRecord::RecordInfo>& recordIndex,
50 bool fileHasIndex);
51
60int read(
61 const string& cacheFile,
62 set<StreamId>& outStreamIds,
63 map<string, string>& outFileTags,
64 map<StreamId, StreamTags>& outStreamTags,
65 vector<IndexRecord::RecordInfo>& outRecordIndex,
66 bool& outFileHasIndex);
67
68} // namespace FileDetailsCache
69
70} // namespace vrs
int read(const string &cacheFile, set< StreamId > &outStreamIds, map< string, string > &outFileTags, map< StreamId, StreamTags > &outStreamTags, vector< IndexRecord::RecordInfo > &outRecordIndex, bool &outFileHasIndex)
Definition FileDetailsCache.cpp:268
int write(const string &cacheFile, const set< StreamId > &streamIds, const map< string, string > &fileTags, const map< StreamId, StreamTags > &streamTags, const vector< IndexRecord::RecordInfo > &recordIndex, bool fileHasIndex)
Definition FileDetailsCache.cpp:226
Definition AsyncDiskFileChunk.hpp:49