Ice分布式程序设计—IceBox(Hello World Application)
忙了三天,总算浏览完此书。藉此记下 Ice 的 IceBox 服务框架。
在此用 IceBox 框架写 Hello World 程序,即以载体来体现其特性。
第一步:编写 Slice 文件,映射生成 hello.h && hello.cpp。
// hello.ice
module Demo
{
interface print {
void stringPrint(string s);
};
};
第二步:服务器端,将服务的组件放入动态库。
{打印}
// helloI.h
#include <Ice/Ice.h>
#include <hello.h> using namespace std;
using namespace Demo; class helloI : public print {
public:
virtual void stringPrint(const string& s, const Ice::Current&);
};
// helloI.cpp
#include <helloI.h> using namespace std;
using namespace Demo; void helloI::stringPrint(const string& s, const Ice::Current&)
{
cout << s << endl;
}
{服务接口}
// HelloService.h
#include <IceBox/IceBox.h> class HelloServiceI : public IceBox::Service {
public:
virtual void start(const std::string&,
const Ice::CommunicatorPtr&,
const Ice::StringSeq&);
virtual void stop(); private:
Ice::ObjectAdapterPtr _adapter;
};
// HelloServiceI.cpp
#include <Ice/Ice.h>
#include <HelloServiceI.h>
#include <helloI.h> using namespace std;
using namespace Demo; extern "C" { // 服务进入点
IceBox::Service*
create(Ice::CommunicatorPtr communicator)
{
return new HelloServiceI;
}
} void HelloServiceI::start( const string& name, const Ice::CommunicatorPtr& communicator, const Ice::StringSeq& args)
{
_adapter = communicator->createObjectAdapter(name);
Ice::ObjectPtr object = new helloI();
_adapter->add(object, communicator->stringToIdentity("hello"));
_adapter->activate();
} void HelloServiceI::stop()
{
_adapter->deactivate();
}
接下来制作动态库(.so)。此时,已有程序如下:
编译生成动态库。(hello.cpp , helloI.cpp , HelloServiceI.cpp 三个文件)
$ g++ -shared -o libHelloService.so HelloServiceI.cpp helloI.cpp hello.cpp -I. -I $ICE_HOME/include -fPIC
第三步:在客户端, 编写客户端代码。
// Client.cpp
#include <Ice/Ice.h>
#include <hello.h> using namespace std;
using namespace Demo; int main(int argc, char* argv[])
{
int status = 0;
Ice::CommunicatorPtr ic;
try {
ic = Ice::initialize(argc, argv);
Ice::ObjectPrx base = ic->stringToProxy("hello:default -p 9990");
printPrx printer = printPrx::checkedCast(base); if (!printer)
throw "Invalid proxy";
printer->stringPrint("Hello World!");
} catch (const Ice::Exception& ex) {
cerr << ex << endl;
status = 1;
} catch (const char* msg) {
cerr << msg << endl;
status = 1;
}
if (ic)
ic->destroy();
return status;
}
编译并链接生成可执行程序 client。
$ c++ -I. -I$ICE_HOME/include -c hello.cpp Client.cpp
$ c++ -o client hello.o Client.o -L$ICE_HOME/lib -lIce -lIceUtil
第四步:配置服务端点和客户。
A. 服务器配置。
// config.icebox
IceBox.Service.Hello=HelloService:create --Ice.Config=config.service
B. 服务端点配置。
// config.service
Hello.Endpoints=tcp -p 9990:udp -p 9990
/*
C. 客户配置。 // config.client
Hello.Proxy=Hello:tcp -p 9990:udp -p 9990
*/
第五步:程序示例。
A. 启动 IceBox 服务器.
$ icebox --Ice.Config=config.icebox
B. Run the client.(连接服务器并请求打印服务)
$ ./client
C. 服务器端进行打印。
Ice分布式程序设计—IceBox(Hello World Application)的更多相关文章
- ICE异步程序设计-----AMI/AMD
1 简介 AMI 异步方法调用(AMI) 这个术语描述的是客户端的异步编程模型支持. 如果你使用AMI 发出远地调用,在Ice run time 等待答复的同时,发出调用的线程不会阻塞.相反,发出调用 ...
- Ice的HelloWorld(Java)
Ice是一种面向对象的中间间平台,入门ice,简单的HelloWorld是必不可少的. 转载请注明http://www.cnblogs.com/zrtqsk/p/3745286.html,谢谢. 一. ...
- Ice系列--傻瓜式服务开发IceBox
前言 相信大家在没有接触过框架之前,都自己或多或少的开发过一些应用服务.每个应用服务除了业务配置还有很多环境配置,资源配置等,这些跟部署相关的配置.服务跟配置文件是一种静态绑定的方式,更新配置还需要重 ...
- P2P通信标准协议(三)之ICE
在P2P通信标准协议(二)中,介绍了TURN的基本交互流程,在上篇结束部分也有说到,TURN作为STUN 协议的一个拓展,保持了STUN的工具性质,而不作为完整的NAT传输解决方案,只提供穿透NAT的 ...
- 从一般分布式设计看HDFS设计思想与架构
要想深入学习HDFS就要先了解其设计思想和架构,这样才能继续深入使用HDFS或者深入研究源代码.懂得了"所以然"才能在实际使用中灵活运用.快速解决遇到的问题.下面这篇博文我们就先 ...
- ICE第二篇--一个"hello world"的简单例子
1 本文介绍一个hello world输出的例子. ice应用的步骤如下: 1. 编写 Slice 定义并编译它. 2. 编写服务器并编译它. 3. 编写客户并编译它. 基本框架图示: 本文代码图示: ...
- ice grid配置使用第二篇------实际使用
一 首先,启动ice grid 1 修改配置文件 node.cfg,appication.xml 修改registry.cfg 配置注册表信息: IceGrid.Registry.Client. ...
- 《程序设计语言——实践之路》【PDF】下载
程序设计语言--实践之路>[PDF]下载链接: https://u253469.pipipan.com/fs/253469-230382240 内容简介 本书在美国大学已有使用了十余年,目前被欧 ...
- zeroc ice log4net 多进程log文件问题
使用zeroc ice 中的icebox 的时候多服务会有多个服务实例,每个实例都要写日志文件,所以要配置多个日志文件区分开来, 类似这样 orderservice_1_20160101.log ...
随机推荐
- MVCC PostgreSQL实现事务和多版本并发控制的精华
原创文章,同步发自作者个人博客,http://www.jasongj.com/sql/mvcc/ PostgreSQL针对ACID的实现机制 事务的实现原理可以解读为RDBMS采取何种技术确保事务的A ...
- folly::AtomicHashmap源码分析(一)
本文为原创,转载请注明:http://www.cnblogs.com/gistao/ Atomic的两点背景 看下这个场景,老张去厕所,发现门是锁着的,他就在门口等着里边人出来,此时小王也来了,他想了 ...
- flume中的agent配置和启动
首先创建一个文件example.conf(touch example.conf) 然后在文件中,进行agent文件的如下的配置(vi example.conf) agent文件的配置:(配置ag ...
- Option
在scala中Option是一个有可能包含值的容器 Option对应的特质如下 trait Option[T] { def isDefined: Boolean def get: T def getO ...
- jQuery获取字符串中两个字符之间的字符
//获取@和.之间的字符 var str1 = "laxe@ll.com"; var str2 = str1.substring(str1.indexOf('@')+1,str1. ...
- Laravel框架数据库CURD操作、连贯操作使用方法
Laravel框架数据库CURD操作.连贯如何来操作了这个操作性是非常的方便简单了我们在这里来为各位介绍一篇相关的教程,具体的细节步骤如下文介绍. Laravel是一套简洁.优雅的PHP Web开 ...
- jquery 插件
1 jquery.slimscroll.min.js:虚拟滚轴 2 jquery.steps.js:步骤(注册下一步) 3 jquery-barcode.js:条形码
- PetaPoco 批量插入数据
网上找的代码,还没经过验证 /// <summary> /// Bulk inserts multiple rows to SQL /// </summary> /// < ...
- 关于VR边纹理材质的渲染
前段时间经常渲染白模线框的图,写了这个脚本方便工作,后来又加了中英文适配,今天贴上来. fn YY_edgestex = ( vr = renderers.current case of ( (vr材 ...
- vim 高亮显示配置
/etc/vim/vimrc set showmatch "bracket matchset matchtime=5 "bracket match time 5 set ignor ...