You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2022/02/11 02:52:45 UTC

[incubator-linkis] 14/21: add the request for get partitions of metadata action

This is an automated email from the ASF dual-hosted git repository.

peacewong pushed a commit to branch dev-1.1.0-datasource
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git

commit 7f7996ec931525f77ad8dafd44a4228f92d887b1
Author: xiaojie19852006 <xi...@163.com>
AuthorDate: Fri Feb 11 09:38:56 2022 +0800

    add the request for get partitions of metadata action
---
 .../request/MetadataGetPartitionsAction.scala      | 91 ++++++++++++++++++++++
 1 file changed, 91 insertions(+)

diff --git a/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/request/MetadataGetPartitionsAction.scala b/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/request/MetadataGetPartitionsAction.scala
new file mode 100644
index 0000000..9bbde2e
--- /dev/null
+++ b/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/request/MetadataGetPartitionsAction.scala
@@ -0,0 +1,91 @@
+/*
+ * 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.linkis.datasource.client.request
+
+import org.apache.linkis.datasource.client.config.DatasourceClientConfig.METADATA_SERVICE_MODULE
+import org.apache.linkis.datasource.client.exception.DataSourceClientBuilderException
+import org.apache.linkis.httpclient.request.GetAction
+
+
+class MetadataGetPartitionsAction extends GetAction with DataSourceAction {
+  private var dataSourceId: String = _
+  private var database: String = _
+  private var table: String = _
+
+  override def suffixURLs: Array[String] = Array(METADATA_SERVICE_MODULE.getValue, "partitions", dataSourceId, "db", database, "table", table)
+
+  private var user: String = _
+
+  override def setUser(user: String): Unit = this.user = user
+
+  override def getUser: String = this.user
+}
+
+
+object MetadataGetPartitionsAction {
+  def builder(): Builder = new Builder
+
+  class Builder private[MetadataGetPartitionsAction]() {
+    private var dataSourceId: String = _
+    private var database: String = _
+    private var table: String = _
+    private var system: String = _
+    private var user: String = _
+
+    def setUser(user: String): Builder = {
+      this.user = user
+      this
+    }
+
+    def setDataSourceId(dataSourceId: String): Builder = {
+      this.dataSourceId = dataSourceId
+      this
+    }
+
+    def setDatabase(database: String): Builder = {
+      this.database = database
+      this
+    }
+
+    def setTable(table: String): Builder = {
+      this.table = table
+      this
+    }
+
+    def setSystem(system: String): Builder = {
+      this.system = system
+      this
+    }
+
+    def build(): MetadataGetPartitionsAction = {
+      if (dataSourceId == null) throw new DataSourceClientBuilderException("dataSourceId is needed!")
+      if(database == null) throw new DataSourceClientBuilderException("database is needed!")
+      if(table == null) throw new DataSourceClientBuilderException("table is needed!")
+      if(system == null) throw new DataSourceClientBuilderException("system is needed!")
+
+      val metadataGetPartitionsAction = new MetadataGetPartitionsAction
+      metadataGetPartitionsAction.dataSourceId = this.dataSourceId
+      metadataGetPartitionsAction.database = this.database
+      metadataGetPartitionsAction.table = this.table
+      metadataGetPartitionsAction.setParameter("system", system)
+      metadataGetPartitionsAction.setUser(user)
+      metadataGetPartitionsAction
+    }
+  }
+
+}

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org