1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
# Ice for C++
[Getting started C++11] | [Examples C++11] | [Getting started C++98] | [Examples C++98] | [NuGet packages] | [Documentation] | [Building from source]
The [Ice framework] provides everything you need to build networked applications,
including RPC, pub/sub, server deployment, and more.
Ice for C++ is the C++ implementation of Ice.
## Sample Code with the Ice C++11 Mapping
```slice
// Slice definitions (Hello.ice)
#pragma once
module Demo
{
interface Hello
{
void sayHello();
}
}
```
```cpp
// Client application (Client.cpp)
#include <Ice/Ice.h>
#include <Hello.h>
using namespace std;
using namespace Demo;
int
main(int argc, char* argv[])
{
try
{
const Ice::CommunicatorHolder ich(argc, argv);
auto hello = Ice::checkedCast<HelloPrx>(ich->stringToProxy("hello:default -h localhost -p 10000"));
hello->sayHello();
}
catch(const std::exception& ex)
{
cerr << ex.what() << endl;
return 1;
}
return 0;
}
```
```cpp
// Server application (Server.cpp)
#include <Ice/Ice.h>
#include <Printer.h>
using namespace std;
int main(int argc, char* argv[])
{
try
{
// CtrlCHandler must be created before the communicator or any other threads
// are started
Ice::CtrlCHandler ctrlCHandler;
const Ice::CommunicatorHolder ich(argc, argv);
const auto& communicator = ich.communicator();
ctrlCHandler.setCallback(
[communicator](int)
{
communicator->shutdown();
});
auto adapter = communicator->createObjectAdapterWithEndpoints(
"Hello",
"default -h localhost -p 10000");
adapter->add(make_shared<HelloI>(), Ice::stringToIdentity("hello"));
adapter->activate();
communicator->waitForShutdown();
}
catch(const std::exception& ex)
{
cerr << ex.what() << endl;
return 1;
}
return 0;
}
```
```cpp
// Printer implementation (Printer.h)
#include <Ice/Ice.h>
#include <Hello.h>
class Printer : public Demo::Hello
{
public:
/**
* Prints a message to the standard output.
**/
virtual void sayHello(const Ice::Current&) override
{
std::cout << "Hello World!" << std::endl;
}
}
```
## Sample Code with the Ice C++98 Mapping
```slice
// Slice definitions (Hello.ice)
#pragma once
module Demo
{
interface Hello
{
void sayHello();
}
}
```
```cpp
// Client application (Client.cpp)
#include <Ice/Ice.h>
#include <Hello.h>
using namespace std;
using namespace Demo;
int main(int argc, char* argv[])
{
try
{
Ice::CommunicatorHolder ich(argc, argv);
HelloPrx hello = HelloPrx::checkedCast(
ich->stringToProxy("hello:default -h localhost -p 10000"));
hello->sayHello();
}
catch(const std::exception& ex)
{
cerr << ex.what() << endl;
return 1;
}
return 0;
}
```
```cpp
// Server application (Server.cpp)
#include <Ice/Ice.h>
#include <HelloI.h>
using namespace std;
int main(int argc, char* argv[])
{
try
{
Ice::CommunicatorHolder ich(argc, argv);
Ice::ObjectAdapterPtr adapter = ich->createObjectAdapterWithEndpoints(
"Hello",
"default -h localhost -p 10000");
adapter->add(new HelloI, Ice::stringToIdentity("hello"));
adapter->activate();
ich->waitForShutdown();
}
catch(const std::exception& ex)
{
cerr << ex.what() << endl;
return 1;
}
return 0;
}
```
```cpp
// Printer implementation (Printer.h)
#include <Ice/Ice.h>
#include <Hello.h>
class Printer : public Demo::Hello
{
public:
/**
* Prints a message to the standard output.
**/
virtual void sayHello(const Ice::Current&)
{
std::cout << "Hello World!" << std::endl;
}
}
```
[Getting started C++11]: https://doc.zeroc.com/ice/3.7/hello-world-application/writing-an-ice-application-with-c++-c++11
[Examples C++11]: https://github.com/zeroc-ice/ice-demos/tree/3.7/cpp11
[Getting started C++98]: https://doc.zeroc.com/ice/3.7/hello-world-application/writing-an-ice-application-with-c++-c++98
[Examples C++98]: https://github.com/zeroc-ice/ice-demos/tree/3.7/cpp98
[NuGet packages]: https://www.nuget.org/packages?q=zeroc.ice.v
[Documentation]: https://doc.zeroc.com/ice/3.7
[Building from source]: https://github.com/zeroc-ice/ice/blob/3.7/cpp/BUILDING.md
[Ice framework]: https://github.com/zeroc-ice/ice
|