blob: 753bd6a8f08963274b77a1b7e1430311937ad9c1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.airavata.mft.resource.server.handler;
import com.google.protobuf.Empty;
import io.grpc.Status;
import io.grpc.stub.StreamObserver;
import org.apache.airavata.mft.resource.server.backend.ResourceBackend;
import org.apache.airavata.mft.resource.service.s3.S3ResourceServiceGrpc;
import org.apache.airavata.mft.resource.stubs.s3.resource.*;
import org.lognet.springboot.grpc.GRpcService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
@GRpcService
public class S3ServiceHandler extends S3ResourceServiceGrpc.S3ResourceServiceImplBase {
private static final Logger logger = LoggerFactory.getLogger(S3ServiceHandler.class);
@Autowired
private ResourceBackend backend;
@Override
public void getS3Resource(S3ResourceGetRequest request, StreamObserver<S3Resource> responseObserver) {
try {
this.backend.getS3Resource(request).ifPresentOrElse(resource -> {
responseObserver.onNext(resource);
responseObserver.onCompleted();
}, () -> {
responseObserver.onError(Status.INTERNAL
.withDescription("No S3 Resource with id " + request.getResourceId())
.asRuntimeException());
});
} catch (Exception e) {
logger.error("Failed in retrieving S3 resource with id {}", request.getResourceId(), e);
responseObserver.onError(Status.INTERNAL.withCause(e)
.withDescription("Failed in retrieving S3 resource with id " + request.getResourceId())
.asRuntimeException());
}
}
@Override
public void createS3Resource(S3ResourceCreateRequest request, StreamObserver<S3Resource> responseObserver) {
try {
responseObserver.onNext(this.backend.createS3Resource(request));
responseObserver.onCompleted();
} catch (Exception e) {
logger.error("Failed in creating the S3 resource", e);
responseObserver.onError(Status.INTERNAL.withCause(e)
.withDescription("Failed in creating the S3 resource")
.asRuntimeException());
}
}
@Override
public void updateS3Resource(S3ResourceUpdateRequest request, StreamObserver<Empty> responseObserver) {
try {
this.backend.updateS3Resource(request);
responseObserver.onCompleted();
} catch (Exception e) {
logger.error("Failed in updating the S3 resource {}", request.getResourceId(), e);
responseObserver.onError(Status.INTERNAL.withCause(e)
.withDescription("Failed in updating the S3 resource with id " + request.getResourceId())
.asRuntimeException());
}
}
@Override
public void deleteS3Resource(S3ResourceDeleteRequest request, StreamObserver<Empty> responseObserver) {
try {
boolean res = this.backend.deleteS3Resource(request);
if (res) {
responseObserver.onCompleted();
} else {
responseObserver.onError(new Exception("Failed to delete S3 Resource with id " + request.getResourceId()));
}
} catch (Exception e) {
logger.error("Failed in deleting the S3 resource {}", request.getResourceId(), e);
responseObserver.onError(Status.INTERNAL.withCause(e)
.withDescription("Failed in deleting the S3 resource with id " + request.getResourceId())
.asRuntimeException());
}
}
}