package com.devicehive.handler.command;
/*
* #%L
* DeviceHive Backend Logic
* %%
* Copyright (C) 2016 DataArt
* %%
* 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.
* #L%
*/
import com.devicehive.model.DeviceCommand;
import com.devicehive.model.rpc.CommandSearchRequest;
import com.devicehive.model.rpc.CommandSearchResponse;
import com.devicehive.service.HazelcastService;
import com.devicehive.shim.api.Request;
import com.devicehive.shim.api.Response;
import com.devicehive.shim.api.server.RequestHandler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.StringUtils;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
public class CommandSearchHandler implements RequestHandler {
private HazelcastService hazelcastService;
@Autowired
public void setHazelcastService(HazelcastService hazelcastService) {
this.hazelcastService = hazelcastService;
}
@Override
public Response handle(Request request) {
CommandSearchRequest searchRequest = (CommandSearchRequest) request.getBody();
CommandSearchResponse payload = searchRequest.getId() != null && !StringUtils.isEmpty(searchRequest.getGuid())
? searchSingleCommandByDeviceAndId(searchRequest.getId(), searchRequest.getGuid())
: searchMultipleCommands(searchRequest);
return Response.newBuilder()
.withBody(payload)
.buildSuccess();
}
private CommandSearchResponse searchSingleCommandByDeviceAndId(long id, String guid) {
final CommandSearchResponse commandSearchResponse = new CommandSearchResponse();
final List<DeviceCommand> commands = hazelcastService.find(id, guid, DeviceCommand.class)
.map(Collections::singletonList)
.orElse(Collections.emptyList());
commandSearchResponse.setCommands(commands);
return commandSearchResponse;
}
private CommandSearchResponse searchMultipleCommands(CommandSearchRequest searchRequest) {
final CommandSearchResponse commandSearchResponse = new CommandSearchResponse();
final Collection<DeviceCommand> commands = hazelcastService.find(
searchRequest.getGuid(),
searchRequest.getNames(),
null,
0,
searchRequest.getTimestampStart(),
searchRequest.getTimestampEnd(),
searchRequest.getStatus(),
DeviceCommand.class);
commandSearchResponse.setCommands(new ArrayList<>(commands));
return commandSearchResponse;
}
}