use of example.serialization.EmployeeDTO in project hazelcast by hazelcast.
the class CompactStreamSerializerTest method testWithExplicitSerializer_nested.
@Test
public void testWithExplicitSerializer_nested() {
SerializationConfig serializationConfig = new SerializationConfig();
CompactSerializationConfig compactSerializationConfig = serializationConfig.getCompactSerializationConfig();
compactSerializationConfig.setEnabled(true);
compactSerializationConfig.register(EmployeeDTO.class, "employee", new CompactSerializer<EmployeeDTO>() {
@Nonnull
@Override
public EmployeeDTO read(@Nonnull CompactReader in) {
return new EmployeeDTO(in.readInt32("a"), in.readInt64("i"));
}
@Override
public void write(@Nonnull CompactWriter out, @Nonnull EmployeeDTO object) {
out.writeInt32("a", object.getAge());
out.writeInt64("i", object.getId());
}
});
compactSerializationConfig.register(EmployerDTO.class, "employer", new CompactSerializer<EmployerDTO>() {
@Nonnull
@Override
public EmployerDTO read(@Nonnull CompactReader in) {
String name = in.readString("n");
String status = in.readString("hs");
int age = in.readInt32("a");
long[] ids = in.readArrayOfInt64("ids");
EmployeeDTO s = in.readCompact("s");
EmployeeDTO[] ss = in.readArrayOfCompact("ss", EmployeeDTO.class);
return new EmployerDTO(name, age, status == null ? null : HiringStatus.valueOf(status), ids, s, ss);
}
@Override
public void write(@Nonnull CompactWriter out, @Nonnull EmployerDTO object) {
out.writeString("n", object.getName());
out.writeString("hs", object.getHiringStatus() == null ? null : object.getHiringStatus().name());
out.writeInt32("a", object.getZcode());
out.writeArrayOfInt64("ids", object.getIds());
out.writeCompact("s", object.getSingleEmployee());
out.writeArrayOfCompact("ss", object.getOtherEmployees());
}
});
SerializationService serializationService = new DefaultSerializationServiceBuilder().setConfig(serializationConfig).setSchemaService(schemaService).build();
EmployeeDTO employeeDTO = new EmployeeDTO(30, 102310312);
long[] ids = new long[2];
ids[0] = 22;
ids[1] = 44;
EmployeeDTO[] employeeDTOS = new EmployeeDTO[5];
for (int j = 0; j < employeeDTOS.length; j++) {
employeeDTOS[j] = new EmployeeDTO(20 + j, j * 100);
}
EmployerDTO employerDTO = new EmployerDTO("nbss", 40, HIRING, ids, employeeDTO, employeeDTOS);
Data data = serializationService.toData(employerDTO);
Object object = serializationService.toObject(data);
EmployerDTO o = (EmployerDTO) object;
assertEquals(employerDTO, o);
}
use of example.serialization.EmployeeDTO in project hazelcast by hazelcast.
the class CompactWithSchemaStreamSerializerTest method testFromObject.
@Test
public void testFromObject() {
SerializationService serializationService = createSerializationService();
EmployeeDTO employeeDTO = new EmployeeDTO(30, 102310312);
Data data = serializationService.toDataWithSchema(employeeDTO);
// Create a second schema service so that schemas are not shared accross these two
// This is to make sure that toObject call will use the schema in the data
SerializationService serializationService2 = createSerializationService();
EmployeeDTO actual = serializationService2.toObject(data);
assertEquals(employeeDTO, actual);
}
use of example.serialization.EmployeeDTO in project hazelcast by hazelcast.
the class CompactFormatIntegrationTest method testBasicQuery.
@Test
public void testBasicQuery() {
IMap<Integer, EmployeeDTO> map = instance1.getMap("test");
for (int i = 0; i < 100; i++) {
EmployeeDTO employeeDTO = new EmployeeDTO(i, 102310312);
map.put(i, employeeDTO);
}
IMap<Integer, EmployeeDTO> map2 = instance2.getMap("test");
int size = map2.keySet(Predicates.sql("age > 19")).size();
assertEquals(80, size);
}
use of example.serialization.EmployeeDTO in project hazelcast by hazelcast.
the class CompactFormatIntegrationTest method testEntryProcessor.
@Test
public void testEntryProcessor() {
IMap<Integer, Object> map = instance1.getMap("test");
for (int i = 0; i < 100; i++) {
if (serverDoesNotHaveClasses) {
GenericRecord record = GenericRecordBuilder.compact("employee").setInt32("age", i).setInt64("id", 102310312).build();
map.put(i, record);
} else {
EmployeeDTO employeeDTO = new EmployeeDTO(i, 102310312);
map.put(i, employeeDTO);
}
}
IMap map2 = instance2.getMap("test");
if (serverDoesNotHaveClasses) {
map2.executeOnEntries(new GenericIncreaseAgeEntryProcessor());
} else {
map2.executeOnEntries(new IncreaseAgeEntryProcessor());
}
for (int i = 0; i < 100; i++) {
if (serverDoesNotHaveClasses) {
GenericRecord record = (GenericRecord) map2.get(i);
assertEquals(record.getInt32("age"), 1000 + i);
} else {
EmployeeDTO employeeDTO = (EmployeeDTO) map.get(i);
assertEquals(employeeDTO.getAge(), 1000 + i);
}
}
}
use of example.serialization.EmployeeDTO in project hazelcast by hazelcast.
the class CompactFormatIntegrationTest method testJoinedMemberQuery.
@Test
public void testJoinedMemberQuery() {
IMap<Integer, EmployeeDTO> map = instance1.getMap("test");
for (int i = 0; i < 100; i++) {
EmployeeDTO employeeDTO = new EmployeeDTO(i, 102310312);
map.put(i, employeeDTO);
}
HazelcastInstance newInstance = factory.newHazelcastInstance(getConfig());
waitClusterForSafeState(newInstance);
IMap<Integer, EmployeeDTO> map2 = newInstance.getMap("test");
int size = map2.keySet(Predicates.sql("age > 19")).size();
assertEquals(80, size);
}
Aggregations