当前位置: 首页 > article >正文

【CXX】6.4 CxxString — std::string

std::string 的 Rust 绑定称为 CxxString。有关 Rust API 的文档,请参见链接。

限制:

Rust 代码永远不能通过值获取 CxxString。C++ 的 string 需要一个移动构造函数,并且可能持有内部指针,这与 Rust 的移动行为不兼容。因此,在 Rust 代码中,我们只能通过引用或智能指针来查看 CxxString,例如 &CxxString、Pin<&mut CxxString> 或 UniquePtr。

为了在 Rust 中在栈上构造一个 CxxString,你必须使用 let_cxx_string! 宏,该宏会正确地固定字符串。下面的代码在一个地方使用了这个宏,链接中涵盖了其语法。

示例

这个示例使用 C++17 的 std::variant 来构建一个玩具 JSON 类型。JSON 可以包含各种类型,包括字符串,而 JSON 的对象类型是一个带有字符串键的映射。该示例演示了 Rust 如何索引到这些映射之一。

// src/main.rs

use cxx::let_cxx_string;

#[cxx::bridge]
mod ffi {
unsafe extern "C++" {
include!("example/include/json.h");

    #[cxx_name = "json"]
    type Json;
    #[cxx_name = "object"]
    type Object;

    fn isNull(self: &Json) -> bool;
    fn isNumber(self: &Json) -> bool;
    fn isString(self: &Json) -> bool;
    fn isArray(self: &Json) -> bool;
    fn isObject(self: &Json) -> bool;

    fn getNumber(self: &Json) -> f64;
    fn getString(self: &Json) -> &CxxString;
    fn getArray(self: &Json) -> &CxxVector<Json>;
    fn getObject(self: &Json) -> &Object;

    #[cxx_name = "at"]
    fn get<'a>(self: &'a Object, key: &CxxString) -> &'a Json;

    fn load_config() -> UniquePtr<Json>;
}
}

fn main() {
let config = ffi::load_config();

let_cxx_string!(key = "name");
println!("{}", config.getObject().get(&key).getString());
}
// include/json.h

#pragma once
#include <map>
#include <memory>
#include <string>
#include <variant>
#include <vector>

class json final {
public:
static const json null;
using number = double;
using string = std::string;
using array = std::vector<json>;
using object = std::map<string, json>;

json() noexcept = default;
json(const json &) = default;
json(json &&) = default;
template <typename... T>
json(T &&...value) : value(std::forward<T>(value)...) {}

bool isNull() const;
bool isNumber() const;
bool isString() const;
bool isArray() const;
bool isObject() const;

number getNumber() const;
const string &getString() const;
const array &getArray() const;
const object &getObject() const;

private:
std::variant<std::monostate, number, string, array, object> value;
};

using object = json::object;

std::unique_ptr<json> load_config();
// include/json.cc

#include "example/include/json.h"
#include <initializer_list>
#include <utility>

const json json::null{};
bool json::isNull() const { return std::holds_alternativestd::monostate(value); }
bool json::isNumber() const { return std::holds_alternative<number>(value); }
bool json::isString() const { return std::holds_alternative<string>(value); }
bool json::isArray() const { return std::holds_alternative<array>(value); }
bool json::isObject() const { return std::holds_alternative<object>(value); }
json::number json::getNumber() const { return std::get<number>(value); }
const json::string &json::getString() const { return std::get<string>(value); }
const json::array &json::getArray() const { return std::get<array>(value); }
const json::object &json::getObject() const { return std::get<object>(value); }

std::unique_ptr<json> load_config() {
return std::make_unique<json>(
std::in_place_typejson::object,
std::initializer_list<std::pair<const std::string, json>>{
{"name", "cxx-example"},
{"edition", 2021.},
{"repository", json::null}});
}

http://www.kler.cn/a/581291.html

相关文章:

  • LeetCode100之二叉树的直径(543)--Java
  • 牵引线标注:让地图信息更清晰的ArcGIS Pro技巧
  • 制作自定义镜像
  • docker-compose Install m3e(fastgpt扩展) GPU模式
  • 跨公网 NAT 配置方案:实现高效网络通信与安全访问
  • 关于在vue3中使用keep-live+component标签组合,实现对指定某些组件进行缓存或不缓存的问题
  • 【软考-架构】2.3、设备管理-文件管理
  • flinkOracleCdc任务报错kafkaConnectSchema
  • 基于 Simulink 的超级储能参与电网一次调频仿真研究
  • 怎么删除百度搜索下拉框里的搜索引导词
  • KTH31XX 系列_比例式线性霍尔效应传感器,模拟电压输出
  • Go Ebiten小游戏开发:俄罗斯方块
  • Pytorch系列教程:可视化Pytorch模型训练过程
  • SpringBoot日常:集成shareingsphere-jdbc
  • 【网络协议详解】——QOS技术(学习笔记)
  • 哪些业务场景更适合用MongoDB?何时比MySQL/PostgreSQL好用?
  • FastAPI 分页模块实现详解
  • 数据的划分、性能指标和评估方法
  • 《使用 Python Flask + MySQL + ECharts 构建销售数据看板》实战案例笔记
  • CAN总线协议攻防实战:从漏洞分析到攻击模拟