/* Copyright (c) 2014 Boundless and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Distribution License v1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/org/documents/edl-v10.html * * Contributors: * Gabriel Roldan (Boundless) - initial implementation */ package org.locationtech.geogig.api.hooks; import java.io.File; import javax.annotation.Nullable; import org.locationtech.geogig.api.AbstractGeoGigOp; class ShellScriptHook implements CommandHook { private File preScript; private File postScript; public ShellScriptHook(@Nullable final File preScript, @Nullable final File postScript) { this.preScript = preScript; this.postScript = postScript; } @Override public <C extends AbstractGeoGigOp<?>> C pre(C command) throws CannotRunGeogigOperationException { if (preScript == null) { return command; } Scripting.runShellScript(preScript); return command; } @SuppressWarnings("unchecked") @Override public <T> T post(AbstractGeoGigOp<T> command, @Nullable Object retVal, @Nullable RuntimeException exception) throws Exception { if (postScript == null) { return (T) retVal; } boolean success = exception == null; if (success) { Scripting.runShellScript(preScript); } return (T) retVal; } @Override public boolean appliesTo(Class<? extends AbstractGeoGigOp<?>> clazz) { return true; } }