Fuchsia 上的软件通过公开条目与驱动程序组件交互 在 devfs 中。当客户端连接到驱动程序的 devfs 条目后 它会接收表示该驱动程序的 FIDL 服务实例。
在本部分中,您将创建一个新的 eductl
可执行文件,用于发现和
与 qemu_edu
驱动程序公开的 capability 交互。
创建新的工具组件
在 Bazel 工作区中,为新的二进制工具创建新的项目目录:
mkdir -p fuchsia-codelab/qemu_edu/tools
完成本部分后,项目应具有以下目录 结构:
//fuchsia-codelab/qemu_edu/tools
|- BUILD.bazel
|- eductl.cc
创建 qemu_edu/tools/BUILD.bazel
文件并将以下语句添加到
添加来自 Fuchsia SDK 的必要构建规则:
qemu_edu/tools/BUILD.bazel
:
load(
"@fuchsia_sdk//fuchsia:defs.bzl",
"fuchsia_cc_binary",
"fuchsia_component",
"fuchsia_component_manifest",
"fuchsia_driver_tool",
"fuchsia_package",
)
使用以下代码创建一个新的 qemu_edu/tools/eductl.cc
文件,以设置
基本命令行可执行文件:
qemu_edu/tools/eductl.cc
:
#include <ctype.h>
#include <dirent.h>
#include <fcntl.h>
#include <getopt.h>
#include <lib/fdio/directory.h>
#include <libgen.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <filesystem>
int usage(const char* cmd) {
fprintf(stderr,
"\nInteract with the QEMU edu device:\n"
" %s live Performs a card liveness check\n"
" %s fact <n> Computes the factorial of n\n"
" %s help Print this message\n",
cmd, cmd, cmd);
return -1;
}
// Returns "true" if the argument matches the prefix.
// In this case, moves the argument past the prefix.
bool prefix_match(const char** arg, const char* prefix) {
if (!strncmp(*arg, prefix, strlen(prefix))) {
*arg += strlen(prefix);
return true;
}
return false;
}
constexpr long kBadParse = -1;
long parse_positive_long(const char* number) {
char* end;
long result = strtol(number, &end, 10);
if (end == number || *end != '\0' || result < 0) {
return kBadParse;
}
return result;
}
int main(int argc, char* argv[]) {
const char* cmd = basename(argv[0]);
// ...
return usage(cmd);
}
该可执行文件支持两个子命令,用于执行活跃性检查和 阶乘计算。
将以下新规则添加到项目 build 配置的底部 将此新工具构建到 Fuchsia 软件包中:
qemu_edu/tools/BUILD.bazel
:
fuchsia_cc_binary(
name = "eductl",
srcs = [
"eductl.cc",
],
deps = [
"@fuchsia_sdk//pkg/component_incoming_cpp",
"@fuchsia_sdk//pkg/fdio",
"@fuchsia_sdk//pkg/fidl_cpp_wire",
],
)
fuchsia_driver_tool(
name = "eductl_tool",
binary = ":eductl",
visibility = ["//visibility:public"],
)
fuchsia_package(
name = "pkg",
package_name = "eductl",
tools = [
":eductl_tool",
],
visibility = ["//visibility:public"],
)
实现客户端工具
当客户端打开与 devfs 中的某个条目的连接时,会接收到一个
驱动程序提供的 FIDL 协议。将以下代码添加到 eductl
使用 edu
设备的 devfs 路径打开与该设备的连接:
qemu_edu/tools/eductl.cc
:
#include <ctype.h>
#include <dirent.h>
#include <fcntl.h>
#include <getopt.h>
#include <lib/fdio/directory.h>
#include <libgen.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <filesystem>
#include <fidl/examples.qemuedu/cpp/wire.h>
constexpr char kDevfsRootPath[] = "/dev/sys/platform";
constexpr char kEduDevicePath[] = "qemu-edu";
// Search for the device file entry in devfs
std::optional<std::string> SearchDevicePath() {
for (auto const& dir_entry : std::filesystem::recursive_directory_iterator(kDevfsRootPath)) {
if (dir_entry.path().string().find(kEduDevicePath) != std::string::npos) {
return {dir_entry.path()};
}
}
return {};
}
// Open a FIDL client connection to the examples.qemuedu.Device
fidl::WireSyncClient<examples_qemuedu::Device> OpenDevice() {
auto device_path = SearchDevicePath();
if (!device_path.has_value()) {
fprintf(stderr, "Unable to locate %s device path in search of %s/*/\n", kEduDevicePath,
kDevfsRootPath);
return {};
}
zx::result endpoints = fidl::CreateEndpoints<examples_qemuedu::Device>();
if (endpoints.is_error()) {
fprintf(stderr, "Failed to create endpoints: %s\n", endpoints.status_string());
return {};
}
if (zx_status_t status = fdio_service_connect(device_path.value().c_str(),
endpoints->server.TakeChannel().release());
status != ZX_OK) {
fprintf(stderr, "Failed to connect to device: %s\n", zx_status_get_string(status));
return {};
}
return fidl::WireSyncClient(std::move(endpoints->client));
}
// ...
添加 liveness_check()
和 compute_factorial()
函数,以使用以下参数调用方法:
从 OpenDevice()
返回的 examples.qemuedu/Device
FIDL 协议。
最后,更新该工具的 main()
函数以调用相应的设备
函数:
qemu_edu/tools/eductl.cc
:
// ...
// Run a liveness check on the QEMU edu device.
// Returns 0 on success.
int liveness_check() {
auto client = OpenDevice();
if (!client.is_valid()) {
return -1;
}
auto liveness_check_result = client->LivenessCheck();
if (!liveness_check_result.ok()) {
fprintf(stderr, "Error: failed to get liveness check result: %s\n",
zx_status_get_string(liveness_check_result.status()));
return -1;
}
if (liveness_check_result->value()->result) {
printf("Liveness check passed!\n");
return 0;
} else {
printf("Liveness check failed!\n");
return -1;
}
}
// Compute the factorial of n using the QEMU edu device.
// Returns 0 on success.
int compute_factorial(long n) {
auto client = OpenDevice();
if (!client.is_valid()) {
return -1;
}
if (n >= std::numeric_limits<uint32_t>::max()) {
fprintf(stderr, "N is too large\n");
return -1;
}
uint32_t input = static_cast<uint32_t>(n);
auto compute_factorial_result = client->ComputeFactorial(input);
if (!compute_factorial_result.ok()) {
fprintf(stderr, "Error: failed to call compute factorial result: %s\n",
zx_status_get_string(compute_factorial_result.status()));
return -1;
}
printf("Factorial(%u) = %u\n", input, compute_factorial_result->value()->output);
return 0;
}
int main(int argc, char* argv[]) {
const char* cmd = basename(argv[0]);
// If no arguments passed, bail out after dumping
// usage information.
if (argc < 2) {
return usage(cmd);
}
const char* arg = argv[1];
if (prefix_match(&arg, "live")) {
return liveness_check();
} else if (prefix_match(&arg, "fact")) {
if (argc < 3) {
fprintf(stderr, "Expecting 1 argument\n");
return usage(cmd);
}
long n = parse_positive_long(argv[2]);
return compute_factorial(n);
}
return usage(cmd);
}
更新该工具的 build 配置,使其依赖于
examples.qemuedu
库:
qemu_edu/tools/BUILD.bazel
:
fuchsia_cc_binary(
name = "eductl",
srcs = [
"eductl.cc",
],
deps = [
"//fuchsia-codelab/qemu_edu/fidl:examples.qemuedu_cc",
"@fuchsia_sdk//pkg/component_incoming_cpp",
"@fuchsia_sdk//pkg/fdio",
"@fuchsia_sdk//pkg/fidl_cpp_wire",
],
)
重启模拟器
关停任何现有的模拟器实例:
ffx emu stop --all
启动一个新的 Fuchsia 模拟器实例,并启用驱动程序框架:
ffx emu start core.x64 --headless
重新加载驱动程序
使用 bazel run
命令构建和执行驱动程序组件目标:
bazel run //fuchsia-codelab/qemu_edu/drivers:pkg.component
运行该工具
使用 bazel run
命令构建和执行该工具,并传递参数
fact 12
计算 12 的阶乘:
bazel run //fuchsia-codelab/qemu_edu/tools:pkg.eductl_tool -- fact 12
bazel run
命令会执行以下步骤:
- 构建可执行文件和软件包。
- 将软件包发布到本地软件包代码库。
- 向目标设备注册软件包代码库。
- 使用
ffx driver run-tool
在driver_playground
中运行二进制文件 组件。
该命令会输出类似于以下内容的输出以及计算结果 求阶乘:
Factorial(12) = 479001600
恭喜!您已成功连接到驾驶员公开的服务 来自另一个客户端