You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/03/17 16:09:16 UTC

[incubator-hop] branch master updated (c14aae9 -> 791abe8)

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

hansva pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git.


    from c14aae9  Merge pull request #680 from hansva/master
     new 84dd9db  HOP-2629 : NPE when previewing a transform in a new unsaved pipeline
     new 920c7b1  HOP-2628 : Implement a Google Storage VFS driver
     new 31bf957  HOP-2628 : Implement a Google Storage VFS driver (docs)
     new 791abe8  Merge pull request #681 from mattcasters/master

The 1782 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 NOTICE                                             |   2 +
 assemblies/plugins/tech/google/pom.xml             |   9 +
 .../plugins/tech/google/src/assembly/assembly.xml  |  40 ++-
 .../reflection/probe/xp/PipelineDataProbeXp.java   |   8 +
 plugins/tech/google/pom.xml                        |  13 +
 plugins/tech/google/src/main/doc/google-info.adoc  |  22 ++
 .../vfs/googledrive/config/GoogleDriveConfig.java  |   1 -
 .../apache/hop/vfs/gs/GoogleStorageFileName.java}  |  33 ++-
 .../apache/hop/vfs/gs/GoogleStorageFileObject.java | 291 +++++++++++++++++++++
 .../GoogleStorageFileProvider.java}                |  69 +++--
 .../apache/hop/vfs/gs/GoogleStorageFileSystem.java | 106 ++++++++
 .../gs/GoogleStorageFileSystemConfigBuilder.java   |  49 ++++
 .../GoogleStorageVfsPlugin.java}                   |  10 +-
 .../apache/hop/vfs/gs/ReadChannelInputStream.java  |  76 ++++++
 .../hop/vfs/gs/WriteChannelOutputStream.java       |  71 +++++
 .../hop/vfs/gs/config/GoogleCloudConfig.java}      |  38 +--
 .../hop/vfs/gs/config/GoogleCloudConfigPlugin.java | 149 +++++++++++
 .../config/GoogleCloudConfigSingleton.java}        |  32 +--
 18 files changed, 921 insertions(+), 98 deletions(-)
 copy plugins/{vfs/s3/src/main/java/org/apache/hop/vfs/s3/s3n/vfs/S3NFileSystem.java => tech/google/src/main/java/org/apache/hop/vfs/gs/GoogleStorageFileName.java} (60%)
 create mode 100644 plugins/tech/google/src/main/java/org/apache/hop/vfs/gs/GoogleStorageFileObject.java
 copy plugins/tech/google/src/main/java/org/apache/hop/vfs/{googledrive/GoogleDriveFileProvider.java => gs/GoogleStorageFileProvider.java} (50%)
 create mode 100644 plugins/tech/google/src/main/java/org/apache/hop/vfs/gs/GoogleStorageFileSystem.java
 create mode 100644 plugins/tech/google/src/main/java/org/apache/hop/vfs/gs/GoogleStorageFileSystemConfigBuilder.java
 copy plugins/tech/google/src/main/java/org/apache/hop/vfs/{googledrive/GoogleDriveVfsPlugin.java => gs/GoogleStorageVfsPlugin.java} (81%)
 create mode 100644 plugins/tech/google/src/main/java/org/apache/hop/vfs/gs/ReadChannelInputStream.java
 create mode 100644 plugins/tech/google/src/main/java/org/apache/hop/vfs/gs/WriteChannelOutputStream.java
 copy plugins/{vfs/s3/src/test/java/org/apache/hop/vfs/s3/vfs/S3FileNameParserIT.java => tech/google/src/main/java/org/apache/hop/vfs/gs/config/GoogleCloudConfig.java} (56%)
 create mode 100644 plugins/tech/google/src/main/java/org/apache/hop/vfs/gs/config/GoogleCloudConfigPlugin.java
 copy plugins/tech/google/src/main/java/org/apache/hop/vfs/{googledrive/config/GoogleDriveConfigSingleton.java => gs/config/GoogleCloudConfigSingleton.java} (61%)