至少在静态库的情况下,您可以很方便地解决它。
考虑库foo和bar的那些头。为了本教程的缘故,我还将为您提供源文件
例子/ex01/foo.h
int spam(void);
double eggs(void);
examples / ex01 / foo.c(可能不透明/不可用)
int the_spams;
double the_eggs;
int spam()
{
return the_spams++;
}
double eggs()
{
return the_eggs--;
}
例子/ex01/bar.h
int spam(int new_spams);
double eggs(double new_eggs);
examples / ex01 / bar.c(可能不透明/不可用)
int the_spams;
double the_eggs;
int spam(int new_spams)
{
int old_spams = the_spams;
the_spams = new_spams;
return old_spams;
}
double eggs(double new_eggs)
{
double old_eggs = the_eggs;
the_eggs = new_eggs;
return old_eggs;
}
我们想在程序foobar中使用它们
示例/ex01/foobar.c
#include <stdio.h>
#include "foo.h"
#include "bar.h"
int main()
{
const int new_bar_spam = 3;
const double new_bar_eggs = 5.0f;
printf("foo: spam = %d, eggs = %f\n", spam(), eggs() );
printf("bar: old spam = %d, new spam = %d ; old eggs = %f, new eggs = %f\n",
spam(new_bar_spam), new_bar_spam,
eggs(new_bar_eggs), new_bar_eggs );
return 0;
}
一个问题立即变得显而易见:C不知道重载。因此,我们有两个名称相同但签名不同的函数。因此,我们需要一些方法来区分这些。无论如何,让我们看看编译器对此有何看法:
example/ex01/ $ make
cc -c -o foobar.o foobar.c
In file included from foobar.c:4:
bar.h:1: error: conflicting types for ‘spam’
foo.h:1: note: previous declaration of ‘spam’ was here
bar.h:2: error: conflicting types for ‘eggs’
foo.h:2: note: previous declaration of ‘eggs’ was here
foobar.c: In function ‘main’:
foobar.c:11: error: too few arguments to function ‘spam’
foobar.c:11: error: too few arguments to function ‘eggs’
make: *** [foobar.o] Error 1
好的,这并不奇怪,它只是告诉我们,我们已经知道或至少是怀疑的。
那么我们能以某种方式解决标识符冲突而又不修改原始库的源代码或头文件吗?实际上我们可以。
首先让我们解决编译时问题。为此,我们在标头周围包含一堆预处理程序#define
指令,这些指令对库导出的所有符号进行前缀。稍后,我们使用一些不错的舒适包装器标题来执行此操作,但是只是为了演示正在发生的事情,所以要在foobar.c源文件中逐字进行:
例子/ex02/foobar.c
#include <stdio.h>
#define spam foo_spam
#define eggs foo_eggs
# include "foo.h"
#undef spam
#undef eggs
#define spam bar_spam
#define eggs bar_eggs
# include "bar.h"
#undef spam
#undef eggs
int main()
{
const int new_bar_spam = 3;
const double new_bar_eggs = 5.0f;
printf("foo: spam = %d, eggs = %f\n", foo_spam(), foo_eggs() );
printf("bar: old spam = %d, new spam = %d ; old eggs = %f, new eggs = %f\n",
bar_spam(new_bar_spam), new_bar_spam,
bar_eggs(new_bar_eggs), new_bar_eggs );
return 0;
}
现在,如果我们编译这个...
example/ex02/ $ make
cc -c -o foobar.o foobar.c
cc foobar.o foo.o bar.o -o foobar
bar.o: In function `spam':
bar.c:(.text+0x0): multiple definition of `spam'
foo.o:foo.c:(.text+0x0): first defined here
bar.o: In function `eggs':
bar.c:(.text+0x1e): multiple definition of `eggs'
foo.o:foo.c:(.text+0x19): first defined here
foobar.o: In function `main':
foobar.c:(.text+0x1e): undefined reference to `foo_eggs'
foobar.c:(.text+0x28): undefined reference to `foo_spam'
foobar.c:(.text+0x4d): undefined reference to `bar_eggs'
foobar.c:(.text+0x5c): undefined reference to `bar_spam'
collect2: ld returned 1 exit status
make: *** [foobar] Error 1
...首先看起来情况变得更糟。但是仔细观察:实际上,编译阶段进行得很好。现在只是链接器在抱怨符号冲突,它告诉我们发生这种情况的位置(源文件和行)。正如我们所看到的,这些符号没有前缀。
让我们看一下使用nm实用程序的符号表:
example/ex02/ $ nm foo.o
0000000000000019 T eggs
0000000000000000 T spam
0000000000000008 C the_eggs
0000000000000004 C the_spams
example/ex02/ $ nm bar.o
0000000000000019 T eggs
0000000000000000 T spam
0000000000000008 C the_eggs
0000000000000004 C the_spams
因此,现在我们面临的挑战是如何在不透明的二进制文件中为这些符号添加前缀。是的,我知道在此示例过程中,我们有源,并且可以在那里进行更改。但是现在,假设您只有那些.o文件或.a文件(实际上只是一堆.o文件)。
objcopy进行救援
有一种工具对我们特别有趣:objcopy
objcopy适用于临时文件,因此我们可以像在原地操作那样使用它。有一个选项/操作称为--prefix-symbols,您有3个猜测。
因此,让我们把这个家伙扔到我们顽固的库中:
example/ex03/ $ objcopy --prefix-symbols=foo_ foo.o
example/ex03/ $ objcopy --prefix-symbols=bar_ bar.o
nm向我们表明这似乎可行:
example/ex03/ $ nm foo.o
0000000000000019 T foo_eggs
0000000000000000 T foo_spam
0000000000000008 C foo_the_eggs
0000000000000004 C foo_the_spams
example/ex03/ $ nm bar.o
000000000000001e T bar_eggs
0000000000000000 T bar_spam
0000000000000008 C bar_the_eggs
0000000000000004 C bar_the_spams
让我们尝试链接整个事情:
example/ex03/ $ make
cc foobar.o foo.o bar.o -o foobar
实际上,它的工作原理是:
example/ex03/ $ ./foobar
foo: spam = 0, eggs = 0.000000
bar: old spam = 0, new spam = 3 ; old eggs = 0.000000, new eggs = 5.000000
现在,我将它留给读者作为练习,以实现一种工具/脚本,该工具/脚本将使用nm自动提取库的符号,并编写结构的包装标头文件
#define spam foo_spam
#define eggs foo_eggs
#include <foo.h>
#undef spam
#undef eggs
并使用objcopy将符号前缀应用于静态库的目标文件。
共享库呢?
原则上,共享库也可以这样做。但是,顾名思义,共享库是在多个程序之间共享的,因此以这种方式弄乱共享库并不是一个好主意。
您不会无所事事地编写蹦床包装纸。更糟糕的是,您无法在目标文件级别上链接共享库,而是被迫进行动态加载。但是,这值得拥有自己的文章。
敬请期待,编码愉快。