/** * diqube: Distributed Query Base. * * Copyright (C) 2015 Bastian Gloeckle * * This file is part of diqube. * * diqube is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.diqube.server.execution.util; import java.util.Map; import org.apache.thrift.TException; import org.diqube.remote.cluster.thrift.ClusterQueryService; import org.diqube.remote.cluster.thrift.RClusterQueryStatistics; import org.diqube.remote.cluster.thrift.RExecutionException; import org.diqube.remote.cluster.thrift.RExecutionPlan; import org.diqube.remote.cluster.thrift.ROldNewIntermediateAggregationResult; import org.diqube.server.queryremote.query.ClusterQueryServiceHandler; import org.diqube.thrift.base.thrift.RNodeAddress; import org.diqube.thrift.base.thrift.RUUID; import org.diqube.thrift.base.thrift.RValue; /** * A {@link ClusterQueryService} that simply does nothing. Usable for unit tests, if the original * {@link ClusterQueryServiceHandler} bean in the context gets overridden. * * @author Bastian Gloeckle */ public class NoopClusterQueryService implements ClusterQueryService.Iface { @Override public void executeOnAllLocalShards(RExecutionPlan executionPlan, RUUID queryId, RNodeAddress resultAddress) throws TException { } @Override public void groupIntermediateAggregationResultAvailable(RUUID queryId, long groupId, String colName, ROldNewIntermediateAggregationResult result, short percentDoneDelta) throws TException { } @Override public void columnValueAvailable(RUUID queryId, String colName, Map<Long, RValue> valuesByRowId, short percentDoneDelta) throws TException { } @Override public void executionDone(RUUID queryId) throws TException { } @Override public void executionException(RUUID queryId, RExecutionException executionException) throws TException { } @Override public void cancelExecution(RUUID queryUuid) throws TException { } @Override public void queryStatistics(RUUID queryUuid, RClusterQueryStatistics stats) throws TException { } }