aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/planner/logical/FileSystemCreateTableEntry.java
blob: 23ea23fd56ade1b7ec266ef5e3c8e07448cd3517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 * 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.drill.exec.planner.logical;

import java.io.IOException;
import java.util.List;

import org.apache.drill.common.exceptions.ExecutionSetupException;
import org.apache.drill.common.exceptions.UserException;
import org.apache.drill.common.logical.FormatPluginConfig;
import org.apache.drill.exec.physical.base.AbstractWriter;
import org.apache.drill.exec.physical.base.PhysicalOperator;
import org.apache.drill.exec.store.StorageStrategy;
import org.apache.drill.exec.physical.base.Writer;
import org.apache.drill.exec.store.StoragePluginRegistry;
import org.apache.drill.exec.store.dfs.FileSystemConfig;
import org.apache.drill.exec.store.dfs.FormatPlugin;

import com.fasterxml.jackson.annotation.JacksonInject;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;

/**
 * Implements <code>CreateTableEntry</code> interface to create new tables in FileSystem storage.
 */
@JsonTypeName("filesystem")
public class FileSystemCreateTableEntry implements CreateTableEntry {
  private static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(FileSystemCreateTableEntry.class);

  private FileSystemConfig storageConfig;
  private FormatPlugin formatPlugin;
  private String location;
  private final List<String> partitionColumns;
  private final StorageStrategy storageStrategy;

  @JsonCreator
  public FileSystemCreateTableEntry(@JsonProperty("storageConfig") FileSystemConfig storageConfig,
                                    @JsonProperty("formatConfig") FormatPluginConfig formatConfig,
                                    @JsonProperty("location") String location,
                                    @JsonProperty("partitionColumn") List<String> partitionColumns,
                                    @JsonProperty("storageStrategy") StorageStrategy storageStrategy,
                                    @JacksonInject StoragePluginRegistry engineRegistry)
      throws ExecutionSetupException {
    this.storageConfig = storageConfig;
    this.formatPlugin = engineRegistry.getFormatPlugin(storageConfig, formatConfig);
    this.location = location;
    this.partitionColumns = partitionColumns;
    this.storageStrategy = storageStrategy;
  }

  public FileSystemCreateTableEntry(FileSystemConfig storageConfig,
                                    FormatPlugin formatPlugin,
                                    String location,
                                    List<String> partitionColumns,
                                    StorageStrategy storageStrategy) {
    this.storageConfig = storageConfig;
    this.formatPlugin = formatPlugin;
    this.location = location;
    this.partitionColumns = partitionColumns;
    this.storageStrategy = storageStrategy;
  }

  @JsonProperty("storageConfig")
  public FileSystemConfig getStorageConfig() {
    return storageConfig;
  }

  @JsonProperty("formatConfig")
  public FormatPluginConfig getFormatConfig() {
    return formatPlugin.getConfig();
  }

  @Override
  public Writer getWriter(PhysicalOperator child) throws IOException {
    if (!(formatPlugin.supportsAutoPartitioning() ||
        partitionColumns == null || partitionColumns.size() == 0)) {
      throw UserException.unsupportedError().message(String.format("%s format does not support auto-partitioning.",
          formatPlugin.getName())).build(logger);
    }

    AbstractWriter writer = formatPlugin.getWriter(child, location, partitionColumns);
    writer.setStorageStrategy(storageStrategy);
    return writer;
  }

  @Override
  public List<String> getPartitionColumns() {
    return partitionColumns;
  }

}