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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
// 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 main
import (
"flag"
"fmt"
"log"
"os"
"github.com/apache/arrow-go/v18/arrow/array"
"github.com/apache/arrow-go/v18/arrow/arrio"
"github.com/apache/arrow-go/v18/arrow/internal/arrjson"
"github.com/apache/arrow-go/v18/arrow/ipc"
)
func main() {
log.SetPrefix("arrow-json: ")
log.SetFlags(0)
var (
arrowPath = flag.String("arrow", "", "path to ARROW file")
jsonPath = flag.String("json", "", "path to JSON file")
mode = flag.String("mode", "VALIDATE", "mode of integration testing tool (ARROW_TO_JSON, JSON_TO_ARROW, VALIDATE)")
verbose = flag.Bool("verbose", true, "enable/disable verbose mode")
)
flag.Parse()
err := runCommand(*jsonPath, *arrowPath, *mode, *verbose)
if err != nil {
log.Fatal(err)
}
}
func runCommand(jsonName, arrowName, mode string, verbose bool) error {
if jsonName == "" {
return fmt.Errorf("must specify json file name")
}
if arrowName == "" {
return fmt.Errorf("must specify arrow file name")
}
switch mode {
case "ARROW_TO_JSON":
return cnvToJSON(arrowName, jsonName, verbose)
case "JSON_TO_ARROW":
return cnvToARROW(arrowName, jsonName, verbose)
case "VALIDATE":
return validate(arrowName, jsonName, verbose)
default:
return fmt.Errorf("unknown command %q", mode)
}
}
func cnvToJSON(arrowName, jsonName string, verbose bool) error {
r, err := os.Open(arrowName)
if err != nil {
return fmt.Errorf("could not open ARROW file %q: %w", arrowName, err)
}
defer r.Close()
w, err := os.Create(jsonName)
if err != nil {
return fmt.Errorf("could not create JSON file %q: %w", jsonName, err)
}
defer w.Close()
rr, err := ipc.NewFileReader(r)
if err != nil {
return fmt.Errorf("could not open ARROW file reader from file %q: %w", arrowName, err)
}
defer rr.Close()
if verbose {
log.Printf("found schema:\n%v\n", rr.Schema())
}
ww, err := arrjson.NewWriter(w, rr.Schema())
if err != nil {
return fmt.Errorf("could not create JSON encoder: %w", err)
}
defer ww.Close()
n, err := arrio.Copy(ww, rr)
if err != nil {
return fmt.Errorf("could not convert ARROW file reader data to JSON data: %w", err)
}
if got, want := n, int64(rr.NumRecords()); got != want {
return fmt.Errorf("invalid number of records copied (got=%d, want=%d", got, want)
}
err = ww.Close()
if err != nil {
return fmt.Errorf("could not close JSON encoder %q: %w", jsonName, err)
}
err = w.Close()
if err != nil {
return fmt.Errorf("could not close JSON file %q: %w", jsonName, err)
}
return nil
}
func cnvToARROW(arrowName, jsonName string, verbose bool) error {
r, err := os.Open(jsonName)
if err != nil {
return fmt.Errorf("could not open JSON file %q: %w", jsonName, err)
}
defer r.Close()
w, err := os.Create(arrowName)
if err != nil {
return fmt.Errorf("could not create ARROW file %q: %w", arrowName, err)
}
defer w.Close()
rr, err := arrjson.NewReader(r)
if err != nil {
return fmt.Errorf("could not open JSON file reader from file %q: %w", jsonName, err)
}
if verbose {
log.Printf("found schema:\n%v\n", rr.Schema())
}
ww, err := ipc.NewFileWriter(w, ipc.WithSchema(rr.Schema()))
if err != nil {
return fmt.Errorf("could not create ARROW file writer: %w", err)
}
defer ww.Close()
n, err := arrio.Copy(ww, rr)
if err != nil {
return fmt.Errorf("could not convert JSON data to ARROW data: %w", err)
}
if got, want := n, int64(rr.NumRecords()); got != want {
return fmt.Errorf("invalid number of records copied (got=%d, want=%d", got, want)
}
err = ww.Close()
if err != nil {
return fmt.Errorf("could not close ARROW file writer %q: %w", arrowName, err)
}
err = w.Close()
if err != nil {
return fmt.Errorf("could not close ARROW file %q: %w", arrowName, err)
}
return nil
}
func validate(arrowName, jsonName string, verbose bool) error {
jr, err := os.Open(jsonName)
if err != nil {
return fmt.Errorf("could not open JSON file %q: %w", jsonName, err)
}
defer jr.Close()
jrr, err := arrjson.NewReader(jr)
if err != nil {
return fmt.Errorf("could not open JSON file reader from file %q: %w", jsonName, err)
}
ar, err := os.Open(arrowName)
if err != nil {
return fmt.Errorf("could not open ARROW file %q: %w", arrowName, err)
}
defer ar.Close()
arr, err := ipc.NewFileReader(ar)
if err != nil {
return fmt.Errorf("could not open ARROW file reader from file %q: %w", arrowName, err)
}
defer arr.Close()
if !arr.Schema().Equal(jrr.Schema()) {
if verbose {
log.Printf("JSON schema:\n%v\nArrow schema:\n%v", jrr.Schema(), arr.Schema())
}
return fmt.Errorf("schemas did not match")
}
for i := 0; i < arr.NumRecords(); i++ {
arec, err := arr.Read()
if err != nil {
return fmt.Errorf("could not read record %d from ARROW file: %w", i, err)
}
jrec, err := jrr.Read()
if err != nil {
return fmt.Errorf("could not read record %d from JSON file: %w", i, err)
}
if !array.RecordApproxEqual(jrec, arec) {
return fmt.Errorf("record batch %d did not match\nJSON:\n%v\nARROW:\n%v",
i, jrec, arec,
)
}
}
if jn, an := jrr.NumRecords(), arr.NumRecords(); jn != an {
return fmt.Errorf("different number of record batches: %d (JSON) vs %d (Arrow)", jn, an)
}
return nil
}
|