All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.client.jdbc.SnowflakeFileTransferAgent Maven / Gradle / Ivy

There is a newer version: 3.18.0
Show newest version
/*
 * Copyright (c) 2012-2019 Snowflake Computing Inc. All rights reserved.
 */

package net.snowflake.client.jdbc;


import com.amazonaws.util.Base64;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.base.Strings;
import com.google.common.io.ByteStreams;
import com.google.common.io.CountingOutputStream;
import net.snowflake.client.core.ObjectMapperFactory;
import net.snowflake.client.core.SFException;
import net.snowflake.client.core.SFFixedViewResultSet;
import net.snowflake.client.core.SFSession;
import net.snowflake.client.core.SFStatement;
import net.snowflake.client.jdbc.cloud.storage.SnowflakeStorageClient;
import net.snowflake.client.jdbc.cloud.storage.StageInfo;
import net.snowflake.client.jdbc.cloud.storage.StorageClientFactory;
import net.snowflake.client.jdbc.cloud.storage.StorageObjectMetadata;
import net.snowflake.client.jdbc.cloud.storage.StorageObjectSummary;
import net.snowflake.client.jdbc.cloud.storage.StorageObjectSummaryCollection;
import net.snowflake.client.jdbc.cloud.storage.StorageProviderException;
import net.snowflake.client.jdbc.telemetryOOB.TelemetryService;
import net.snowflake.client.log.ArgSupplier;
import net.snowflake.client.log.SFLogger;
import net.snowflake.client.log.SFLoggerFactory;
import net.snowflake.common.core.RemoteStoreFileEncryptionMaterial;
import net.snowflake.common.core.SqlState;
import net.snowflake.common.util.ClassUtil;
import net.snowflake.common.util.FixedViewColumn;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.io.filefilter.WildcardFileFilter;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.DigestOutputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.zip.GZIPOutputStream;

import static net.snowflake.client.jdbc.SnowflakeUtil.systemGetProperty;

/**
 * Class for uploading/downloading files
 *
 * @author jhuang
 */
public class SnowflakeFileTransferAgent implements SnowflakeFixedView
{
  final static SFLogger logger =
      SFLoggerFactory.getLogger(SnowflakeFileTransferAgent.class);

  final static StorageClientFactory storageFactory = StorageClientFactory.getFactory();

  private static final ObjectMapper mapper =
      ObjectMapperFactory.getObjectMapper();

  // We will allow buffering of upto 128M data before spilling to disk during
  // compression and digest computation
  final static int MAX_BUFFER_SIZE = 1 << 27;
  public static final String SRC_FILE_NAME_FOR_STREAM = "stream";

  private static final String FILE_PROTOCOL = "file://";

  static private String localFSFileSep = systemGetProperty("file.separator");
  static private int DEFAULT_PARALLEL = 10;

  private String command;

  // list of files specified. Wildcard should be expanded already for uploading
  // For downloading, it the list of stage file names
  private Set sourceFiles;

  // big source files >=16MB, for which we will not upload them in serial mode
  // since TransferManager will parallelize upload
  private Set bigSourceFiles;

  // big source files < 16MB, for which we will upload them in paralle mode
  // with 4 threads by default
  private Set smallSourceFiles;

  static final private int BIG_FILE_THRESHOLD = 16 * 1024 * 1024;

  private Map fileMetadataMap;

  // stage related info
  private StageInfo stageInfo;

  // local location for where to download files to
  private String localLocation;

  private boolean showEncryptionParameter;

  // default parallelism
  private int parallel = DEFAULT_PARALLEL;

  private SFSession connection;
  private SFStatement statement;

  private InputStream sourceStream;
  private boolean sourceFromStream;
  private boolean compressSourceFromStream;

  private String destFileNameForStreamSource;

  public StageInfo getStageInfo()
  {
    return this.stageInfo;
  }

  // Encryption material
  private List encryptionMaterial;

  // Presigned URLs
  private List presignedUrls;

  // Index: Source file to encryption material
  HashMap srcFileToEncMat;

  // Index: Source file to presigned URL
  HashMap srcFileToPresignedUrl;

  public Map getStageCredentials()
  {
    return new HashMap<>(stageInfo.getCredentials());
  }

  public List getEncryptionMaterial()
  {
    return new ArrayList<>(encryptionMaterial);
  }

  public Map getSrcToMaterialsMap()
  {
    return new HashMap<>(srcFileToEncMat);
  }

  public Map getSrcToPresignedUrlMap()
  {
    return new HashMap<>(srcFileToPresignedUrl);
  }

  public String getStageLocation()
  {
    return stageInfo.getLocation();
  }

  private void initEncryptionMaterial(CommandType commandType, JsonNode jsonNode)
  throws SnowflakeSQLException, JsonProcessingException
  {
    encryptionMaterial = new ArrayList<>();
    JsonNode rootNode = jsonNode.path("data").path("encryptionMaterial");
    if (commandType == CommandType.UPLOAD)
    {
      logger.debug("initEncryptionMaterial: UPLOAD");

      RemoteStoreFileEncryptionMaterial encMat = null;
      if (!rootNode.isMissingNode() && !rootNode.isNull())
      {
        encMat = mapper.treeToValue(rootNode, RemoteStoreFileEncryptionMaterial.class);
      }
      encryptionMaterial.add(encMat);

    }
    else
    {
      logger.debug("initEncryptionMaterial: DOWNLOAD");

      if (!rootNode.isMissingNode() && !rootNode.isNull())
      {
        encryptionMaterial = Arrays.asList(
            mapper.treeToValue(rootNode, RemoteStoreFileEncryptionMaterial[].class));
      }
    }
  }

  private void initPresignedUrls(CommandType commandType, JsonNode jsonNode)
  throws SnowflakeSQLException, JsonProcessingException, IOException
  {
    presignedUrls = new ArrayList<>();
    JsonNode rootNode = jsonNode.path("data").path("presignedUrls");
    if (commandType == CommandType.DOWNLOAD)
    {
      logger.debug("initEncryptionMaterial: DOWNLOAD");

      if (!rootNode.isMissingNode() && !rootNode.isNull())
      {
        presignedUrls = Arrays.asList(mapper.readValue(rootNode.toString(), String[].class));
      }
    }
  }

  public enum CommandType
  {
    UPLOAD,
    DOWNLOAD
  }

  private CommandType commandType = CommandType.UPLOAD;

  private boolean autoCompress = true;

  private boolean overwrite = false;
  private int currentRowIndex;
  private List statusRows;

  private SnowflakeStorageClient storageClient = null;

  private static final String SOURCE_COMPRESSION_AUTO_DETECT = "auto_detect";
  private static final String SOURCE_COMPRESSION_NONE = "none";

  private String sourceCompression = SOURCE_COMPRESSION_AUTO_DETECT;

  private ExecutorService threadExecutor = null;
  private Boolean canceled = false;

  /**
   * Result status enum
   */
  public enum ResultStatus
  {
    UNKNOWN("Unknown status"),
    UPLOADED("File uploaded"),
    UNSUPPORTED("File type not supported"),
    ERROR("Error encountered"),
    SKIPPED("Skipped since file exists"),
    NONEXIST("File does not exist"),
    COLLISION("File name collides with another file"),
    DIRECTORY("Not a file, but directory"),
    DOWNLOADED("File downloaded");

    private String desc;

    public String getDesc()
    {
      return desc;
    }

    private ResultStatus(String desc)
    {
      this.desc = desc;
    }
  }

  /**
   * Remote object location
   * location: "bucket" for S3, "container" for Azure BLOB
   */
  private static class remoteLocation
  {
    String location;
    String path;

    public remoteLocation(String remoteStorageLocation, String remotePath)
    {
      location = remoteStorageLocation;
      path = remotePath;
    }
  }

  /**
   * A class for encapsulating the columns to return for the upload command
   */
  public enum UploadColumns
  {

    source,
    target,
    source_size,
    target_size,
    source_compression,
    target_compression,
    status,
    encryption,
    message

  }

  ;

  public class UploadCommandFacade
  {

    @FixedViewColumn(name = "source", ordinal = 10)
    private String srcFile;

    @FixedViewColumn(name = "target", ordinal = 20)
    private String destFile;

    @FixedViewColumn(name = "source_size", ordinal = 30)
    private long srcSize;

    @FixedViewColumn(name = "target_size", ordinal = 40)
    private long destSize = -1;

    @FixedViewColumn(name = "source_compression", ordinal = 50)
    private String srcCompressionType;

    @FixedViewColumn(name = "target_compression", ordinal = 60)
    private String destCompressionType;

    @FixedViewColumn(name = "status", ordinal = 70)
    private String resultStatus;

    @FixedViewColumn(name = "message", ordinal = 80)
    private String errorDetails;

    public UploadCommandFacade(String srcFile, String destFile,
                               String resultStatus,
                               String errorDetails,
                               long srcSize, long destSize,
                               String srcCompressionType,
                               String destCompressionType)
    {
      this.srcFile = srcFile;
      this.destFile = destFile;
      this.resultStatus = resultStatus;
      this.errorDetails = errorDetails;
      this.srcSize = srcSize;
      this.destSize = destSize;
      this.srcCompressionType = srcCompressionType;
      this.destCompressionType = destCompressionType;
    }
  }

  public class UploadCommandEncryptionFacade extends UploadCommandFacade
  {
    @FixedViewColumn(name = "encryption", ordinal = 75)
    private String encryption;

    public UploadCommandEncryptionFacade(String srcFile, String destFile,
                                         String resultStatus,
                                         String errorDetails,
                                         long srcSize, long destSize,
                                         String srcCompressionType,
                                         String destCompressionType,
                                         boolean isEncrypted)
    {
      super(srcFile, destFile, resultStatus, errorDetails, srcSize, destSize,
            srcCompressionType, destCompressionType);
      this.encryption = isEncrypted ? "ENCRYPTED" : "";
    }
  }

  /**
   * A class for encapsulating the columns to return for the download command
   */
  public class DownloadCommandFacade
  {
    @FixedViewColumn(name = "file", ordinal = 10)
    private String file;

    @FixedViewColumn(name = "size", ordinal = 20)
    private long size;

    @FixedViewColumn(name = "status", ordinal = 30)
    private String resultStatus;

    @FixedViewColumn(name = "message", ordinal = 40)
    private String errorDetails;

    public DownloadCommandFacade(String file,
                                 String resultStatus,
                                 String errorDetails,
                                 long size)
    {
      this.file = file;
      this.resultStatus = resultStatus;
      this.errorDetails = errorDetails;
      this.size = size;
    }
  }

  public class DownloadCommandEncryptionFacade extends DownloadCommandFacade
  {
    @FixedViewColumn(name = "encryption", ordinal = 35)
    private String encryption;

    public DownloadCommandEncryptionFacade(String file,
                                           String resultStatus,
                                           String errorDetails,
                                           long size,
                                           boolean isEncrypted)
    {
      super(file, resultStatus, errorDetails, size);
      this.encryption = isEncrypted ? "DECRYPTED" : "";
    }
  }

  /**
   * File metadata with everything we care so we don't need to repeat
   * same processing to get these info.
   */
  private class FileMetadata
  {
    public String srcFileName;
    public long srcFileSize;
    public String destFileName;
    public long destFileSize;
    public boolean requireCompress;
    public ResultStatus resultStatus = ResultStatus.UNKNOWN;
    public String errorDetails = "";
    public FileCompressionType srcCompressionType;
    public FileCompressionType destCompressionType;
    public boolean isEncrypted = false;
  }

  public enum FileCompressionType
  {
    GZIP(".gz", "application",
         Arrays.asList("gzip", "x-gzip"), true),
    DEFLATE(".deflate", "application",
            Arrays.asList("zlib", "deflate"), true),
    RAW_DEFLATE(".raw_deflate", "application",
                Arrays.asList("raw_deflate"), true),
    BZIP2(".bz2", "application",
          Arrays.asList("bzip2", "x-bzip2", "x-bz2", "x-bzip", "bz2"), true),
    ZSTD(".zst", "application",
         Arrays.asList("zstd"), true),
    BROTLI(".br", "application",
           Arrays.asList("brotli", "x-brotli"), true),
    LZIP(".lz", "application",
         Arrays.asList("lzip", "x-lzip"), false),
    LZMA(".lzma", "application",
         Arrays.asList("lzma", "x-lzma"), false),
    LZO(".lzo", "application",
        Arrays.asList("lzop", "x-lzop"), false),
    XZ(".xz", "application",
       Arrays.asList("xz", "x-xz"), false),
    COMPRESS(".Z", "application",
             Arrays.asList("compress", "x-compress"), false),
    PARQUET(".parquet", "snowflake",
            Collections.singletonList("parquet"), true),
    ORC(".orc", "snowflake",
        Collections.singletonList("orc"), true);

    FileCompressionType(String fileExtension, String mimeType,
                        List mimeSubTypes,
                        boolean isSupported)
    {
      this.fileExtension = fileExtension;
      this.mimeType = mimeType;
      this.mimeSubTypes = mimeSubTypes;
      this.supported = isSupported;
    }

    private String fileExtension;
    private String mimeType;
    private List mimeSubTypes;
    private boolean supported;

    static final Map mimeSubTypeToCompressionMap =
        new HashMap();

    static
    {
      for (FileCompressionType compression : FileCompressionType.values())
      {
        for (String mimeSubType : compression.mimeSubTypes)
        {
          mimeSubTypeToCompressionMap.put(mimeSubType, compression);
        }
      }
    }

    static public FileCompressionType lookupByMimeSubType(String mimeSubType)
    {
      return mimeSubTypeToCompressionMap.get(mimeSubType);
    }

    public boolean isSupported()
    {
      return supported;
    }
  }

  static class InputStreamWithMetadata
  {
    long size;
    String digest;

    // FileBackedOutputStream that should be destroyed when
    // the input stream has been consumed entirely
    FileBackedOutputStream fileBackedOutputStream;

    InputStreamWithMetadata(long size, String digest,
                            FileBackedOutputStream fileBackedOutputStream)
    {
      this.size = size;
      this.digest = digest;
      this.fileBackedOutputStream = fileBackedOutputStream;
    }
  }

  /**
   * Compress an input stream with GZIP and return the result size, digest and
   * compressed stream.
   *
   * @param inputStream data input
   * @return result size, digest and compressed stream
   * @throws SnowflakeSQLException if encountered exception when compressing
   */
  private static InputStreamWithMetadata compressStreamWithGZIP(
      InputStream inputStream) throws SnowflakeSQLException
  {
    FileBackedOutputStream tempStream =
        new FileBackedOutputStream(MAX_BUFFER_SIZE, true);

    try
    {

      DigestOutputStream digestStream = new DigestOutputStream(tempStream,
                                                               MessageDigest.getInstance("SHA-256"));

      CountingOutputStream countingStream =
          new CountingOutputStream(digestStream);

      // construct a gzip stream with sync_flush mode
      GZIPOutputStream gzipStream;

      gzipStream = new GZIPOutputStream(countingStream, true);

      IOUtils.copy(inputStream, gzipStream);

      inputStream.close();

      gzipStream.finish();
      gzipStream.flush();

      countingStream.flush();

      return new InputStreamWithMetadata(countingStream.getCount(),
                                         Base64.encodeAsString(digestStream.getMessageDigest().digest()),
                                         tempStream);

    }
    catch (IOException | NoSuchAlgorithmException ex)
    {
      logger.error("Exception compressing input stream", ex);

      throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR,
                                      ErrorCode.INTERNAL_ERROR.getMessageCode(),
                                      "error encountered for compression");
    }

  }

  /**
   * Compress an input stream with GZIP and return the result size, digest and
   * compressed stream.
   *
   * @param inputStream The input stream to compress
   * @return the compressed stream
   * @throws SnowflakeSQLException Will be thrown if there is a problem with
   *                               compression
   * @deprecated Can be removed when all accounts are encrypted
   */
  @Deprecated
  private static InputStreamWithMetadata compressStreamWithGZIPNoDigest(
      InputStream inputStream) throws SnowflakeSQLException
  {
    try
    {
      FileBackedOutputStream tempStream =
          new FileBackedOutputStream(MAX_BUFFER_SIZE, true);

      CountingOutputStream countingStream =
          new CountingOutputStream(tempStream);

      // construct a gzip stream with sync_flush mode
      GZIPOutputStream gzipStream;

      gzipStream = new GZIPOutputStream(countingStream, true);

      IOUtils.copy(inputStream, gzipStream);

      inputStream.close();

      gzipStream.finish();
      gzipStream.flush();

      countingStream.flush();

      return new InputStreamWithMetadata(countingStream.getCount(),
                                         null, tempStream);

    }
    catch (IOException ex)
    {
      logger.error("Exception compressing input stream", ex);

      throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR,
                                      ErrorCode.INTERNAL_ERROR.getMessageCode(),
                                      "error encountered for compression");
    }

  }

  private static InputStreamWithMetadata computeDigest(InputStream is,
                                                       boolean resetStream)
  throws NoSuchAlgorithmException, IOException
  {
    MessageDigest md = MessageDigest.getInstance("SHA-256");
    if (resetStream)
    {
      FileBackedOutputStream tempStream =
          new FileBackedOutputStream(MAX_BUFFER_SIZE, true);

      CountingOutputStream countingOutputStream =
          new CountingOutputStream(tempStream);

      DigestOutputStream digestStream = new DigestOutputStream(countingOutputStream, md);

      IOUtils.copy(is, digestStream);

      return new InputStreamWithMetadata(countingOutputStream.getCount(),
                                         Base64.encodeAsString(digestStream.getMessageDigest().digest()),
                                         tempStream);
    }
    else
    {
      CountingOutputStream countingOutputStream =
          new CountingOutputStream(ByteStreams.nullOutputStream());

      DigestOutputStream digestStream = new DigestOutputStream(
          countingOutputStream,
          md);
      IOUtils.copy(is, digestStream);
      return new InputStreamWithMetadata(countingOutputStream.getCount(),
                                         Base64.encodeAsString(digestStream.getMessageDigest().digest()), null);
    }
  }

  /**
   * A callable that can be executed in a separate thread using exeuctor service.
   * 

* The callable does compression if needed and upload the result to the * table's staging area. * * @param stage information about the stage * @param srcFilePath source file path * @param metadata file metadata * @param client client object used to communicate with c3 * @param connection connection object * @param command command string * @param inputStream null if upload source is file * @param sourceFromStream whether upload source is file or stream * @param parallel number of threads for parallel uploading * @param srcFile source file name * @param encMat not null if encryption is required * @return a callable that uploading file to the remote store */ public static Callable getUploadFileCallable( final StageInfo stage, final String srcFilePath, final FileMetadata metadata, final SnowflakeStorageClient client, final SFSession connection, final String command, final InputStream inputStream, final boolean sourceFromStream, final int parallel, final File srcFile, final RemoteStoreFileEncryptionMaterial encMat) { return new Callable() { public Void call() throws Exception { logger.debug("Entering getUploadFileCallable..."); // make sure initialize context for the telemetry service for this thread TelemetryService.getInstance().updateContext(connection.getSnowflakeConnectionString()); InputStream uploadStream = inputStream; File fileToUpload = null; if (uploadStream == null) { try { uploadStream = new FileInputStream(srcFilePath); } catch (FileNotFoundException ex) { metadata.resultStatus = ResultStatus.ERROR; metadata.errorDetails = ex.getMessage(); throw ex; } } // this shouldn't happen if (metadata == null) { throw new SnowflakeSQLException(SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "missing file metadata for: " + srcFilePath); } String destFileName = metadata.destFileName; long uploadSize; String digest = null; logger.debug("Dest file name={}"); // Temp file that needs to be cleaned up when upload was successful FileBackedOutputStream fileBackedOutputStream = null; // SNOW-16082: we should catpure exception if we fail to compress or // calcuate digest. try { if (metadata.requireCompress) { InputStreamWithMetadata compressedSizeAndStream = (encMat == null ? compressStreamWithGZIPNoDigest(uploadStream) : compressStreamWithGZIP(uploadStream)); fileBackedOutputStream = compressedSizeAndStream.fileBackedOutputStream; // update the size uploadSize = compressedSizeAndStream.size; digest = compressedSizeAndStream.digest; if (compressedSizeAndStream.fileBackedOutputStream.getFile() != null) { fileToUpload = compressedSizeAndStream.fileBackedOutputStream.getFile(); } logger.debug("New size after compression: {}", uploadSize); } else if (stage.getStageType() != StageInfo.StageType.LOCAL_FS) { // If it's not local_fs, we store our digest in the metadata // In local_fs, we don't need digest, and if we turn it on, we will consume whole uploadStream, which local_fs uses. InputStreamWithMetadata result = computeDigest(uploadStream, sourceFromStream); digest = result.digest; fileBackedOutputStream = result.fileBackedOutputStream; uploadSize = result.size; if (!sourceFromStream) { fileToUpload = srcFile; } else if (result.fileBackedOutputStream.getFile() != null) { fileToUpload = result.fileBackedOutputStream.getFile(); } } else { if (!sourceFromStream && (srcFile != null)) { fileToUpload = srcFile; } // if stage is local_fs and upload source is stream, upload size // does not matter since 1) transfer did not require size 2) no // output from uploadStream api is required uploadSize = sourceFromStream ? 0 : srcFile.length(); } logger.debug("Started copying file from: {} to {}:{} destName: {} " + "auto compressed? {} size={}", srcFilePath, stage.getStageType().name(), stage.getLocation(), destFileName, (metadata.requireCompress ? "yes" : "no"), uploadSize); // Simulated failure code. if (connection.getInjectFileUploadFailure() != null && srcFilePath.endsWith( (connection).getInjectFileUploadFailure())) { throw new SnowflakeSimulatedUploadFailure( srcFile != null ? srcFile.getName() : "Unknown"); } // upload it switch (stage.getStageType()) { case LOCAL_FS: pushFileToLocal(stage.getLocation(), srcFilePath, destFileName, uploadStream, fileBackedOutputStream); break; case S3: case AZURE: case GCS: pushFileToRemoteStore(stage, destFileName, uploadStream, fileBackedOutputStream, uploadSize, digest, metadata.destCompressionType, client, connection, command, parallel, fileToUpload, (fileToUpload == null), encMat); metadata.isEncrypted = encMat != null; break; } } catch (SnowflakeSimulatedUploadFailure ex) { // This code path is used for Simulated failure code in tests. // Never happen in production metadata.resultStatus = ResultStatus.ERROR; metadata.errorDetails = ex.getMessage(); throw ex; } catch (Throwable ex) { logger.error( "Exception encountered during file upload", ex); metadata.resultStatus = ResultStatus.ERROR; metadata.errorDetails = ex.getMessage(); throw ex; } finally { if (fileBackedOutputStream != null) { try { fileBackedOutputStream.reset(); } catch (IOException ex) { logger.debug("failed to clean up temp file: {}", ex); } } if (inputStream == null) { IOUtils.closeQuietly(uploadStream); } } logger.debug("filePath: {}", srcFilePath); // set dest size metadata.destFileSize = uploadSize; // mark the file as being uploaded metadata.resultStatus = ResultStatus.UPLOADED; return null; } }; } /** * A callable that can be executed in a separate thread using executor service. *

* The callable download files from a stage location to a local location * * @param stage stage information * @param srcFilePath path that stores the downloaded file * @param localLocation local location * @param fileMetadataMap file metadata map * @param client remote store client * @param connection connection object * @param command command string * @param encMat remote store encryption material * @param parallel number of parallel threads for downloading * @param presignedUrl Presigned URL for file download * @return a callable responsible for downloading files */ public static Callable getDownloadFileCallable( final StageInfo stage, final String srcFilePath, final String localLocation, final Map fileMetadataMap, final SnowflakeStorageClient client, final SFSession connection, final String command, final int parallel, final RemoteStoreFileEncryptionMaterial encMat, final String presignedUrl) { return new Callable() { public Void call() throws Exception { logger.debug("Entering getDownloadFileCallable..."); // make sure initialize context for the telemetry service for this thread TelemetryService.getInstance().updateContext(connection.getSnowflakeConnectionString()); FileMetadata metadata = fileMetadataMap.get(srcFilePath); // this shouldn't happen if (metadata == null) { throw new SnowflakeSQLException(SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "missing file metadata for: " + srcFilePath); } String destFileName = metadata.destFileName; logger.debug("Started copying file from: {}:{} file path:{} to {} destName:{}", stage.getStageType().name(), stage.getLocation(), srcFilePath, localLocation, destFileName); try { switch (stage.getStageType()) { case LOCAL_FS: pullFileFromLocal(stage.getLocation(), srcFilePath, localLocation, destFileName); break; case AZURE: case S3: case GCS: pullFileFromRemoteStore(stage, srcFilePath, destFileName, localLocation, client, connection, command, parallel, encMat, presignedUrl); metadata.isEncrypted = encMat != null; break; } } catch (Throwable ex) { logger.error( "Exception encountered during file download", ex); metadata.resultStatus = ResultStatus.ERROR; metadata.errorDetails = ex.getMessage(); throw ex; } logger.debug("filePath: {}", srcFilePath); File destFile = new File(localLocation + localFSFileSep + destFileName); long downloadSize = destFile.length(); // set dest size metadata.destFileSize = downloadSize; // mark the file as being uploaded metadata.resultStatus = ResultStatus.DOWNLOADED; return null; } }; } public SnowflakeFileTransferAgent(String command, SFSession connection, SFStatement statement) throws SnowflakeSQLException { this.command = command; this.connection = connection; this.statement = statement; this.statusRows = new ArrayList<>(); // parse the command logger.debug("Start parsing"); parseCommand(); if (stageInfo.getStageType() != StageInfo.StageType.LOCAL_FS) { storageClient = storageFactory.createClient(stageInfo, parallel, null); } } /** * Parse the put/get command. *

* We send the command to the GS to do the parsing. In the future, we * will delegate more work to GS such as copying files from HTTP to the remote store. * * @throws SnowflakeSQLException failure to parse the PUT/GET command */ private void parseCommand() throws SnowflakeSQLException { // For AWS and Azure, this command returns enough info for us to get creds // we can use for each of the GETs/PUTs. For GCS, we need to issue a separate // call to GS to get creds (in the form of a presigned URL) for each file // we're uploading or downloading. This call gets our src_location and // encryption material, which we'll use for all the subsequent calls to GS // for creds for each file. Those calls are made from pushFileToRemoteStore // and pullFileFromRemoteStore if the storage slient requires a presigned // URL. JsonNode jsonNode = parseCommandInGS(statement, command); // get command type if (!jsonNode.path("data").path("command").isMissingNode()) { commandType = CommandType.valueOf( jsonNode.path("data").path("command").asText()); } // get source file locations as array (apply to both upload and download) JsonNode locationsNode = jsonNode.path("data").path("src_locations"); assert locationsNode.isArray(); String[] src_locations; try { src_locations = mapper.readValue(locationsNode.toString(), String[].class); initEncryptionMaterial(commandType, jsonNode); initPresignedUrls(commandType, jsonNode); } catch (Exception ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "Failed to parse the locations due to: " + ex.getMessage()); } showEncryptionParameter = jsonNode.path("data") .path("clientShowEncryptionParameter") .asBoolean(); String localFilePathFromGS = null; // do upload command specific parsing if (commandType == CommandType.UPLOAD) { if (src_locations.length > 0) { localFilePathFromGS = src_locations[0]; } sourceFiles = expandFileNames(src_locations); autoCompress = jsonNode.path("data").path("autoCompress").asBoolean(true); if (!jsonNode.path("data").path("sourceCompression").isMissingNode()) { sourceCompression = jsonNode.path("data").path("sourceCompression").asText(); } } else { // do download command specific parsing srcFileToEncMat = new HashMap<>(); // create mapping from source file to encryption materials if (src_locations.length == encryptionMaterial.size()) { for (int srcFileIdx = 0; srcFileIdx < src_locations.length; srcFileIdx++) { srcFileToEncMat.put(src_locations[srcFileIdx], encryptionMaterial.get(srcFileIdx)); } } // create mapping from source file to presigned URLs srcFileToPresignedUrl = new HashMap<>(); if (src_locations.length == presignedUrls.size()) { for (int srcFileIdx = 0; srcFileIdx < src_locations.length; srcFileIdx++) { srcFileToPresignedUrl.put(src_locations[srcFileIdx], presignedUrls.get(srcFileIdx)); } } sourceFiles = new HashSet(Arrays.asList(src_locations)); localLocation = jsonNode.path("data").path("localLocation").asText(); localFilePathFromGS = localLocation; if (localLocation.startsWith("~")) { // replace ~ with user home localLocation = systemGetProperty("user.home") + localLocation.substring(1); } // it should not contain any ~ after the above replacement if (localLocation.contains("~")) { throw new SnowflakeSQLException(SqlState.IO_ERROR, ErrorCode.PATH_NOT_DIRECTORY.getMessageCode(), localLocation); } // todo: replace ~userid with the home directory of a given userid // one idea is to get the home directory for current user and replace // the last user id with the given user id. // user may also specify files relative to current directory // add the current path if that is the case if (!(new File(localLocation)).isAbsolute()) { String cwd = systemGetProperty("user.dir"); logger.debug("Adding current working dir to relative file path."); localLocation = cwd + localFSFileSep + localLocation; } // local location should be a directory if ((new File(localLocation)).isFile()) { throw new SnowflakeSQLException(SqlState.IO_ERROR, ErrorCode.PATH_NOT_DIRECTORY.getMessageCode(), localLocation); } } // SNOW-15153: verify that the value after file:// is not changed by GS verifyLocalFilePath(localFilePathFromGS); // more parameters common to upload/download String stageLocation = jsonNode.path("data").path("stageInfo"). path("location").asText(); parallel = jsonNode.path("data").path("parallel").asInt(); overwrite = jsonNode.path("data").path("overwrite").asBoolean(false); String stageLocationType = jsonNode.path("data").path("stageInfo"). path("locationType").asText(); String stageRegion = null; if (!jsonNode.path("data").path("stageInfo").path("region").isMissingNode()) { stageRegion = jsonNode.path("data").path("stageInfo") .path("region").asText(); } // endPoint and storageAccount are only available in Azure stages. Value // will be present but null in other platforms. String endPoint = null; String stgAcct = null; if ("AZURE".equalsIgnoreCase(stageLocationType)) { // Jackson is doing some very strange things trying to pull the value of // the storageAccount node after adding the GCP library dependencies. // If we try to pull the value by name, we get back null, but clearly the // node is there. This code works around the issue by enumerating through // all the nodes and getting the one that starts with "sto". The value // then comes back with double quotes around it, so we're stripping them // off. As long as our JSON doc doesn't add another node that starts with // "sto", this should work fine. endPoint = jsonNode.path("data").path("stageInfo").findValue("endPoint").asText(); Iterator> fields = jsonNode.path("data").path("stageInfo").fields(); while (fields.hasNext()) { Entry jsonField = fields.next(); if (jsonField.getKey().startsWith("sto")) { stgAcct = jsonField.getValue() .toString() .trim() .substring(1, jsonField.getValue().toString().trim().lastIndexOf("\"")); } } } if ("LOCAL_FS".equalsIgnoreCase(stageLocationType)) { if (stageLocation.startsWith("~")) { // replace ~ with user home stageLocation = systemGetProperty("user.home") + stageLocation.substring(1); } if (!(new File(stageLocation)).isAbsolute()) { String cwd = systemGetProperty("user.dir"); logger.debug("Adding current working dir to stage file path."); stageLocation = cwd + localFSFileSep + stageLocation; } } if (logger.isDebugEnabled()) { logger.debug("Command type: {}", commandType); if (commandType == CommandType.UPLOAD) { logger.debug("autoCompress: {}", autoCompress); logger.debug("source compression: {}", sourceCompression); } else { logger.debug("local download location: {}", localLocation); } logger.debug("Source files:"); for (String srcFile : sourceFiles) { logger.debug("file: {}", srcFile); } logger.debug("stageLocation: {}", stageLocation); logger.debug("parallel: {}", parallel); logger.debug("overwrite: {}", overwrite); logger.debug("destLocationType: {}", stageLocationType); logger.debug("stageRegion: {}", stageRegion); logger.debug("endPoint: {}", endPoint); logger.debug("storageAccount: {}", stgAcct); } Map stageCredentials = extractStageCreds(jsonNode); stageInfo = StageInfo.createStageInfo(stageLocationType, stageLocation, stageCredentials, stageRegion, endPoint, stgAcct); } /** * A helper method to verify if the local file path from GS matches * what's parsed locally. This is for security purpose as documented in * SNOW-15153. * * @param localFilePathFromGS the local file path to verify * @throws SnowflakeSQLException Will be thrown if the log path if empty or * if it doesn't match what comes back from GS */ private void verifyLocalFilePath(String localFilePathFromGS) throws SnowflakeSQLException { String localFilePath = getLocalFilePathFromCommand(command); if (!localFilePath.isEmpty() && !localFilePath.equals(localFilePathFromGS)) { throw new SnowflakeSQLException(SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "Unexpected local file path from GS. From GS: " + localFilePathFromGS + ", expected: " + localFilePath); } else if (localFilePath.isEmpty()) { logger.debug( "fail to parse local file path from command: {}", command); } else { logger.trace( "local file path from GS matches local parsing: {}", localFilePath); } } /** * Parses out the local file path from the command. We need this to get the * file paths to expand wildcards and make sure the paths GS returns are * correct * * @param command The GET/PUT command we send to GS * @return Path to the local file */ private static String getLocalFilePathFromCommand(String command) { if (command == null) { logger.error("null command"); return null; } if (command.indexOf(FILE_PROTOCOL) < 0) { logger.error( "file:// prefix not found in command: {}", command); return null; } int localFilePathBeginIdx = command.indexOf(FILE_PROTOCOL) + FILE_PROTOCOL.length(); boolean isLocalFilePathQuoted = (localFilePathBeginIdx > FILE_PROTOCOL.length()) && (command.charAt(localFilePathBeginIdx - 1 - FILE_PROTOCOL.length()) == '\''); // the ending index is exclusive int localFilePathEndIdx = 0; String localFilePath = ""; if (isLocalFilePathQuoted) { // look for the matching quote localFilePathEndIdx = command.indexOf("'", localFilePathBeginIdx); if (localFilePathEndIdx > localFilePathBeginIdx) { localFilePath = command.substring(localFilePathBeginIdx, localFilePathEndIdx); } // unescape backslashes to match the file name from GS localFilePath = localFilePath.replaceAll("\\\\\\\\", "\\\\"); } else { // look for the first space or new line or semi colon List indexList = new ArrayList<>(); char[] delimiterChars = {' ', '\n', ';'}; for (int i = 0; i < delimiterChars.length; i++) { int charIndex = command.indexOf(delimiterChars[i], localFilePathBeginIdx); if (charIndex != -1) { indexList.add(charIndex); } } localFilePathEndIdx = indexList.isEmpty() ? -1 : Collections.min(indexList); if (localFilePathEndIdx > localFilePathBeginIdx) { localFilePath = command.substring(localFilePathBeginIdx, localFilePathEndIdx); } else if (localFilePathEndIdx == -1) { localFilePath = command.substring(localFilePathBeginIdx); } } return localFilePath; } /** * @return JSON doc containing the command options returned by GS * @throws SnowflakeSQLException Will be thrown if parsing the command by * GS fails */ private static JsonNode parseCommandInGS(SFStatement statement, String command) throws SnowflakeSQLException { Object result = null; // send the command to GS try { result = statement.executeHelper(command, "application/json", null, // bindValues false, // describeOnly false // internal ); } catch (SFException ex) { throw new SnowflakeSQLException(ex, ex.getSqlState(), ex.getVendorCode(), ex.getParams()); } JsonNode jsonNode = (JsonNode) result; logger.debug("response: {}", jsonNode.toString()); SnowflakeUtil.checkErrorAndThrowException(jsonNode); return jsonNode; } /** * @param rootNode JSON doc returned by GS * @throws SnowflakeSQLException Will be thrown if we fail to parse the * stage credentials */ private static Map extractStageCreds(JsonNode rootNode) throws SnowflakeSQLException { JsonNode credsNode = rootNode.path("data").path("stageInfo").path("creds"); Map stageCredentials = null; try { TypeReference> typeRef = new TypeReference>() { }; stageCredentials = mapper.readValue(credsNode.toString(), typeRef); } catch (Exception ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "Failed to parse the credentials (" + (credsNode != null ? credsNode.toString() : "null") + ") due to exception: " + ex.getMessage()); } return stageCredentials; } public boolean execute() throws SQLException { try { logger.debug("Start init metadata"); // initialize file metadata map initFileMetadata(); logger.debug("Start checking file types"); // check file compression type if (commandType == CommandType.UPLOAD) { processFileCompressionTypes(); } // Filter out files that are already existing in the destination. // GCS doesn't have permission to list in the presigned url, so we'll // always overwrite. if (!overwrite && stageInfo.getStageType() != StageInfo.StageType.GCS) { logger.debug("Start filtering"); filterExistingFiles(); } synchronized (canceled) { if (canceled) { logger.debug("File transfer canceled by user"); threadExecutor = null; return false; } } // create target directory for download command if (commandType == CommandType.DOWNLOAD) { File dir = new File(localLocation); if (!dir.exists()) { boolean created = dir.mkdirs(); if (created) { logger.debug("directory created: {}", localLocation); } else { logger.debug("directory not created {}", localLocation); } } downloadFiles(); } else if (sourceFromStream) { uploadStream(); } else { // separate files to big files list and small files list // big files will be uploaded in serial, while small files will be // uploaded concurrently. segregateFilesBySize(); if (bigSourceFiles != null) { logger.debug("start uploading big files"); uploadFiles(bigSourceFiles, 1); logger.debug("end uploading big files"); } if (smallSourceFiles != null) { logger.debug("start uploading small files"); uploadFiles(smallSourceFiles, parallel); logger.debug("end uploading small files"); } } // populate status rows to be returned to the client populateStatusRows(); return true; } finally { if (storageClient != null) { storageClient.shutdown(); } } } /** * Helper to upload data from a stream */ private void uploadStream() throws SnowflakeSQLException { try { threadExecutor = SnowflakeUtil.createDefaultExecutorService( "sf-stream-upload-worker-", 1); RemoteStoreFileEncryptionMaterial encMat = encryptionMaterial.get(0); if (commandType == CommandType.UPLOAD) { threadExecutor.submit( getUploadFileCallable( stageInfo, SRC_FILE_NAME_FOR_STREAM, fileMetadataMap.get(SRC_FILE_NAME_FOR_STREAM), (stageInfo.getStageType() == StageInfo.StageType.LOCAL_FS) ? null : storageFactory.createClient(stageInfo, parallel, encMat), connection, command, sourceStream, true, parallel, null, encMat)); } else if (commandType == CommandType.DOWNLOAD) { throw new SnowflakeSQLException(SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode()); } threadExecutor.shutdown(); try { // wait for all threads to complete without timeout threadExecutor.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS); } catch (InterruptedException ex) { throw new SnowflakeSQLException(SqlState.QUERY_CANCELED, ErrorCode.INTERRUPTED.getMessageCode()); } logger.debug("Done with uploading from a stream"); } finally { if (threadExecutor != null) { threadExecutor.shutdownNow(); threadExecutor = null; } } } /** * Download a file from remote, and return an input stream */ InputStream downloadStream(String fileName) throws SnowflakeSQLException { if (stageInfo.getStageType() == StageInfo.StageType.LOCAL_FS) { logger.error("downloadStream function doesn't support local file system"); throw new SnowflakeSQLException(SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "downloadStream function only supported in remote stages"); } remoteLocation remoteLocation = extractLocationAndPath(stageInfo.getLocation()); String stageFilePath = fileName; if (!remoteLocation.path.isEmpty()) { stageFilePath = SnowflakeUtil.concatFilePathNames(remoteLocation.path, fileName, "/"); } RemoteStoreFileEncryptionMaterial encMat = srcFileToEncMat.get(fileName); String presignedUrl = srcFileToPresignedUrl.get(fileName); return storageFactory.createClient(stageInfo, parallel, encMat) .downloadToStream(connection, command, parallel, remoteLocation.location, stageFilePath, stageInfo.getRegion(), presignedUrl); } /** * Helper to download files from remote */ private void downloadFiles() throws SnowflakeSQLException { try { threadExecutor = SnowflakeUtil.createDefaultExecutorService( "sf-file-download-worker-", 1); for (String srcFile : sourceFiles) { FileMetadata fileMetadata = fileMetadataMap.get(srcFile); // Check if the result status is already set so that we don't need to // upload it if (fileMetadata.resultStatus != ResultStatus.UNKNOWN) { logger.debug("Skipping {}, status: {}, details: {}", srcFile, fileMetadata.resultStatus, fileMetadata.errorDetails); continue; } RemoteStoreFileEncryptionMaterial encMat = srcFileToEncMat.get(srcFile); String presignedUrl = srcFileToPresignedUrl.get(srcFile); threadExecutor.submit(getDownloadFileCallable( stageInfo, srcFile, localLocation, fileMetadataMap, (stageInfo.getStageType() == StageInfo.StageType.LOCAL_FS) ? null : storageFactory.createClient(stageInfo, parallel, encMat), connection, command, parallel, encMat, presignedUrl)); logger.debug("submitted download job for: {}", srcFile); } threadExecutor.shutdown(); try { // wait for all threads to complete without timeout threadExecutor.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS); } catch (InterruptedException ex) { throw new SnowflakeSQLException(SqlState.QUERY_CANCELED, ErrorCode.INTERRUPTED.getMessageCode()); } logger.debug("Done with downloading"); } finally { if (threadExecutor != null) { threadExecutor.shutdownNow(); threadExecutor = null; } } } /** * This method is used in uploadFiles to delay the file upload for the given time, which is set as a session * parameter called "inject_wait_in_put." Normally this value is 0, but it is used in testing. * * @param delayTime the number of seconds to sleep before uploading the file */ private void setUploadDelay(int delayTime) { if (delayTime > 0) { try { TimeUnit.SECONDS.sleep(delayTime); } catch (InterruptedException ie) { Thread.currentThread().interrupt(); } } } /** * This method create a thread pool based on requested number of threads * and upload the files using the thread pool. * * @param fileList The set of files to upload * @param parallel degree of parallelism for the upload * @throws SnowflakeSQLException Will be thrown if uploading the files fails */ private void uploadFiles(Set fileList, int parallel) throws SnowflakeSQLException { try { threadExecutor = SnowflakeUtil.createDefaultExecutorService( "sf-file-upload-worker-", parallel); for (String srcFile : fileList) { FileMetadata fileMetadata = fileMetadataMap.get(srcFile); // Check if the result status is already set so that we don't need to // upload it if (fileMetadata.resultStatus != ResultStatus.UNKNOWN) { logger.debug("Skipping {}, status: {}, details: {}", srcFile, fileMetadata.resultStatus, fileMetadata.errorDetails); continue; } /* * For small files, we upload files in parallel, so we don't * want the remote store uploader to upload parts in parallel for each file. * For large files, we upload them in serial, and we want remote store uploader * to upload parts in parallel for each file. This is the reason * for the parallel value. */ File srcFileObj = new File(srcFile); // PUT delay goes here!! int delay = connection.getInjectWaitInPut(); setUploadDelay(delay); threadExecutor.submit(getUploadFileCallable( stageInfo, srcFile, fileMetadata, (stageInfo.getStageType() == StageInfo.StageType.LOCAL_FS) ? null : storageFactory.createClient(stageInfo, parallel, encryptionMaterial.get(0)), connection, command, null, false, (parallel > 1 ? 1 : this.parallel), srcFileObj, encryptionMaterial.get(0))); logger.debug("submitted copy job for: {}", srcFile); } // shut down the thread executor threadExecutor.shutdown(); try { // wait for all threads to complete without timeout threadExecutor.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS); } catch (InterruptedException ex) { throw new SnowflakeSQLException(SqlState.QUERY_CANCELED, ErrorCode.INTERRUPTED.getMessageCode()); } logger.debug("Done with uploading"); } finally { // shut down the thread pool in any case if (threadExecutor != null) { threadExecutor.shutdownNow(); threadExecutor = null; } } } private void segregateFilesBySize() { for (String srcFile : sourceFiles) { if ((new File(srcFile)).length() > BIG_FILE_THRESHOLD) { if (bigSourceFiles == null) { bigSourceFiles = new HashSet(sourceFiles.size()); } bigSourceFiles.add(srcFile); } else { if (smallSourceFiles == null) { smallSourceFiles = new HashSet(sourceFiles.size()); } smallSourceFiles.add(srcFile); } } } public void cancel() { synchronized (canceled) { if (threadExecutor != null) { threadExecutor.shutdownNow(); threadExecutor = null; } canceled = true; } } /** * process a list of file paths separated by "," and expand the wildcards * if any to generate the list of paths for all files matched by the * wildcards * * @param filePathList file path list * @return a set of file names that is matched * @throws SnowflakeSQLException if cannot find the file */ static Set expandFileNames(String[] filePathList) throws SnowflakeSQLException { Set result = new HashSet(); // a location to file pattern map so that we only need to list the // same directory once when they appear in multiple times. Map> locationToFilePatterns; locationToFilePatterns = new HashMap>(); String cwd = systemGetProperty("user.dir"); for (String path : filePathList) { // replace ~ with user home path = path.replace("~", systemGetProperty("user.home")); // user may also specify files relative to current directory // add the current path if that is the case if (!(new File(path)).isAbsolute()) { logger.debug("Adding current working dir to relative file path."); path = cwd + localFSFileSep + path; } // check if the path contains any wildcards if (!path.contains("*") && !path.contains("?") && !(path.contains("[") && path.contains("]"))) { /* this file path doesn't have any wildcard, so we don't need to * expand it */ result.add(path); } else { // get the directory path int lastFileSepIndex = path.lastIndexOf(localFSFileSep); // SNOW-15203: if we don't find a default file sep, try "/" if it is not // the default file sep. if (lastFileSepIndex < 0 && !"/".equals(localFSFileSep)) { lastFileSepIndex = path.lastIndexOf("/"); } String loc = path.substring(0, lastFileSepIndex + 1); String filePattern = path.substring(lastFileSepIndex + 1); List filePatterns = locationToFilePatterns.get(loc); if (filePatterns == null) { filePatterns = new ArrayList(); locationToFilePatterns.put(loc, filePatterns); } filePatterns.add(filePattern); } } // For each location, list files and match against the patterns for (Map.Entry> entry : locationToFilePatterns.entrySet()) { try { java.io.File dir = new java.io.File(entry.getKey()); logger.debug("Listing files under: {} with patterns: {}", entry.getKey(), entry.getValue().toString()); // The following currently ignore sub directories for (Object file : FileUtils.listFiles(dir, new WildcardFileFilter(entry.getValue()), null)) { result.add(((java.io.File) file).getCanonicalPath()); } } catch (Exception ex) { throw new SnowflakeSQLException(ex, SqlState.DATA_EXCEPTION, ErrorCode.FAIL_LIST_FILES.getMessageCode(), "Exception: " + ex.getMessage() + ", Dir=" + entry.getKey() + ", Patterns=" + entry.getValue().toString()); } } logger.debug("Expanded file paths: "); for (String filePath : result) { logger.debug("file: {}", filePath); } return result; } static private boolean pushFileToLocal(String stageLocation, String filePath, String destFileName, InputStream inputStream, FileBackedOutputStream fileBackedOutStr) throws SQLException { // replace ~ with user home stageLocation = stageLocation.replace("~", systemGetProperty("user.home")); try { logger.debug("Copy file. srcFile={}, destination={}, destFileName={}", filePath, stageLocation, destFileName); File destFile = new File( SnowflakeUtil.concatFilePathNames( stageLocation, destFileName, localFSFileSep)); if (fileBackedOutStr != null) { inputStream = fileBackedOutStr.asByteSource().openStream(); } FileUtils.copyInputStreamToFile(inputStream, destFile); } catch (Exception ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), ex.getMessage()); } return true; } static private boolean pullFileFromLocal(String sourceLocation, String filePath, String destLocation, String destFileName) throws SQLException { try { logger.debug("Copy file. srcFile={}, destination={}, destFileName={}", sourceLocation + localFSFileSep + filePath, destLocation, destFileName); File srcFile = new File( SnowflakeUtil.concatFilePathNames( sourceLocation, filePath, localFSFileSep)); FileUtils.copyFileToDirectory(srcFile, new File(destLocation)); } catch (Exception ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), ex.getMessage()); } return true; } static private void pushFileToRemoteStore(StageInfo stage, String destFileName, InputStream inputStream, FileBackedOutputStream fileBackedOutStr, long uploadSize, String digest, FileCompressionType compressionType, SnowflakeStorageClient initialClient, SFSession connection, String command, int parallel, File srcFile, boolean uploadFromStream, RemoteStoreFileEncryptionMaterial encMat) throws SQLException, IOException { remoteLocation remoteLocation = extractLocationAndPath(stage.getLocation()); String origDestFileName = destFileName; if (remoteLocation.path != null && !remoteLocation.path.isEmpty()) { destFileName = remoteLocation.path + (!remoteLocation.path.endsWith("/") ? "/" : "") + destFileName; } logger.debug("upload object. location={}, key={}, srcFile={}, encryption={}", remoteLocation.location, destFileName, srcFile, (ArgSupplier) () -> ( encMat == null ? "NULL" : encMat.getSmkId() + "|" + encMat.getQueryId())); StorageObjectMetadata meta = storageFactory.createStorageMetadataObj(stage.getStageType()); meta.setContentLength(uploadSize); if (digest != null) { initialClient.addDigestMetadata(meta, digest); } if (compressionType != null && compressionType.isSupported()) { meta.setContentEncoding(compressionType.name().toLowerCase()); } try { String presignedUrl = ""; if (initialClient.requirePresignedUrl()) { // need to replace file://mypath/myfile?.csv with file://mypath/myfile1.csv.gz String localFilePath = getLocalFilePathFromCommand(command); String commandWithExactPath = command.replace(localFilePath, origDestFileName); // then hand that to GS to get the actual presigned URL we'll use SFStatement statement = new SFStatement(connection); JsonNode jsonNode = parseCommandInGS(statement, commandWithExactPath); if (!jsonNode.path("data").path("stageInfo").path("presignedUrl").isMissingNode()) { presignedUrl = jsonNode.path("data").path("stageInfo").path("presignedUrl").asText(); } } initialClient.upload(connection, command, parallel, uploadFromStream, remoteLocation.location, srcFile, destFileName, inputStream, fileBackedOutStr, meta, stage.getRegion(), presignedUrl); } finally { if (uploadFromStream && inputStream != null) { inputStream.close(); } } } /** * This static method is called when we are handling an expired token exception * It retrieves a fresh token from GS and then calls .renew() on the storage * client to refresh itself with the new token * * @param connection a connection object * @param command a command to be retried * @param client a Snowflake Storage client object * @throws SnowflakeSQLException if any error occurs */ static public void renewExpiredToken(SFSession connection, String command, SnowflakeStorageClient client) throws SnowflakeSQLException { SFStatement statement = new SFStatement(connection); JsonNode jsonNode = parseCommandInGS(statement, command); Map stageCredentials = extractStageCreds(jsonNode); // renew client with the fresh token logger.debug("Renewing expired access token"); client.renew(stageCredentials); } static private void pullFileFromRemoteStore(StageInfo stage, String filePath, String destFileName, String localLocation, SnowflakeStorageClient initialClient, SFSession connection, String command, int parallel, RemoteStoreFileEncryptionMaterial encMat, String presignedUrl) throws SQLException { remoteLocation remoteLocation = extractLocationAndPath(stage.getLocation()); String stageFilePath = filePath; if (!remoteLocation.path.isEmpty()) { stageFilePath = SnowflakeUtil.concatFilePathNames(remoteLocation.path, filePath, "/"); } logger.debug("Download object. location={}, key={}, srcFile={}, encryption={}", remoteLocation.location, stageFilePath, filePath, (ArgSupplier) () -> ( encMat == null ? "NULL" : encMat.getSmkId() + "|" + encMat.getQueryId())); initialClient.download(connection, command, localLocation, destFileName, parallel, remoteLocation.location, stageFilePath, stage.getRegion(), presignedUrl); } /** * From the set of files intended to be uploaded/downloaded, derive a common * prefix and use the listObjects API to get the object summary for each * object that has the common prefix. *

* For each returned object, we compare the size and digest with the local file * and if they are the same, we will not upload/download the file. * * @throws SnowflakeSQLException if any error occurs */ private void filterExistingFiles() throws SnowflakeSQLException { /* * Build a reverse map from destination file name to source file path * The map will be used for looking up the source file for destination * files that already exist in destination location and mark them to be * skipped for uploading/downloading */ Map destFileNameToSrcFileMap = new HashMap(fileMetadataMap.size()); logger.debug("Build reverse map from destination file name to source file"); for (Map.Entry entry : fileMetadataMap.entrySet()) { if (entry.getValue().destFileName != null) { String prevSrcFile = destFileNameToSrcFileMap.put(entry.getValue().destFileName, entry.getKey()); if (prevSrcFile != null) { FileMetadata prevFileMetadata = fileMetadataMap.get(prevSrcFile); prevFileMetadata.resultStatus = ResultStatus.COLLISION; prevFileMetadata.errorDetails = prevSrcFile + " has same name as " + entry.getKey(); } } else { logger.debug("No dest file name found for: {}", entry.getKey()); logger.debug("Status: {}", entry.getValue().resultStatus); } } // no files to be processed if (destFileNameToSrcFileMap.size() == 0) { return; } // determine greatest common prefix for all stage file names so that // we can call remote store API to list the objects and get their digest to compare // with local files String[] stageFileNames; if (commandType == CommandType.UPLOAD) { stageFileNames = destFileNameToSrcFileMap.keySet().toArray(new String[0]); } else { stageFileNames = destFileNameToSrcFileMap.values().toArray(new String[0]); } // find greatest common prefix for all stage file names Arrays.sort(stageFileNames); String greatestCommonPrefix = SnowflakeUtil.greatestCommonPrefix(stageFileNames[0], stageFileNames[stageFileNames.length - 1]); logger.debug("Greatest common prefix: {}", greatestCommonPrefix); // use the greatest common prefix to list objects under stage location if (stageInfo.getStageType() == StageInfo.StageType.S3 || stageInfo.getStageType() == StageInfo.StageType.AZURE || stageInfo.getStageType() == StageInfo.StageType.GCS) { logger.debug("check existing files on remote storage for the common prefix"); remoteLocation storeLocation = extractLocationAndPath(stageInfo.getLocation()); StorageObjectSummaryCollection objectSummaries = null; int retryCount = 0; do { try { objectSummaries = storageClient.listObjects(storeLocation.location, SnowflakeUtil.concatFilePathNames( storeLocation.path, greatestCommonPrefix, "/")); // exit retry loop break; } catch (Exception ex) { logger.debug("Listing objects for filtering encountered exception: {}", ex.getMessage()); storageClient.handleStorageException(ex, ++retryCount, "listObjects", connection, command); } } while (retryCount <= storageClient.getMaxRetries()); for (StorageObjectSummary obj : objectSummaries) { logger.debug( "Existing object: key={} size={} md5={}", obj.getKey(), obj.getSize(), obj.getMD5()); int idxOfLastFileSep = obj.getKey().lastIndexOf("/"); String objFileName = obj.getKey().substring(idxOfLastFileSep + 1); // get the path to the local file so that we can calculate digest String mappedSrcFile = destFileNameToSrcFileMap.get(objFileName); // skip objects that don't have a corresponding file to be uploaded if (mappedSrcFile == null) { continue; } logger.debug("Next compare digest for {} against {} on the remote store", mappedSrcFile, objFileName); String localFile = null; final boolean remoteEncrypted; try { localFile = (commandType == CommandType.UPLOAD) ? mappedSrcFile : (localLocation + objFileName); if (commandType == CommandType.DOWNLOAD && !(new File(localFile)).exists()) { logger.debug("File does not exist locally, will download {}", mappedSrcFile); continue; } // Check file size first, if their difference is bigger than the block // size, we don't need to compare digests if (!fileMetadataMap.get(mappedSrcFile).requireCompress && Math.abs(obj.getSize() - (new File(localFile)).length()) > 16) { logger.debug("Size diff between remote and local, will {} {}", commandType.name().toLowerCase(), mappedSrcFile); continue; } // Get object metadata from remote storage // StorageObjectMetadata meta; try { meta = storageClient.getObjectMetadata(obj.getLocation(), obj.getKey()); } catch (StorageProviderException spEx) { // SNOW-14521: when file is not found, ok to upload if (spEx.isServiceException404()) { // log it logger.debug("File returned from listing but found missing {} when getting its" + " metadata. Location={}, key={}", obj.getLocation(), obj.getKey()); // the file is not found, ok to upload continue; } // for any other exception, log an error logger.error("Fetching object metadata encountered exception: {}", spEx.getMessage()); throw spEx; } String objDigest = storageClient.getDigestMetadata(meta); remoteEncrypted = MatDesc.parse( meta.getUserMetadata().get(storageClient.getMatdescKey())) != null; // calculate the digest hash of the local file InputStream fileStream = null; String hashText = null; // Streams (potentially with temp files) to clean up final List fileBackedOutputStreams = new ArrayList<>(); try { fileStream = new FileInputStream(localFile); if (fileMetadataMap.get(mappedSrcFile).requireCompress) { logger.debug("Compressing stream for digest check"); InputStreamWithMetadata res = compressStreamWithGZIP(fileStream); fileStream = res.fileBackedOutputStream.asByteSource().openStream(); fileBackedOutputStreams.add(res.fileBackedOutputStream); } // If the remote file has our digest, compute the SHA-256 // for the local file // If the remote file does not have our digest but is unencrypted, // we compare the MD5 of the unencrypted local file to the ETag // of the S3 file. // Otherwise (remote file is encrypted, but has no sfc-digest), // no comparison is performed if (objDigest != null) { InputStreamWithMetadata res = computeDigest(fileStream, false); hashText = res.digest; fileBackedOutputStreams.add(res.fileBackedOutputStream); } else if (!remoteEncrypted) { hashText = DigestUtils.md5Hex(fileStream); } } finally { if (fileStream != null) { fileStream.close(); } for (FileBackedOutputStream stream : fileBackedOutputStreams) { if (stream != null) { try { stream.reset(); } catch (IOException ex) { logger.debug("failed to clean up temp file: {}", ex); } } } } // continue so that we will upload the file if (hashText == null || // remote is encrypted & has no digest (objDigest != null && !hashText.equals(objDigest)) || // digest mismatch (objDigest == null && !hashText.equals(obj.getMD5()))) // ETag/MD5 mismatch { logger.debug( "digest diff between remote store and local, will {} {}, " + "local digest: {}, remote store md5: {}", commandType.name().toLowerCase(), mappedSrcFile, hashText, obj.getMD5()); continue; } } catch (IOException | NoSuchAlgorithmException ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "Error reading: " + localFile); } logger.debug("digest same between remote store and local, will not upload {} {}", commandType.name().toLowerCase(), mappedSrcFile); skipFile(mappedSrcFile, objFileName); } } else if (stageInfo.getStageType() == StageInfo.StageType.LOCAL_FS) { for (String stageFileName : stageFileNames) { String stageFilePath = SnowflakeUtil.concatFilePathNames(stageInfo.getLocation(), stageFileName, localFSFileSep); File stageFile = new File(stageFilePath); // if stage file doesn't exist, no need to skip whether for // upload/download if (!stageFile.exists()) { continue; } String mappedSrcFile = (commandType == CommandType.UPLOAD) ? destFileNameToSrcFileMap.get(stageFileName) : stageFileName; String localFile = (commandType == CommandType.UPLOAD) ? mappedSrcFile : (localLocation + fileMetadataMap.get(mappedSrcFile).destFileName); // Check file size first, if they are different, we don't need // to check digest if (!fileMetadataMap.get(mappedSrcFile).requireCompress && stageFile.length() != (new File(localFile)).length()) { logger.debug("Size diff between stage and local, will {} {}", commandType.name().toLowerCase(), mappedSrcFile); continue; } // stage file eixst and either we will be compressing or // the dest file has same size as the source file size we will // compare digest values below String localFileHashText = null; String stageFileHashText = null; List fileBackedOutputStreams = new ArrayList<>(); InputStream localFileStream = null; try { // calculate the digest hash of the local file localFileStream = new FileInputStream(localFile); if (fileMetadataMap.get(mappedSrcFile).requireCompress) { logger.debug("Compressing stream for digest check"); InputStreamWithMetadata res = compressStreamWithGZIP(localFileStream); fileBackedOutputStreams.add(res.fileBackedOutputStream); localFileStream = res.fileBackedOutputStream.asByteSource().openStream(); } InputStreamWithMetadata res = computeDigest(localFileStream, false); localFileHashText = res.digest; fileBackedOutputStreams.add(res.fileBackedOutputStream); } catch (IOException | NoSuchAlgorithmException ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "Error reading local file: " + localFile); } finally { for (FileBackedOutputStream stream : fileBackedOutputStreams) { if (stream != null) { try { stream.reset(); } catch (IOException ex) { logger.debug("failed to clean up temp file: {}", ex); } } } IOUtils.closeQuietly(localFileStream); } FileBackedOutputStream fileBackedOutputStream = null; InputStream stageFileStream = null; try { // calculate digst for stage file stageFileStream = new FileInputStream(stageFilePath); InputStreamWithMetadata res = computeDigest(stageFileStream, false); stageFileHashText = res.digest; fileBackedOutputStream = res.fileBackedOutputStream; } catch (IOException | NoSuchAlgorithmException ex) { throw new SnowflakeSQLException(ex, SqlState.INTERNAL_ERROR, ErrorCode.INTERNAL_ERROR.getMessageCode(), "Error reading stage file: " + stageFilePath); } finally { try { if (fileBackedOutputStream != null) { fileBackedOutputStream.reset(); } } catch (IOException ex) { logger.debug("failed to clean up temp file: {}", ex); } IOUtils.closeQuietly(stageFileStream); } // continue if digest is different so that we will process the file if (!stageFileHashText.equals(localFileHashText)) { logger.debug("digest diff between local and stage, will {} {}", commandType.name().toLowerCase(), mappedSrcFile); continue; } else { logger.debug("digest matches between local and stage, will skip {}", mappedSrcFile); // skip the file given that the check sum is the same b/w source // and destination skipFile(mappedSrcFile, stageFileName); } } } } private void skipFile(String srcFilePath, String destFileName) { FileMetadata fileMetadata = fileMetadataMap.get(srcFilePath); if (fileMetadata != null) { if (fileMetadata.resultStatus == null || fileMetadata.resultStatus == ResultStatus.UNKNOWN) { logger.debug("Mark {} as skipped", srcFilePath); fileMetadata.resultStatus = ResultStatus.SKIPPED; fileMetadata.errorDetails = "File with same destination name and checksum already exists: " + destFileName; } else { logger.debug("No need to mark as skipped for: {} status was already marked as: {}", srcFilePath, fileMetadata.resultStatus); } } } private void initFileMetadata() throws SnowflakeSQLException { // file metadata is keyed on source file names (which are local file names // for upload command and stage file names for download command) fileMetadataMap = new HashMap(sourceFiles.size()); if (commandType == CommandType.UPLOAD) { if (sourceFromStream) { FileMetadata fileMetadata = new FileMetadata(); fileMetadataMap.put(SRC_FILE_NAME_FOR_STREAM, fileMetadata); fileMetadata.srcFileName = SRC_FILE_NAME_FOR_STREAM; } else { for (String sourceFile : sourceFiles) { FileMetadata fileMetadata = new FileMetadata(); fileMetadataMap.put(sourceFile, fileMetadata); File file = new File(sourceFile); fileMetadata.srcFileName = file.getName(); fileMetadata.srcFileSize = file.length(); if (!file.exists()) { logger.debug("File doesn't exist: {}", sourceFile); throw new SnowflakeSQLException(SqlState.DATA_EXCEPTION, ErrorCode.FILE_NOT_FOUND.getMessageCode(), sourceFile); } else if (file.isDirectory()) { logger.debug("Not a file, but directory: {}", sourceFile); throw new SnowflakeSQLException(SqlState.DATA_EXCEPTION, ErrorCode.FILE_IS_DIRECTORY.getMessageCode(), sourceFile); } } } } else if (commandType == CommandType.DOWNLOAD) { for (String sourceFile : sourceFiles) { FileMetadata fileMetadata = new FileMetadata(); fileMetadataMap.put(sourceFile, fileMetadata); fileMetadata.srcFileName = sourceFile; fileMetadata.destFileName = sourceFile.substring( sourceFile.lastIndexOf("/") + 1); // s3 uses / as separator } } } /** * Derive compression type from mime type * * @param mimeTypeStr The mime type passed to us * @return the compression type or null */ static FileCompressionType mimeTypeToCompressionType(String mimeTypeStr) { if (mimeTypeStr == null) { return null; } int slashIndex = mimeTypeStr.indexOf('/'); if (slashIndex < 0) { return null; // unable to find sub type } int semiColonIndex = mimeTypeStr.indexOf(';'); String subType; if (semiColonIndex < 0) { subType = mimeTypeStr.substring(slashIndex + 1).trim().toLowerCase(Locale.ENGLISH); } else { subType = mimeTypeStr.substring(slashIndex + 1, semiColonIndex); } if (Strings.isNullOrEmpty(subType)) { return null; } return FileCompressionType.lookupByMimeSubType(subType); } /** * Detect file compression type for all files to be uploaded * * @throws SnowflakeSQLException Will be thrown if the compression type is * unknown or unsupported */ private void processFileCompressionTypes() throws SnowflakeSQLException { // see what user has told us about the source file compression types boolean autoDetect = true; FileCompressionType userSpecifiedSourceCompression = null; if (SOURCE_COMPRESSION_AUTO_DETECT.equalsIgnoreCase(sourceCompression)) { autoDetect = true; } else if (SOURCE_COMPRESSION_NONE.equalsIgnoreCase(sourceCompression)) { autoDetect = false; } else { userSpecifiedSourceCompression = FileCompressionType.lookupByMimeSubType(sourceCompression.toLowerCase()); if (userSpecifiedSourceCompression == null) { throw new SnowflakeSQLException(SqlState.FEATURE_NOT_SUPPORTED, ErrorCode.COMPRESSION_TYPE_NOT_KNOWN.getMessageCode(), sourceCompression); } else if (!userSpecifiedSourceCompression.isSupported()) { throw new SnowflakeSQLException(SqlState.FEATURE_NOT_SUPPORTED, ErrorCode.COMPRESSION_TYPE_NOT_SUPPORTED.getMessageCode(), sourceCompression); } autoDetect = false; } if (!sourceFromStream) { for (String srcFile : sourceFiles) { FileMetadata fileMetadata = fileMetadataMap.get(srcFile); if (fileMetadata.resultStatus == ResultStatus.NONEXIST || fileMetadata.resultStatus == ResultStatus.DIRECTORY) { continue; } File file = new File(srcFile); String srcFileName = file.getName(); String mimeTypeStr = null; FileCompressionType currentFileCompressionType = null; try { if (autoDetect) { // probe the file for compression type using tika file type detector mimeTypeStr = Files.probeContentType(file.toPath()); if (mimeTypeStr == null) { try (FileInputStream f = new FileInputStream(file)) { byte[] magic = new byte[4]; if (f.read(magic, 0, 4) == 4) { if (Arrays.equals(magic, new byte[]{'P', 'A', 'R', '1'})) { mimeTypeStr = "snowflake/parquet"; } else if (Arrays.equals( Arrays.copyOfRange(magic, 0, 3), new byte[]{'O', 'R', 'C'})) { mimeTypeStr = "snowflake/orc"; } } } } if (mimeTypeStr != null) { logger.debug("Mime type for {} is: {}", srcFile, mimeTypeStr); currentFileCompressionType = mimeTypeToCompressionType(mimeTypeStr); } // fallback: use file extension if (currentFileCompressionType == null) { mimeTypeStr = getMimeTypeFromFileExtension(srcFile); if (mimeTypeStr != null) { logger.debug("Mime type for {} is: {}", srcFile, mimeTypeStr); currentFileCompressionType = mimeTypeToCompressionType(mimeTypeStr); } } } else { currentFileCompressionType = userSpecifiedSourceCompression; } // check if the compression type is supported by us if (currentFileCompressionType != null) { fileMetadata.srcCompressionType = currentFileCompressionType; if (currentFileCompressionType.isSupported()) { // remember the compression type if supported fileMetadata.destCompressionType = currentFileCompressionType; fileMetadata.requireCompress = false; fileMetadata.destFileName = srcFileName; logger.debug("File compression detected as {} for: {}", currentFileCompressionType.name(), srcFile); } else { // error if not supported throw new SnowflakeSQLException(SqlState.FEATURE_NOT_SUPPORTED, ErrorCode.COMPRESSION_TYPE_NOT_SUPPORTED.getMessageCode(), currentFileCompressionType.name()); } } else { // we want to auto compress the files unless the user has disabled it logger.debug("Compression not found for file: {}", srcFile); // Set compress flag fileMetadata.requireCompress = autoCompress; fileMetadata.srcCompressionType = null; if (autoCompress) { // We only support gzip auto compression fileMetadata.destFileName = srcFileName + FileCompressionType.GZIP.fileExtension; fileMetadata.destCompressionType = FileCompressionType.GZIP; } else { fileMetadata.destFileName = srcFileName; fileMetadata.destCompressionType = null; } } } catch (Exception ex) { // SNOW-13146: don't log severe message for user error if (ex instanceof SnowflakeSQLException) { logger.debug( "Exception encountered when processing file compression types", ex); } else { logger.debug( "Exception encountered when processing file compression types", ex); } fileMetadata.resultStatus = ResultStatus.ERROR; fileMetadata.errorDetails = ex.getMessage(); } } } else { // source from stream case FileMetadata fileMetadata = fileMetadataMap.get(SRC_FILE_NAME_FOR_STREAM); fileMetadata.srcCompressionType = userSpecifiedSourceCompression; if (compressSourceFromStream) { fileMetadata.destCompressionType = FileCompressionType.GZIP; fileMetadata.requireCompress = true; } else { fileMetadata.destCompressionType = userSpecifiedSourceCompression; fileMetadata.requireCompress = false; } // add gz extension if file name doesn't have it if (compressSourceFromStream && !destFileNameForStreamSource.endsWith( FileCompressionType.GZIP.fileExtension)) { fileMetadata.destFileName = destFileNameForStreamSource + FileCompressionType.GZIP.fileExtension; } else { fileMetadata.destFileName = destFileNameForStreamSource; } } } /** * Derive mime type from file extension * * @param srcFile The source file name * @return the mime type derived from the file extension */ private String getMimeTypeFromFileExtension(String srcFile) { String srcFileLowCase = srcFile.toLowerCase(); for (FileCompressionType compressionType : FileCompressionType.values()) { if (srcFileLowCase.endsWith(compressionType.fileExtension)) { return compressionType.mimeType + "/" + compressionType.mimeSubTypes.get(0); } } return null; } /** * A small helper for extracting location name and path from full location path * * @param stageLocationPath stage location * @return remoteLocation object */ static public remoteLocation extractLocationAndPath(String stageLocationPath) { String location = stageLocationPath; String path = ""; // split stage location as location name and path if (stageLocationPath.contains("/")) { location = stageLocationPath.substring(0, stageLocationPath.indexOf("/")); path = stageLocationPath.substring(stageLocationPath.indexOf("/") + 1); } return new remoteLocation(location, path); } /** * Describe the metadata of a fixed view. * * @return list of column meta data * @throws Exception failed to construct list */ @Override public List describeColumns() throws Exception { return SnowflakeUtil.describeFixedViewColumns( commandType == CommandType.UPLOAD ? (showEncryptionParameter ? UploadCommandEncryptionFacade.class : UploadCommandFacade.class) : (showEncryptionParameter ? DownloadCommandEncryptionFacade.class : DownloadCommandFacade.class)); } @Override public List getNextRow() throws Exception { if (currentRowIndex < statusRows.size()) { return ClassUtil.getFixedViewObjectAsRow( commandType == CommandType.UPLOAD ? (showEncryptionParameter ? UploadCommandEncryptionFacade.class : UploadCommandFacade.class) : (showEncryptionParameter ? DownloadCommandEncryptionFacade.class : DownloadCommandFacade.class), statusRows.get(currentRowIndex++)); } else { return null; } } /** * Generate status rows for each file */ private void populateStatusRows() { for (Map.Entry entry : fileMetadataMap.entrySet()) { FileMetadata fileMetadata = entry.getValue(); if (commandType == CommandType.UPLOAD) { statusRows.add(showEncryptionParameter ? new UploadCommandEncryptionFacade( fileMetadata.srcFileName, fileMetadata.destFileName, fileMetadata.resultStatus.name(), fileMetadata.errorDetails, fileMetadata.srcFileSize, fileMetadata.destFileSize, (fileMetadata.srcCompressionType == null) ? "NONE" : fileMetadata.srcCompressionType.name(), (fileMetadata.destCompressionType == null) ? "NONE" : fileMetadata.destCompressionType.name(), fileMetadata.isEncrypted) : new UploadCommandFacade( fileMetadata.srcFileName, fileMetadata.destFileName, fileMetadata.resultStatus.name(), fileMetadata.errorDetails, fileMetadata.srcFileSize, fileMetadata.destFileSize, (fileMetadata.srcCompressionType == null) ? "NONE" : fileMetadata.srcCompressionType.name(), (fileMetadata.destCompressionType == null) ? "NONE" : fileMetadata.destCompressionType.name())); } else if (commandType == CommandType.DOWNLOAD) { statusRows.add(showEncryptionParameter ? new DownloadCommandEncryptionFacade( fileMetadata.srcFileName.startsWith("/") ? fileMetadata.srcFileName.substring(1) : fileMetadata.srcFileName, fileMetadata.resultStatus.name(), fileMetadata.errorDetails, fileMetadata.destFileSize, fileMetadata.isEncrypted) : new DownloadCommandFacade( fileMetadata.srcFileName.startsWith("/") ? fileMetadata.srcFileName.substring(1) : fileMetadata.srcFileName, fileMetadata.resultStatus.name(), fileMetadata.errorDetails, fileMetadata.destFileSize)); } } /* we sort the result if the connection is in sorting mode */ Object sortProperty = null; sortProperty = connection.getSFSessionProperty("sort"); boolean sortResult = sortProperty != null && (Boolean) sortProperty; if (sortResult) { Comparator comparator = (commandType == CommandType.UPLOAD) ? new Comparator() { public int compare(Object a, Object b) { String srcFileNameA = ((UploadCommandFacade) a).srcFile; String srcFileNameB = ((UploadCommandFacade) b).srcFile; return srcFileNameA.compareTo(srcFileNameB); } } : new Comparator() { public int compare(Object a, Object b) { String srcFileNameA = ((DownloadCommandFacade) a).file; String srcFileNameB = ((DownloadCommandFacade) b).file; return srcFileNameA.compareTo(srcFileNameB); } }; // sort the rows by source file names Collections.sort(statusRows, comparator); } } public Object getResultSet() throws SnowflakeSQLException { return new SFFixedViewResultSet(this, this.commandType); } public CommandType getCommandType() { return commandType; } public void setSourceStream(InputStream sourceStream) { this.sourceStream = sourceStream; this.sourceFromStream = true; } public void setDestFileNameForStreamSource( String destFileNameForStreamSource) { this.destFileNameForStreamSource = destFileNameForStreamSource; } public void setCompressSourceFromStream(boolean compressSourceFromStream) { this.compressSourceFromStream = compressSourceFromStream; } /* * Handles an InvalidKeyException which indicates that the JCE component * is not installed properly * @param operation a string indicating the the operation type, e.g. upload/download * @param ex The exception to be handled * @throws throws the error as a SnowflakeSQLException */ public static void throwJCEMissingError(String operation, Exception ex) throws SnowflakeSQLException { // Most likely cause: Unlimited strength policy files not installed String msg = "Strong encryption with Java JRE requires JCE " + "Unlimited Strength Jurisdiction Policy files. " + "Follow JDBC client installation instructions " + "provided by Snowflake or contact Snowflake Support."; logger.error("JCE Unlimited Strength policy files missing: {}. {}.", ex.getMessage(), ex.getCause().getMessage()); String bootLib = systemGetProperty("sun.boot.library.path"); if (bootLib != null) { msg += " The target directory on your system is: " + Paths.get(bootLib, "security").toString(); logger.error(msg); } throw new SnowflakeSQLException(ex, SqlState.SYSTEM_ERROR, ErrorCode.AWS_CLIENT_ERROR.getMessageCode(), operation, msg); } @Override public int getTotalRows() { return statusRows.size(); } }