org.neo4j.ogm.drivers.embedded.response.RestModelResponse Maven / Gradle / Ivy
/*
* Copyright (c) 2002-2022 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* 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.ogm.drivers.embedded.response;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Optional;
import org.neo4j.graphdb.Result;
import org.neo4j.ogm.drivers.embedded.driver.EmbeddedEntityAdapter;
import org.neo4j.ogm.model.QueryStatistics;
import org.neo4j.ogm.model.RestModel;
import org.neo4j.ogm.response.model.DefaultRestModel;
import org.neo4j.ogm.response.model.QueryStatisticsModel;
/**
* @author Luanne Misquitta
* @author Michael J. Simons
*/
public class RestModelResponse extends EmbeddedResponse {
private final EmbeddedRestModelAdapter restModelAdapter;
private final QueryStatisticsModel statisticsModel;
public RestModelResponse(Result result, EmbeddedEntityAdapter entityAdapter) {
super(result);
this.restModelAdapter = new EmbeddedRestModelAdapter(entityAdapter);
this.statisticsModel = new StatisticsModelAdapter().adapt(result);
}
@Override
public RestModel next() {
return DefaultRestModel.basedOn(buildModel())
.orElse(null);
}
private Map buildModel() {
Map row = new LinkedHashMap<>();
if (result.hasNext()) {
Map data = result.next();
row = restModelAdapter.adapt(data);
}
return row;
}
@Override
public Optional getStatistics() {
return Optional.of(statisticsModel);
}
}