org.neo4j.driver.internal.messaging.common.CommonMessageReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-java-driver Show documentation
Show all versions of neo4j-java-driver Show documentation
Access to the Neo4j graph database through Java
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.neo4j.driver.internal.messaging.common;
import java.io.IOException;
import org.neo4j.driver.internal.messaging.MessageFormat;
import org.neo4j.driver.internal.messaging.ResponseMessageHandler;
import org.neo4j.driver.internal.messaging.ValueUnpacker;
import org.neo4j.driver.internal.messaging.response.FailureMessage;
import org.neo4j.driver.internal.messaging.response.IgnoredMessage;
import org.neo4j.driver.internal.messaging.response.RecordMessage;
import org.neo4j.driver.internal.messaging.response.SuccessMessage;
import org.neo4j.driver.internal.packstream.PackInput;
public class CommonMessageReader implements MessageFormat.Reader {
private final ValueUnpacker unpacker;
public CommonMessageReader(PackInput input, boolean dateTimeUtcEnabled) {
this(new CommonValueUnpacker(input, dateTimeUtcEnabled));
}
protected CommonMessageReader(ValueUnpacker unpacker) {
this.unpacker = unpacker;
}
@Override
public void read(ResponseMessageHandler handler) throws IOException {
unpacker.unpackStructHeader();
var type = unpacker.unpackStructSignature();
switch (type) {
case SuccessMessage.SIGNATURE -> unpackSuccessMessage(handler);
case FailureMessage.SIGNATURE -> unpackFailureMessage(handler);
case IgnoredMessage.SIGNATURE -> unpackIgnoredMessage(handler);
case RecordMessage.SIGNATURE -> unpackRecordMessage(handler);
default -> throw new IOException("Unknown message type: " + type);
}
}
private void unpackSuccessMessage(ResponseMessageHandler output) throws IOException {
var map = unpacker.unpackMap();
output.handleSuccessMessage(map);
}
private void unpackFailureMessage(ResponseMessageHandler output) throws IOException {
var params = unpacker.unpackMap();
var code = params.get("code").asString();
var message = params.get("message").asString();
output.handleFailureMessage(code, message);
}
private void unpackIgnoredMessage(ResponseMessageHandler output) {
output.handleIgnoredMessage();
}
private void unpackRecordMessage(ResponseMessageHandler output) throws IOException {
var fields = unpacker.unpackArray();
output.handleRecordMessage(fields);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy