We are developing a middleware SDK, both in C++ and Java to be used as a library/DLL by, for example, game developers, animation software developers, Avatar developers to enhance their products.
我们正在开发一个中间件SDK,用C ++和Java作为库/ DLL,例如,由游戏开发者,动画软件开发人员,Avatar开发人员来增强他们的产品。
What I would like to know is this: Are there standard "Best Practices" for the development of these types of API?
我想知道的是:开发这些类型的API是否有标准的“最佳实践”?
I am thinking in terms of usability, readability, efficiency etc.
我在考虑可用性,可读性,效率等方面。
5 个解决方案
#1
6
My two favourite resources on the subject: http://mollyrocket.com/873 and http://video.google.com/videoplay?docid=-3733345136856180693
我关于这个主题的两个最喜欢的资源:http://mollyrocket.com/873和http://video.google.com/videoplay?docid=-3733345136856180693
#2
2
From using third party libraries on Windows I've learned the following two things:
通过在Windows上使用第三方库,我学到了以下两点:
Try to distribute your library as a DLL rather than a static library. This gives way better compatibility between different c compilers and linkers. Another problem with static libraries in visual c++ is that the choice of runtime library can make libraries incompatible with code using a different runtime library and you may end up needing to distribute one version of the library for each runtime library.
尝试将您的库分发为DLL而不是静态库。这使得不同的c编译器和链接器之间的兼容性更好。 Visual c ++中静态库的另一个问题是运行时库的选择会使库与使用不同运行时库的代码不兼容,并且您可能最终需要为每个运行时库分发一个版本的库。
Avoid c++ if possible. The c++ name mangling differs alot between different compilers and it's unlikely that a library built for visual c++ will be possible to link from another build environment in windows. When it comes to C, things are much better, in particular if you use dll's.
尽可能避免使用c ++。 c ++名称修改在不同编译器之间存在很大差异,并且为Visual c ++构建的库不太可能从Windows中的另一个构建环境进行链接。说到C,事情要好得多,特别是如果你使用dll的话。
If you really want to get the good parts of c++ (such as resource management through constructors and destructors), build a convenience layer in c++ that you distribute as source code that hides away your c functions. Since the user has the source and compiles it locally, it won't have any name mangiling or abi issues with the local environment.
如果你真的想要获得c ++的优点(例如通过构造函数和析构函数进行资源管理),那么在c ++中构建一个方便的层,你将它作为源代码分发,隐藏你的c函数。由于用户拥有源并在本地编译它,因此它不具有本地环境的任何名称mangiling或abi问题。
Without knowing too much about calling c/c++ code from Java, I expect it to be way easier to work with c code than c++ code because of the name mangling issues.
在不太了解从Java调用c / c ++代码的情况下,我希望使用c代码比使用c ++代码更容易,因为名称错误问题。
The book "Imperfect C++" has some discussion on library compatibility that I found very helpful.
“Imperfect C ++”一书对库兼容性进行了一些讨论,我发现它非常有用。
#3
1
The video from Josh Bloch mentioned by yrp is a classic - I second that recommendation.
yrp提到的来自Josh Bloch的视频是一个经典 - 我推荐的第二个。
Some general guidelines:
一些一般准则:
- DO define your API primarily in terms of interfaces, factories, and builders.
- DO clearly specify exactly which packages and classes are part of the API.
- DO provide a jar specifically used for compiling against the API.
- DO NOT rely heavily on inheritance or the template method pattern - over time this becomes fragile and broken.
- DO NOT use the singleton pattern or at least use it with extreme caution.
- DO create package and class level javadoc explaining usage and concepts.
主要根据接口,工厂和构建器来定义API。
请明确指出哪些包和类是API的一部分。
提供专门用于编译API的jar。
不要过分依赖继承或模板方法模式 - 随着时间的推移,这会变得脆弱和破碎。
不要使用单例模式或至少使用它时要格外小心。
请创建解释用法和概念的包和类级别javadoc。
#4
0
There are lots of ways to design apis, depending on what you are solving. I think a full answer to this question would be worthy off a whole book, such as the gang of four patterns book. For Java specifically, and also just OO programming in general, I would recommend Effecitve Java 2nd Edition. The first is general and alot of popular programming patterns, when they apply and their benefits. Effective Java is Java centered, but parts of it is general enough to apply to any programming language.
有很多方法可以设计apis,具体取决于你要解决的问题。我认为这个问题的完整答案对于整本书来说是值得的,例如四人模式书。对于Java而言,以及一般的OO编程,我建议使用Effecitve Java第二版。首先是一般的和很多流行的编程模式,当它们适用时及其好处。有效的Java是以Java为中心的,但它的一部分足以应用于任何编程语言。
#5
0
Take a look at Framework Design Guidelines. I know it is .NET specific, but you can probably learn a lot of general information from it too.
看看框架设计指南。我知道它是特定于.NET的,但您也可以从中学到很多一般信息。
#1
6
My two favourite resources on the subject: http://mollyrocket.com/873 and http://video.google.com/videoplay?docid=-3733345136856180693
我关于这个主题的两个最喜欢的资源:http://mollyrocket.com/873和http://video.google.com/videoplay?docid=-3733345136856180693
#2
2
From using third party libraries on Windows I've learned the following two things:
通过在Windows上使用第三方库,我学到了以下两点:
Try to distribute your library as a DLL rather than a static library. This gives way better compatibility between different c compilers and linkers. Another problem with static libraries in visual c++ is that the choice of runtime library can make libraries incompatible with code using a different runtime library and you may end up needing to distribute one version of the library for each runtime library.
尝试将您的库分发为DLL而不是静态库。这使得不同的c编译器和链接器之间的兼容性更好。 Visual c ++中静态库的另一个问题是运行时库的选择会使库与使用不同运行时库的代码不兼容,并且您可能最终需要为每个运行时库分发一个版本的库。
Avoid c++ if possible. The c++ name mangling differs alot between different compilers and it's unlikely that a library built for visual c++ will be possible to link from another build environment in windows. When it comes to C, things are much better, in particular if you use dll's.
尽可能避免使用c ++。 c ++名称修改在不同编译器之间存在很大差异,并且为Visual c ++构建的库不太可能从Windows中的另一个构建环境进行链接。说到C,事情要好得多,特别是如果你使用dll的话。
If you really want to get the good parts of c++ (such as resource management through constructors and destructors), build a convenience layer in c++ that you distribute as source code that hides away your c functions. Since the user has the source and compiles it locally, it won't have any name mangiling or abi issues with the local environment.
如果你真的想要获得c ++的优点(例如通过构造函数和析构函数进行资源管理),那么在c ++中构建一个方便的层,你将它作为源代码分发,隐藏你的c函数。由于用户拥有源并在本地编译它,因此它不具有本地环境的任何名称mangiling或abi问题。
Without knowing too much about calling c/c++ code from Java, I expect it to be way easier to work with c code than c++ code because of the name mangling issues.
在不太了解从Java调用c / c ++代码的情况下,我希望使用c代码比使用c ++代码更容易,因为名称错误问题。
The book "Imperfect C++" has some discussion on library compatibility that I found very helpful.
“Imperfect C ++”一书对库兼容性进行了一些讨论,我发现它非常有用。
#3
1
The video from Josh Bloch mentioned by yrp is a classic - I second that recommendation.
yrp提到的来自Josh Bloch的视频是一个经典 - 我推荐的第二个。
Some general guidelines:
一些一般准则:
- DO define your API primarily in terms of interfaces, factories, and builders.
- DO clearly specify exactly which packages and classes are part of the API.
- DO provide a jar specifically used for compiling against the API.
- DO NOT rely heavily on inheritance or the template method pattern - over time this becomes fragile and broken.
- DO NOT use the singleton pattern or at least use it with extreme caution.
- DO create package and class level javadoc explaining usage and concepts.
主要根据接口,工厂和构建器来定义API。
请明确指出哪些包和类是API的一部分。
提供专门用于编译API的jar。
不要过分依赖继承或模板方法模式 - 随着时间的推移,这会变得脆弱和破碎。
不要使用单例模式或至少使用它时要格外小心。
请创建解释用法和概念的包和类级别javadoc。
#4
0
There are lots of ways to design apis, depending on what you are solving. I think a full answer to this question would be worthy off a whole book, such as the gang of four patterns book. For Java specifically, and also just OO programming in general, I would recommend Effecitve Java 2nd Edition. The first is general and alot of popular programming patterns, when they apply and their benefits. Effective Java is Java centered, but parts of it is general enough to apply to any programming language.
有很多方法可以设计apis,具体取决于你要解决的问题。我认为这个问题的完整答案对于整本书来说是值得的,例如四人模式书。对于Java而言,以及一般的OO编程,我建议使用Effecitve Java第二版。首先是一般的和很多流行的编程模式,当它们适用时及其好处。有效的Java是以Java为中心的,但它的一部分足以应用于任何编程语言。
#5
0
Take a look at Framework Design Guidelines. I know it is .NET specific, but you can probably learn a lot of general information from it too.
看看框架设计指南。我知道它是特定于.NET的,但您也可以从中学到很多一般信息。