blob: 4d41b17bc873382d125c12c48dff96836d729abc [file] [log] [blame]
#!/bin/bash
# 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.
#
# input_transform.sh
# sample input transformation, demonstrating use of Java and Joost STX
# to convert XML into escaped text suitable for loading into GPDB.
#
# java arguments:
# -jar data/joost.jar joost STX engine
# -nodecl don't generate an <?xml?> declaration
# $1 (or -) filename to process (or stdin)
# dblp/input_transform.stx STX transformation
#
# note we use an extra AWK step at the end because joost likes to
# emit a blank line at the end.
java \
-jar data/joost.jar \
-nodecl \
$1 \
dblp/input_transform.stx | \
awk 'NF>0'