/* * 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 org.apache.tinkerpop.gremlin.hadoop.structure.io.script; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.io.NullWritable; import org.apache.hadoop.mapreduce.RecordWriter; import org.apache.hadoop.mapreduce.TaskAttemptContext; import org.apache.tinkerpop.gremlin.hadoop.structure.io.VertexWritable; import org.apache.tinkerpop.gremlin.jsr223.CachedGremlinScriptEngineManager; import org.apache.tinkerpop.gremlin.jsr223.GremlinScriptEngineManager; import javax.script.Bindings; import javax.script.ScriptEngine; import javax.script.ScriptException; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; /** * @author Daniel Kuppitz (http://gremlin.guru) */ public final class ScriptRecordWriter extends RecordWriter<NullWritable, VertexWritable> { protected final static String SCRIPT_FILE = "gremlin.hadoop.scriptOutputFormat.script"; protected final static String SCRIPT_ENGINE = "gremlin.hadoop.scriptOutputFormat.scriptEngine"; private final static String VERTEX = "vertex"; private final static String WRITE_CALL = "stringify(" + VERTEX + ")"; private final static String UTF8 = "UTF-8"; private final static byte[] NEWLINE; private final DataOutputStream out; private final static GremlinScriptEngineManager manager = new CachedGremlinScriptEngineManager(); private final ScriptEngine engine; static { try { NEWLINE = "\n".getBytes(UTF8); } catch (UnsupportedEncodingException uee) { throw new IllegalArgumentException("Can not find " + UTF8 + " encoding"); } } public ScriptRecordWriter(final DataOutputStream out, final TaskAttemptContext context) throws IOException { this.out = out; final Configuration configuration = context.getConfiguration(); this.engine = manager.getEngineByName(configuration.get(SCRIPT_ENGINE, "gremlin-groovy")); final FileSystem fs = FileSystem.get(configuration); try { this.engine.eval(new InputStreamReader(fs.open(new Path(configuration.get(SCRIPT_FILE))))); } catch (final ScriptException e) { throw new IOException(e.getMessage(),e); } } @Override public void write(final NullWritable key, final VertexWritable vertex) throws IOException { if (null != vertex) { try { final Bindings bindings = this.engine.createBindings(); bindings.put(VERTEX, vertex.get()); final String line = (String) engine.eval(WRITE_CALL, bindings); if (line != null) { this.out.write(line.getBytes(UTF8)); this.out.write(NEWLINE); } } catch (final ScriptException e) { throw new IOException(e.getMessage(), e); } } } @Override public synchronized void close(final TaskAttemptContext context) throws IOException { this.out.close(); } }