Android-cuttlefish cvd tool
parser.h
Go to the documentation of this file.
1//
2// Copyright (C) 2026 The Android Open Source Project
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#pragma once
17
18#include <stdint.h>
19
20#include <string>
21#include <string_view>
22
23#include "cuttlefish/io/io.h"
25
26namespace cuttlefish {
27
28class AvbParser {
29 public:
31
32 Result<std::string> LookupProperty(std::string_view key) const;
33
34 private:
35 AvbParser(std::vector<uint8_t> vbmeta);
36
37 std::vector<uint8_t> vbmeta_;
38};
39
40} // namespace cuttlefish
Definition: parser.h:28
std::vector< uint8_t > vbmeta_
Definition: parser.h:37
Result< std::string > LookupProperty(std::string_view key) const
Definition: parser.cc:59
AvbParser(std::vector< uint8_t > vbmeta)
Definition: parser.cc:66
static Result< AvbParser > Parse(ReaderSeeker &)
Definition: parser.cc:34
Definition: io.h:60
#define key
Definition: dict.c:55
std::string_view vbmeta
Definition: android_composite_disk_config.cc:58
Definition: alloc_driver.h:20
tl::expected< T, StackTraceError > Result
Definition: result_type.h:30