C++ modularization framework (like OSGI)? 有没有类似OSGI的c++模块化框架?

C++ modularization framework (like OSGI)?

有没有类似OSGI的c++模块化框架?

OSP:

The authors of the open source Portable Components library (POCO) have also developed a modular framework based on OSGI called OSP or Open Service Platform.http://www.appinf.com/en/products/osp.html. It's not open source however.

POCO的作者开发的一个基于OSGI的模块化框架,叫OSP或Open Service Platform,但是没有开源。

Blueberry and ctk:

There is also BlueBerry http://www.blueberry-project.org which implements a component based framework inspired by OSGi. It also comes with an application framework similar to the Eclipse RCP.

A rewrite of the BlueBerry core can be found in the CTK PluginFramework library (based on Qt Core):Introduction, GitHub Code .

BlueBerry是一个组件框架,开发灵感来自于OSGI。它也带有一个类似的Eclipse RCP的应用框架。

CTK插件框架重写了BlueBerry的核心,它基于QT core。

 qt:

I've never seen a solution to the whole problem, but I implemented something similar usingQt plugins.

The part Qt did nicely (that C++ by itself doesn't implement) was handling C++ OO interfaces in dynamically loadable modules. Because of C++ name-mangling being non-standard, usually DLLs don't have C++ interfaces, only C interfaces. Qt did it with it's meta-object system, and it worked really cleanly for me.




你可能感兴趣的:(eclipse,C++,框架,osgi,qt,library)