ctp-sys

Crates.ioctp-sys
lib.rsctp-sys
version0.1.3
sourcesrc
created_at2023-11-21 06:15:58.659391
updated_at2023-11-27 09:43:40.151586
descriptionctp rust binding
homepage
repositoryhttps://github.com/daedalus2022/ctp-sys
max_upload_size
id1043759
size11,718,583
daedalus (daedalus2022)

documentation

README

ctp-sys

以 Rust 的方式,简化对接 CTPAPI 的过程,节省精力,快速上手

简介

ctp-sys 提供的 ctp 官方 ctpapi(c++) 的rust版本, 使用 bindgen 转换 ctpapi(c++) 生成。

ctp-sys 目前支持 6.6.5.x(linux)版本, 对应 ctpapi(c++) 的生产版本: v6.6.5_20210924

通过 ctp-sys 库只能连接支持 ctpapi(c++) 官方实现的柜台,如:simnow; 不支持连接所谓的兼容 ctpapi(c++) 接口.

问题记录

  1. 使用相对路径时,wrapper.h 中头文件需要使用双引号,否则会报错Unable to generate bindings: ClangDiagnostic("wrapper.h:1:10: error: 'ctp/6.6.7_20220304/linux64/tradeapi_se/ThostFtdcUserApiStruct.h' file not found with <angled> include; use \"quotes\" instead\n")

  2. linux库名需要lib+"库名称"软连接后才能被ld读取找到

  3. c++的头文件需要使用wrapper.hpp引入,否则无法识别class关键字:Generating Bindings to C++

  4. bindgen 不支持c++的虚拟函数,使用rust-share方案。

相关资源

  1. API来源:上期技术官方网站
  2. tradeapi v6.6.5_20210924
  3. 请参看官方文档

致谢

  1. OPENCTP
  2. rust-share
Commit count: 8

cargo fmt