You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2021/01/04 10:10:06 UTC

[GitHub] [camel] omarsmak commented on a change in pull request #4697: [CAMEL-15341] Create camel-azure-storage-datalake to serve Azure DataLakes Gen2

omarsmak commented on a change in pull request #4697:
URL: https://github.com/apache/camel/pull/4697#discussion_r551222406



##########
File path: components/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeEndpoint.java
##########
@@ -0,0 +1,97 @@
+/*
+ * 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.camel.component.azure.storage.datalake;
+
+import com.azure.storage.file.datalake.DataLakeServiceClient;
+import org.apache.camel.Category;
+import org.apache.camel.Component;
+import org.apache.camel.Consumer;
+import org.apache.camel.Exchange;
+import org.apache.camel.Message;
+import org.apache.camel.Processor;
+import org.apache.camel.Producer;
+import org.apache.camel.component.azure.storage.datalake.client.DataLakeClientFactory;
+import org.apache.camel.component.azure.storage.datalake.operations.DataLakeOperationResponse;
+import org.apache.camel.spi.UriEndpoint;
+import org.apache.camel.spi.UriParam;
+import org.apache.camel.support.DefaultEndpoint;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+@UriEndpoint(firstVersion = "3.7.0", scheme = "azure-storage-datalake", title = "Azure storage datalake service",
+             syntax = "azure-storage-datalake:accounName/fileSystemName", category = { Category.CLOUD, Category.FILE })
+public class DataLakeEndpoint extends DefaultEndpoint {
+    private static final Logger LOG = LoggerFactory.getLogger(DataLakeEndpoint.class);
+
+    @UriParam(description = "service client of datalake")
+    private DataLakeServiceClient dataLakeServiceClient;
+
+    @UriParam(description = "configuration object of azure datalake")
+    private DataLakeConfiguration configuration;
+
+    public DataLakeEndpoint() {
+    }
+
+    public DataLakeEndpoint(final String uri, final Component component, final DataLakeConfiguration configuration) {
+        super(uri, component);
+        this.configuration = configuration;
+    }
+
+    @Override
+    public Producer createProducer() throws Exception {
+        return new DataLakeProducer(this);
+    }
+
+    @Override
+    public Consumer createConsumer(Processor processor) throws Exception {
+        return new DataLakeConsumer(this, processor);
+    }
+
+    public DataLakeConfiguration getConfiguration() {
+        return configuration;
+    }
+
+    public void setConfiguration(DataLakeConfiguration configuration) {
+        this.configuration = configuration;
+    }
+
+    public DataLakeServiceClient getDataLakeServiceClient() {
+        return dataLakeServiceClient;
+    }
+
+    public void setDataLakeServiceClient(DataLakeServiceClient dataLakeServiceClient) {
+        this.dataLakeServiceClient = dataLakeServiceClient;
+    }
+
+    public void setResponseOnExchange(final DataLakeOperationResponse response, final Exchange exchange) {
+        final Message message = exchange.getIn();
+        message.setBody(response.getBody());
+        message.setHeaders(response.getHeaders());
+    }
+
+    @Override
+    protected void doStart() throws Exception {
+        super.doStart();
+
+        if (configuration.getServiceClient() != null) {

Review comment:
       Actually what you did here is fine, I forgot that will help to bind the client into the endpoint params, hence please ignore this comment :) 




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org