以灵活且不显眼的方式扩展 C 语言的 API

发布于 2024-12-02 12:15:49 字数 523 浏览 1 评论 0原文

我正在尝试向 API 添加一些附加功能。但是,我希望这些附加函数位于我的外部库中,而不是与原始库的代码混合。

当我需要从我的函数访问上述 API 的静态函数时,问题就出现了。我当然不能,所以我看到的唯一解决方案是将这些函数的代码复制到我的 API 中,或者在原始 API 中使它们成为非静态的。出于显而易见的原因,两者对我来说都不是太好的选择。

更准确地说:

original_api.c
  void some_function() -> uses some_helper_function()  
  static some_helper_function()

my_api_extension.c
  void some_extended_function() -> needs to use some_helper_function from original_api.c, but can't

您能否建议哪种方法是处理此问题的最灵活的方法?

我想指出的是,它仅与 C 相关,与 C++ 无关。

I'm trying to add some additional functionality to an API. However, I'd like these additional functions to be in an external library of mine and not mixed with the original library's code.

The problem comes when I need to access static functions of the mentioned API from my functions. Of course I can't, so the only solution I see is either to copy these functions' code into my API or to make them non-static in the original API. Both are not too good options for me for obvious reasons.

More precisely:

original_api.c
  void some_function() -> uses some_helper_function()  
  static some_helper_function()

my_api_extension.c
  void some_extended_function() -> needs to use some_helper_function from original_api.c, but can't

Could you suggest which would be the most flexible way to handle this?

I'd like to point out that it's related to C only, not C++.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身情人 2024-12-09 12:15:49
  1. 使函数静态。
  2. 创建一个包含指向这些函数的指针的 extern struct 。在单独的 #include 文件中声明它,该文件可供扩展使用,但不适用于整个世界。
  3. 在您的扩展中使用struct

像这样的东西:

// in the private header
typedef struct
{
  void (*p_myfunc1)(int);
  int (*p_myfunc2)(void);
} privateAPI_t;
extern privateAPI_t privateAPI;

// in the library
static void myfunc1(int);
static int myfunc2(void);

privateAPI_t privateAPI = { myfunc1, myfunc2 };

// in the extension
#include <privateAPI.h>
...
privateAPI.p_myfunc1(privateAPI.p_myfunc2());
  1. Make the functions static.
  2. Create an extern struct with pointers to these functions. Declare it in a separate #include file, available to the extension, but not to the entire world.
  3. Use the struct in your extension.

Something like this:

// in the private header
typedef struct
{
  void (*p_myfunc1)(int);
  int (*p_myfunc2)(void);
} privateAPI_t;
extern privateAPI_t privateAPI;

// in the library
static void myfunc1(int);
static int myfunc2(void);

privateAPI_t privateAPI = { myfunc1, myfunc2 };

// in the extension
#include <privateAPI.h>
...
privateAPI.p_myfunc1(privateAPI.p_myfunc2());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文