- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现用于在动态加载的库中填充工厂的代码。这里的代码示例来自here .
#ifndef __SHAPE_H
#define __SHAPE_H
#include <map>
#include <string>
using namespace std;
// base class for all shapes
class shape
{
public:
virtual void draw()=0;
};
// typedef to make it easier to set up our factory
typedef shape *maker_t();
// our global factory
extern map<string, maker_t *,less<string> > factory;
#endif // __SHAPE_H
#ifndef __CIRCLE_H
#define __CIRCLE_H
#include "Shape.h"
class circle : public shape
{
public:
void draw();
};
#endif // __CIRCLE_H
#include <iostream>
#include "Circle.h"
using namespace std;
void circle::draw()
{
// simple ascii circle<\n>
cout << "\n";
cout << " ****\n";
cout << " * *\n";
cout << " * *\n";
cout << " * *\n";
cout << " * *\n";
cout << " * *\n";
cout << " ****\n";
cout << "\n";
}
extern "C" {
shape *maker()
{
return new circle;
}
class proxy
{
public:
proxy()
{
// register the maker with the factory
factory["circle"] = maker;
}
};
// our one instance of the proxy
proxy p;
#include <iostream>
#include <map>
#include <list>
#include <vector>
#include <string>
#include <dlfcn.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include "Shape.h"
using namespace std;
// size of buffer for reading in directory entries
static unsigned int BUF_SIZE = 1024;
// our global factory for making shapes
map<string, maker_t *, less<string> > factory;
int main(int argc, char **argv)
{
FILE *dl; // handle to read directory
char *command_str = "ls *.so"; // command string to get dynamic lib names
char in_buf[BUF_SIZE]; // input buffer for lib names
list<void *> dl_list; // list to hold handles for dynamic libs
list<void *>::iterator itr;
vector<string> shape_names; // vector of shape types used to build menu
list<shape *> shape_list; // list of shape objects we create
list<shape *>::iterator sitr;
map<string, maker_t *, less<string> >::iterator fitr;
// get the names of all the dynamic libs (.so files) in the current dir
dl = popen(command_str, "r");
if (!dl)
{
perror("popen");
return(-1);
}
void *dlib;
char name[1024];
while (fgets(in_buf, BUF_SIZE, dl))
{
// trim off the whitespace
char *ws = strpbrk(in_buf, " \t\n");
if(ws)
{
*ws = '\0';
}
// append ./ to the front of the lib name
sprintf(name, "./%s", in_buf);
dlib = dlopen(name, RTLD_NOW);
if(dlib == NULL)
{
cerr << dlerror() << endl;
return(-1);
}
// add the handle to our list
dl_list.insert(dl_list.end(), dlib);
}
int i = 0;
// create an array of the shape names
for (fitr=factory.begin(); fitr!=factory.end(); fitr++)
{
shape_names.insert(shape_names.end(), fitr->first);
i++;
}
int choice;
// create a menu of possible shapes to create and let the user make some
while (1)
{
i = 1;
for(fitr=factory.begin(); fitr!=factory.end(); fitr++)
{
cout << i << " - Create " << fitr->first << endl;
i++;
}
cout << i << " - Draw created shapes\n";
i++;
cout << i << " - Exit\n";
cout << "> ";
cin >> choice;
if (choice == i)
{
// destroy any shapes we created
for(sitr=shape_list.begin(); sitr!=shape_list.end(); sitr++)
{
delete *sitr;
}
// close all the dynamic libs we opened
for (itr=dl_list.begin(); itr!=dl_list.end(); itr++)
{
dlclose(*itr);
}
return(1);
}
if (choice == i - 1)
{
// draw the shapes
for (sitr=shape_list.begin(); sitr!=shape_list.end(); sitr++)
{
(*sitr)->draw();
}
}
if (choice > 0 && choice < i - 1)
{
// add the appropriate shape to the shape list
shape_list.insert(shape_list.end(), factory[shape_names[choice-1]]());
}
}
}
当我运行它时,出现以下错误:
./libCircle.so: undefined symbol: factory
如何让 libCircle.so 查看工厂 map 并更新它?
最佳答案
您的问题是默认情况下不导出可执行文件中的符号,因此对于 dlopen
加载的库无法解析。
来自 GNU ld 的手册:
-E
--export-dynamic
--no-export-dynamic
When creating a dynamically linked executable, using the -E option or
the --export-dynamic option causes the linker to add all symbols to the
dynamic symbol table. The dynamic symbol table is the set of symbols
which are visible from dynamic objects at run time.
If you do not use either of these options (or use the
--no-export-dynamic option to restore the default behavior), the
dynamic symbol table will normally contain only those symbols which are
referenced by some dynamic object mentioned in the link.
If you use "dlopen" to load a dynamic object which needs to refer back
to the symbols defined by the program, rather than some other dynamic
object, then you will probably need to use this option when linking the
program itself.
You can also use the dynamic list to control what symbols should be
added to the dynamic symbol table if the output format supports it.
See the description of --dynamic-list.
Note that this option is specific to ELF targeted ports. PE targets
support a similar function to export all symbols from a DLL or EXE; see
the description of --export-all-symbols below.
所以你的解决方案是:
dlopen
的库都可以(动态)链接--dynamic-list
从可执行文件中显式导出 factory
--export-dynamic
从可执行文件中显式导出所有符号关于c++ - 动态库找不到main中定义的工厂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46532929/
我应该执行以下操作: 可能通过服务/工厂,使用 $q(异步)查询 API 以获取大型名称数据集 有另一个服务(也是异步的),它应该只返回上述工厂的元素,如果它们与某个字符串(搜索字段)匹配。目的是缩小
我有一个通用的基类。我有一个实现基类的具体类。 我将如何创建工厂类/方法来交付不同类型的具体类? 举个例子: public class ReceiverBase where T : IInte
我正在查看以下链接中的 Ninject Factory 扩展: http://www.planetgeek.ch/2011/12/31/ninject-extensions-factory-intro
工厂、提供商和服务这三个术语之间有什么区别? 刚刚了解 NHibernate 及其存储库模式(POCO 类等)。 最佳答案 工厂:通过将一堆位组合在一起或基于某种上下文选择类型来组装类 Provide
使用CGLIB我可以做到 final var enhancer = new Enhancer(); enhancer.setUseCache(false); enhancer.setSuperclas
我试图在 Kotlin 中使用伴随对象工厂方法(相当于 Java 中的静态工厂方法)创建一个嵌套内部类。这是我的代码的简化版本。 class OuterClass { var myData:L
我正在为我的大学做一个项目,但遇到了问题。 基本上,该项目由一个客户端-服务器应用程序组成,我想创建一个用于通信的 Packet 类。数据包由 header 和主体组成。现在问题来了。我可以有一些不同
这个问题在这里已经有了答案: Why doesn't polymorphism work without pointers/references? (6 个答案) What is object sl
我正在制作一个套接字工厂。我希望每个外部应用程序都使用 Socket 类的接口(interface),它是几个类(ServerSocketTCP、ClientSocketTCP、ServerSocke
我是 angularjs 的新手,我正在尝试创建一个小型电影数据库。这是我第一次使用工厂,我想确保这是正确的方法,以及如何在另一个功能中使用这个工厂,如下所示? 我希望这个工厂只运行一次,这样我就可以
这个问题在这里已经有了答案: Java inner class and static nested class (28 个答案) 关闭 5 年前。 public class DataFactory
我看过很多关于 C++ 工厂的帖子,但到目前为止我还没有看到解决我的问题的解决方案。 (虽然我可能遗漏了一些东西。) 示例控制台应用程序: #include #include #include
这是一个简单的 C++ 项目,有 2 种设计模式:单例和工厂,sigleton 也是一个模板化类,一个接口(interface) (IHash) 和一个类 (Hash1)。一个简单的工厂类 (Hash
这个问题类似于Factory and generics ,并且可能有相同的答案,但它是不同的。我有一个通用基类,它将由完全独立的 JAR 中的类进行扩展。所述 JAR 应该能够在不更改任何其他代码的情
问题是我需要为传递的类创建一个新实例 有没有办法重写这个函数,让它可以接受任意数量的参数? function createInstance(ofClass, arg1, arg2, arg3, ...
我想用简单的 C++ 语法创建一个简单的工厂方法: void *createObject(const char *str,...) { if(!strcmp("X",str)) retu
经过大约 10 个月的程序化 PHP 学习后,我现在正尝试着手研究基本的 OOP 原则和设计模式。这是一个爱好,我没有那么多时间去追求它,所以请原谅这个问题的水平很低。 我的网站(目前 100% 程序
我有一个简单的问题。 我如何编写一个工厂来定义使用 make() 或 create() 的关系,具体取决于原始调用 make() 还是 create()? 这是我的用例: 我有一个简单的工厂 /**
我正在尝试在延迟加载模块中提供 APP_BASE_HREF 注入(inject) token ,然而,工厂方法根本没有被调用。 在这里https://github.com/MaurizioCascia
我有以下 ast: import { factory as f } from 'typescript' const typeDeclaration = f.createTypeAliasDeclara
我是一名优秀的程序员,十分优秀!