Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id AD524200CF6 for ; Mon, 4 Sep 2017 01:49:20 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9FD22163BAD; Sun, 3 Sep 2017 23:49:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 19257163BAC for ; Mon, 4 Sep 2017 01:49:19 +0200 (CEST) Received: (qmail 63832 invoked by uid 500); 3 Sep 2017 23:49:19 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 63812 invoked by uid 99); 3 Sep 2017 23:49:19 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Sep 2017 23:49:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2AB10DFA00; Sun, 3 Sep 2017 23:49:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jkff@apache.org To: commits@beam.apache.org Date: Sun, 03 Sep 2017 23:49:21 -0000 Message-Id: <60c73bba6c384b60b8d2c91dadf9a85a@git.apache.org> In-Reply-To: <34d62bbad19d4275b81c8cc3913305c8@git.apache.org> References: <34d62bbad19d4275b81c8cc3913305c8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [5/5] beam git commit: This finishes #3799: [BEAM-2828, BEAM-2750] Introduces FileIO.read() and uses it in Text, Avro and Xml archived-at: Sun, 03 Sep 2017 23:49:20 -0000 This finishes #3799: [BEAM-2828, BEAM-2750] Introduces FileIO.read() and uses it in Text, Avro and Xml Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/c3bcd4b4 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/c3bcd4b4 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/c3bcd4b4 Branch: refs/heads/master Commit: c3bcd4b425ecaecdc5a0d5ffa272cf8727da29f7 Parents: 80b9cf9 abda38d Author: Eugene Kirpichov Authored: Sun Sep 3 16:34:16 2017 -0700 Committer: Eugene Kirpichov Committed: Sun Sep 3 16:34:16 2017 -0700 ---------------------------------------------------------------------- .../apache/beam/sdk/coders/CoderRegistry.java | 6 + .../java/org/apache/beam/sdk/io/AvroIO.java | 14 +- .../java/org/apache/beam/sdk/io/FileIO.java | 187 ++++++++++- .../beam/sdk/io/ReadAllViaFileBasedSource.java | 73 +++-- .../apache/beam/sdk/io/ReadableFileCoder.java | 50 +++ .../java/org/apache/beam/sdk/io/TextIO.java | 95 +++--- .../java/org/apache/beam/sdk/io/FileIOTest.java | 313 +++++++++++++++++++ .../org/apache/beam/sdk/io/TextIOReadTest.java | 25 +- .../java/org/apache/beam/sdk/io/xml/XmlIO.java | 280 +++++++++++------ .../org/apache/beam/sdk/io/xml/XmlSource.java | 63 ++-- .../apache/beam/sdk/io/xml/XmlSourceTest.java | 74 +---- 11 files changed, 911 insertions(+), 269 deletions(-) ----------------------------------------------------------------------