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 <vrs/ForwardDefinitions.h>
25#include <vrs/VrsExport.h>
26
27namespace vrs {
28
29using std::map;
30using std::set;
31using std::string;
32using std::vector;
33
35namespace FileDetailsCache {
36
45VRS_API int write(
46 const string& cacheFile,
47 const set<StreamId>& streamIds,
48 const map<string, string>& fileTags,
49 const map<StreamId, StreamTags>& streamTags,
50 const vector<IndexRecord::RecordInfo>& recordIndex,
51 bool fileHasIndex);
52
61VRS_API int read(
62 const string& cacheFile,
63 set<StreamId>& outStreamIds,
64 map<string, string>& outFileTags,
65 map<StreamId, StreamTags>& outStreamTags,
66 vector<IndexRecord::RecordInfo>& outRecordIndex,
67 bool& outFileHasIndex);
68
69} // namespace FileDetailsCache
70
71} // namespace vrs
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:225
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:266
Definition Compressor.cpp:113