blob: 6539d0482c370cabde2ea699464228f7ff0cc1c9 [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.transport.s3;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.model.S3Object;
import org.apache.airavata.mft.core.api.ConnectorChannel;
import org.apache.airavata.mft.core.api.SourceConnector;
import org.apache.airavata.mft.core.bufferedImpl.AbstractConnector;
import org.apache.airavata.mft.core.bufferedImpl.ConnectorConfig;
import org.apache.airavata.mft.core.bufferedImpl.Constants;
import org.apache.airavata.mft.core.bufferedImpl.InChannel;
import java.io.InputStream;
import java.util.Properties;
/**
* Connector class which connects to a given S3 source and provides
* S3 Input Stream.
*/
public class S3SourceConnector extends AbstractConnector implements SourceConnector {
private AmazonS3 s3Client;
@Override
public boolean initiate(ConnectorConfig connectorConfig) {
s3Client = S3TransportUtil.getS3Client(connectorConfig.getValue(S3Constants.ACCESS_KEY),
connectorConfig.getValue(S3Constants.SECRET_KEY), connectorConfig.getValue(S3Constants.REGION));
return true;
}
@Override
public ConnectorChannel openChannel(Properties properties) {
S3Object s3object = s3Client.getObject(properties.getProperty(S3Constants.BUCKET),
properties.getProperty(S3Constants.REMOTE_FILE));
InputStream inputStream;
if (s3object != null && s3object.getObjectContent() != null) {
inputStream = s3object.getObjectContent();
InChannel inChannel = new InChannel(inputStream);
inChannel.addChannelAttribute(Constants.CONNECTOR, this);
return inChannel;
}
return null;
}
}