Android-cuttlefish cvd tool
result.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2023 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
17#pragma once
18
19#include <string>
20
21#include <android-base/result.h>
22
23#include "util.h"
24
29
31 public:
33
34 FastbootError(Type&& type) : type_(std::forward<Type>(type)) {}
35
36 Type value() const { return type_; }
37 operator Type() const { return value(); }
38 std::string print() const { return ""; }
39
40 private:
42};
43
44template <typename T, typename U>
45inline T Expect(Result<T, U> r) {
46 if (r.ok()) {
47 return r.value();
48 }
49
50 die(r.error().message());
51
52 return r.value();
53}
Definition: result.h:30
Type value() const
Definition: result.h:36
Type
Definition: result.h:32
@ NETWORK_SERIAL_WRONG_PREFIX
Definition: result.h:32
@ NETWORK_SERIAL_WRONG_ADDRESS
Definition: result.h:32
FastbootError(Type &&type)
Definition: result.h:34
Type type_
Definition: result.h:41
std::string print() const
Definition: result.h:38
Definition: result.h:196
Definition: expected.h:86
T Expect(Result< T, U > r)
Definition: result.h:45
Error< Errno > ErrnoError()
Definition: result.h:264
Definition: logging.h:464
uint8_t type
Definition: pairing_connection.h:0
Definition: result.h:129
void die(const char *fmt,...)
Definition: util.cpp:51