/* Linux/Unix device which represents an IP component of a FPGA. * * Author: Pascal Bauer * * SPDX-FileCopyrightText: 2023-2024 Pascal Bauer * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include #include using villas::kernel::devices::IpDevice; IpDevice IpDevice::from(const std::filesystem::path unsafe_path) { if (!is_path_valid(unsafe_path)) throw RuntimeError( "Path {} failed validation as IpDevicePath [adress in hex].[name] ", unsafe_path.u8string()); return IpDevice(unsafe_path); } std::string IpDevice::ip_name() const { int pos = name().find('.'); return name().substr(pos + 1); } size_t IpDevice::addr() const { size_t pos = name().find('.'); std::string addr_hex = name().substr(0, pos); // Convert from hex-string to number std::stringstream ss; ss << std::hex << addr_hex; size_t addr = 0; ss >> addr; return addr; } bool IpDevice::is_path_valid(const std::filesystem::path unsafe_path) { std::string assumed_device_name = unsafe_path.filename(); // Match format of hexaddr.devicename if (!std::regex_match(assumed_device_name, std::regex(R"([0-9A-Fa-f]+\..*)"))) { return false; } return true; }