|
| 1 | +/* |
| 2 | + * |
| 3 | + * Copyright (c) 2022 Project CHIP Authors |
| 4 | + * |
| 5 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + * you may not use this file except in compliance with the License. |
| 7 | + * You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | +#pragma once |
| 18 | + |
| 19 | +#include <lib/core/CHIPError.h> |
| 20 | +#include <lib/support/Span.h> |
| 21 | + |
| 22 | +namespace chip { |
| 23 | +namespace DeviceLayer { |
| 24 | + |
| 25 | +class DeviceInstanceInfoProvider |
| 26 | +{ |
| 27 | +public: |
| 28 | + DeviceInstanceInfoProvider() = default; |
| 29 | + virtual ~DeviceInstanceInfoProvider() = default; |
| 30 | + |
| 31 | + /** |
| 32 | + * @brief Obtain the Serial Number from the device's factory data. |
| 33 | + * |
| 34 | + * The SerialNumber attribute specifies a human readable serial number |
| 35 | + * |
| 36 | + * @param[in, out] buf Buffer to copy string. |
| 37 | + * On CHIP_NO_ERROR return from this function this buffer will be null-terminated. |
| 38 | + * On error CHIP_ERROR_BUFFER_TOO_SMALL there is no guarantee that buffer will be null-terminated. |
| 39 | + * @param[in] bufSize Size of data, including the null terminator, that can be written to buf. |
| 40 | + * This size should be +1 higher than maximum possible string. |
| 41 | + * @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation |
| 42 | + * if access fails. |
| 43 | + */ |
| 44 | + virtual CHIP_ERROR GetSerialNumber(char * buf, size_t bufSize) = 0; |
| 45 | + |
| 46 | + /** |
| 47 | + * @brief Obtain a manufacturing date from the device's factory data. |
| 48 | + * |
| 49 | + * The ManufacturingDate attribute specifies the date that the Node was manufactured. |
| 50 | + * Output values are returned in ISO 8601, where: |
| 51 | + * The first month of the year is January and its returning value is equal to 1. |
| 52 | + * The first day of a month starts from 1. |
| 53 | + * |
| 54 | + * @param[out] year Reference to location where manufacturing year will be stored |
| 55 | + * @param[out] month 1-based value [range 1-12] Reference to location where manufacturing month will be stored |
| 56 | + * @param[out] day 1-based value [range 1-31] Reference to location where manufacturing day will be stored |
| 57 | + * @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation |
| 58 | + * if access fails. |
| 59 | + */ |
| 60 | + virtual CHIP_ERROR GetManufacturingDate(uint16_t & year, uint8_t & month, uint8_t & day) = 0; |
| 61 | + |
| 62 | + /** |
| 63 | + * @brief Obtain a Hardware Version from the device's factory data. |
| 64 | + * |
| 65 | + * @param[out] hardwareVersion Reference to location where the hardware version integer will be copied |
| 66 | + * @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation |
| 67 | + * if access fails. |
| 68 | + */ |
| 69 | + virtual CHIP_ERROR GetHardwareVersion(uint16_t & hardwareVersion) = 0; |
| 70 | + |
| 71 | + /** |
| 72 | + * @brief Obtain a Hardware Version String from the device's factory data. |
| 73 | + * |
| 74 | + * The HardwareVersionString can be used to provide a more user-friendly value than that |
| 75 | + * represented by the HardwareVersion attribute. |
| 76 | + * |
| 77 | + * @param[in, out] buf Buffer to copy string. |
| 78 | + * On CHIP_NO_ERROR return from this function this buffer will be null-terminated. |
| 79 | + * On error CHIP_ERROR_BUFFER_TOO_SMALL there is no guarantee that buffer will be null-terminated. |
| 80 | + * @param[in] bufSize Size of data, including the null terminator, that can be written to buf. |
| 81 | + * This size should be +1 higher than maximum possible string. |
| 82 | + * @returns CHIP_NO_ERROR on success, CHIP_ERROR_BUFFER_TOO_SMALL if the buffer was too small to fit string and null |
| 83 | + * terminating. or another CHIP_ERROR from the underlying implementation if access fails. |
| 84 | + */ |
| 85 | + virtual CHIP_ERROR GetHardwareVersionString(char * buf, size_t bufSize) = 0; |
| 86 | + |
| 87 | + /** |
| 88 | + * @brief Obtain a Rotating Device ID Unique ID from the device's factory data. |
| 89 | + * |
| 90 | + * The unique identifier consists of a randomly-generated 128-bit or longer octet string which |
| 91 | + * was programmed during factory provisioning or delivered to the device by the vendor using |
| 92 | + * secure means after a software update. |
| 93 | + * |
| 94 | + * @param[out] uniqueIdSpan Reference to location where the Rotating Device ID Unique ID will be copied |
| 95 | + * According to specification input size of span buffer should be declared with at least 16 Bytes |
| 96 | + * length The size of uniqueIdSpan is reduced to actual value on success |
| 97 | + * @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation |
| 98 | + * if access fails. |
| 99 | + */ |
| 100 | + virtual CHIP_ERROR GetRotatingDeviceIdUniqueId(MutableByteSpan & uniqueIdSpan) = 0; |
| 101 | +}; |
| 102 | + |
| 103 | +/** |
| 104 | + * Instance getter for the global DeviceInstanceInfoProvider. |
| 105 | + * |
| 106 | + * Callers have to externally synchronize usage of this function. |
| 107 | + * |
| 108 | + * @return The pointer to global device instance info provider. Assume never null. |
| 109 | + */ |
| 110 | +DeviceInstanceInfoProvider * GetDeviceInstanceInfoProvider(); |
| 111 | + |
| 112 | +/** |
| 113 | + * Instance setter for the global DeviceInstanceInfoProvider. |
| 114 | + * |
| 115 | + * Callers have to externally synchronize usage of this function. |
| 116 | + * |
| 117 | + * If the `provider` is nullptr, no change is done. |
| 118 | + * |
| 119 | + * @param[in] provider the DeviceInstanceInfoProvider pointer to start returning with the getter |
| 120 | + */ |
| 121 | +void SetDeviceInstanceInfoProvider(DeviceInstanceInfoProvider * provider); |
| 122 | + |
| 123 | +} // namespace DeviceLayer |
| 124 | +} // namespace chip |
0 commit comments