-
Notifications
You must be signed in to change notification settings - Fork 7
IDL writing examples
Jasonsalex edited this page Aug 15, 2017
·
3 revisions
1. IDL code usage, server-side as long as the server directory to fill the service file function interface code.
2. The client only needs to call the function of the interface of the service file under the client directory.
//kiss rpc idl demo
@message:UserInfo
{
string phone:3;
string userName:1;
int age:2;
double wiget:4;
string[] addressList:5;
}
@message:Contacts
{
int number:1;
UserInfo[] userInfoList:2;
}
@message:User
{
string name:1;
}
@service:AddressBook //class interface
{
Contacts getContactList(User userName);
}
IDL generates both synchronous and asynchronous interfaces, and asynchronous interfaces are all parameter callbacks.
- import hander files
import KissRpc.IDL.kissidlService;
import KissRpc.IDL.kissidlMessage;
import KissRpc.Unit;
- Client synchronous invocation
try{
auto c = addressBookService.getContactList(name);
foreach(v; c.userInfoList)
{
writefln("sync number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}catch(Exception e)
{
writeln(e.msg);
}
- Client asynchronous call
try{
addressBookService.getContactList(name, delegate(Contacts c){
foreach(v; c.userInfoList)
{
writefln("async number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}
);
}catch(Exception e)
{
writeln(e.msg);
}
- Bind socket mode compression
RpcClient.setSocketCompress(RPC_PACKAGE_COMPRESS_TYPE.RPCT_DYNAMIC); //The dynamic compression mode defaults to more than 200 bytes of compression
RpcClient.setSocketCompress(RPC_PACKAGE_COMPRESS_TYPE.RPCT_COMPRESS); //forced compression method
- Single request compression, synchronous call, forced compression
//use compress demo
try{
auto c = addressBookService.getContactList(name, RPC_PACKAGE_COMPRESS_TYPE.RPCT_COMPRESS);
foreach(v; c.userInfoList)
{
writefln("compress test: sync number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}catch(Exception e)
{
writeln(e.msg);
}
- Single request compression, asynchronous call, 100 bytes of dynamic compression, request timeout 30 seconds
//use dynamic compress and set request timeout
try{
RPC_PACKAGE_COMPRESS_DYNAMIC_VALUE = 100; //reset compress dynamaic value 100 byte, default:200 byte
addressBookService.getContactList(name, delegate(Contacts c){
foreach(v; c.userInfoList)
{
writefln("dynamic compress test: sync number:%s, name:%s, phone:%s, age:%s", c.number, v.name, v.widget, v.age);
}
}, RPC_PACKAGE_COMPRESS_TYPE.RPCT_DYNAMIC, 30
);
}catch(Exception e)
{
writeln(e.msg);
}
Server service file code rpc_address_book_service(file path:IDL-Example/server/source/IDL/kissidlInterface.d):
- RpcAddressBookService.getContactList
Contacts getContactList(AccountName accountName){
Contacts contactsRet;
//input service code for Contacts class
contactsRet.number = accountName.count;
for(int i = 0; i < 10; i++)
{
UserInfo userInfo;
userInfo.age = 18+i;
userInfo.name = accountName.name ~ to!string(i);
userInfo.widget = 120+i;
contactsRet.userInfoList ~= userInfo;
}
return contactsRet;
}