C++ and Platform Interoperability
Overview
When using GridGain C, it is quite common to have several C and Java nodes running in a single cluster. To seamlessly interoperate between C++ and Java nodes, you need to take several aspects into consideration. Let’s review them.
Binary Marshaller Configuration
GridGain uses its binary marshaller for data, logic, messages serialization and deserialization. Due to architectural specificities, Java and C++ nodes are started with different default settings of the binary marshaller that can lead to exceptions like the one below during a node startup if you try to set up a heterogeneous cluster:
class org.apache.ignite.spi.IgniteSpiException: Local node's
binary configuration is not equal to remote node's binary configuration
[locNodeId=b3f0367d-3c2b-47b4-865f-a62c656b5d3f,
rmtNodeId=556a3f41-eab1-4d9f-b67c-d94d77ddd89d,
locBinaryCfg={globIdMapper=org.apache.ignite.binary.BinaryBasicIdMapper,
compactFooter=false, globSerializer=null}, rmtBinaryCfg=null]
To avoid the exception and to make sure Java and C++ nodes can co-exist in a single cluster, add the following binary marshaller’s settings to the Java configuration:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">
...
<property name="binaryConfiguration">
<bean class="org.apache.ignite.configuration.BinaryConfiguration">
<property name="compactFooter" value="false"/>
<property name="idMapper">
<bean class="org.apache.ignite.binary.BinaryBasicIdMapper">
<property name="lowerCase" value="true"/>
</bean>
</property>
</bean>
</property>
...
</bean>
</beans>
Basic Types Compatibility
Your C application can put a value into the cluster and another Java application can read it back. The table below shows how the types are matched between Java and C:
Java Type | C++ Type |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Custom Types Compatibility
To get access to the same application-specific object on both Java and C++ nodes, you need to describe it similarly in both the languages. This includes the same type name, type id, fields id, hash code algorithm, as well as read/write functions for the type.
To do this on the C++ end, you need to use the ignite::binary::BinaryType
class template.
Let’s consider the following example that defines a Java class that will be later read by a C++ application:
package org.apache.ignite.examples;
public class CrossClass implements Binarylizable {
private long id;
private int idPart;
public void readBinary(BinaryReader reader) throws BinaryObjectException {
id = reader.readLong("id");
idPart = reader.readInt("idPart");
}
public void writeBinary(BinaryWriter writer) throws BinaryObjectException {
writer.writeLong("id", id);
writer.writeInt("idPart", idPart);
}
}
Next, you create a counter-part on the C++ end:
namespace ignite
{
namespace binary
{
template<>
struct BinaryType<CrossClass>
{
static int32_t GetTypeId()
{
return GetBinaryStringHashCode("CrossClass");
}
static void GetTypeName(std::string& name)
{
name = "CrossClass";
}
static int32_t GetFieldId(const char* name)
{
return GetBinaryStringHashCode(name);
}
static bool IsNull(const CrossClass& obj)
{
return false;
}
static void GetNull(CrossClass& dst)
{
dst = CrossClass();
}
static void Read(BinaryReader& reader, CrossClass& dst)
{
dst.id = reader.ReadInt64("id");
dst.idPart = reader.ReadInt32("idPart");
}
static void Write(BinaryWriter& writer, const CrossClass& obj)
{
writer.WriteInt64("id", obj.id);
writer.WriteInt32("idPart", obj.idPart);
}
};
}
}
Finally, you need to use the following BinaryConfiguration
for both Java and C++ nodes:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">
...
<property name="binaryConfiguration">
<bean class="org.apache.ignite.configuration.BinaryConfiguration">
<property name="compactFooter" value="false"/>
<property name="idMapper">
<bean class="org.apache.ignite.binary.BinaryBasicIdMapper">
<property name="lowerCase" value="true"/>
</bean>
</property>
<property name="nameMapper">
<bean class="org.apache.ignite.binary.BinaryBasicNameMapper">
<property name="simpleName" value="true"/>
</bean>
</property>
<property name="classNames">
<list>
<value>org.apache.ignite.examples.CrossClass</value>
</list>
</property>
</bean>
</property>
...
</bean>
</beans>
Enum Support
You can utilize the enum
data type in GridGain C++.
The following snippet provides an example for a simple case.
enum MyEnum
{
ONE = 1,
TWO,
THREE
};
template<>
struct ignite::binary::BinaryEnum<MyEnum> : BinaryEnumDefaultAll<MyEnum>
{
// Make sure the returned name is the same on all platforms (GridGain, GridGain C++, and GridGain .NET).
static void GetTypeName(std::string& dst) {
dst = "MyEnum";
}
};
For more complex cases, use the following example.
template <>
struct ignite::binary::BinaryEnum<MyEnum>
{
// Make sure the returned name is the same on all platforms (GridGain, GridGain C++, and GridGain .NET).
static void GetTypeName(std::string& dst) {
dst = "MyEnum";
}
// Type ID. The same as for BinaryType.
static int32_t GetTypeId() {
// Simple case
std::string typeName;
GetTypeName(typeName);
return ignite::binary::GetBinaryStringHashCode(typeName.c_str());
}
// Check if the value is null.
static bool IsNull(const MyEnum& obj) {
return val == FromOrdinal(INT32_MIN);
}
// Get null value for the enum.
static void GetNull(MyEnum& dst) {
dst = FromOrdinal(INT32_MIN);
}
// Here you can map ordinal values of C++ type to those in Ignite.
static int32_t GetOrdinal(MyEnum value) {
// Simple case
return static_cast<int32_t>(value);
}
// Here you can map ordinal values of Ignite type to those in C++.
static MyEnum FromOrdinal(int32_t ordinal) {
// Simple case
return static_cast<MyEnum>(ordinal);
}
};
© 2024 GridGain Systems, Inc. All Rights Reserved. Privacy Policy | Legal Notices. GridGain® is a registered trademark of GridGain Systems, Inc.
Apache, Apache Ignite, the Apache feather and the Apache Ignite logo are either registered trademarks or trademarks of The Apache Software Foundation.