blob: 1ebd665f5835f8f3305e25dfee3364551a317511 [file] [log] [blame]
Sean Paul6a55e9f2015-04-30 15:31:06 -04001/*
2 * Copyright (C) 2015 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#ifndef ANDROID_DRM_PROPERTY_H_
18#define ANDROID_DRM_PROPERTY_H_
19
20#include <stdint.h>
21#include <string>
22#include <xf86drmMode.h>
23#include <vector>
24
25namespace android {
26
27enum DrmPropertyType {
28 DRM_PROPERTY_TYPE_INT,
29 DRM_PROPERTY_TYPE_ENUM,
Sean Paul1eb60062015-05-19 08:10:50 -070030 DRM_PROPERTY_TYPE_INVALID,
Sean Paul6a55e9f2015-04-30 15:31:06 -040031};
32
33class DrmProperty {
34 public:
35 DrmProperty(drmModePropertyPtr p, uint64_t value);
36 DrmProperty();
37 ~DrmProperty();
38
39 void Init(drmModePropertyPtr p, uint64_t value);
40
41 uint32_t id() const;
42 std::string name() const;
43
44 int value(uint64_t *value) const;
45
46 private:
47 class DrmPropertyEnum {
48 public:
49 DrmPropertyEnum(drm_mode_property_enum *e);
50 ~DrmPropertyEnum();
51
52 uint64_t value_;
53 std::string name_;
54 };
55
56 DrmProperty(const DrmProperty &);
57
58 uint32_t id_;
59
60 DrmPropertyType type_;
61 uint32_t flags_;
62 std::string name_;
63 uint64_t value_;
64
65 std::vector<uint64_t> values_;
66 std::vector<DrmPropertyEnum> enums_;
67 std::vector<uint32_t> blob_ids_;
68};
69}
70
71#endif // ANDROID_DRM_PROPERTY_H_