All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.brutusin.jsonsrv.JsonAction Maven / Gradle / Ivy

/*
 * Copyright 2015 brutusin.org
 *
 * Licensed 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.brutusin.jsonsrv;

import com.github.fge.jsonschema.main.JsonSchema;
import net.jodah.typetools.TypeResolver;
import org.brutusin.commons.json.JsonHelper;

/**
 *
 * @author Ignacio del Valle Alles [email protected]
 */
public abstract class JsonAction {

    private final Class inputClass;
    private final Class outputClass;
    private String inputSchema;
    private String outputSchema;
    private JsonSchema validationInputSchema;

    public JsonAction() {
        Class[] types = TypeResolver.resolveRawArguments(JsonAction.class, getClass());
        this.inputClass = (Class) types[0];
        this.outputClass = (Class) types[1];
    }

    public final void init(JsonHelper jsonHelper, String initParam) throws Exception {
        this.inputSchema = jsonHelper.getSchemaHelper().getSchemaString(getInputClass());
        this.outputSchema = jsonHelper.getSchemaHelper().getSchemaString(JsonResponse.class).replace("\"value\":{\"type\":\"any\"}", "\"value\":" + jsonHelper.getSchemaHelper().getSchemaString(getOutputClass()));
        try {
            this.validationInputSchema = jsonHelper.getSchemaHelper().getSchema(jsonHelper.getSchemaHelper().getSchemaString(this.inputClass));
        } catch (Exception ex) {
            throw new Error(ex);
        }
        doInit(initParam);
    }

    public final JsonSchema getValidationInputSchema() {
        return validationInputSchema;
    }

    public final String getInputSchema() {
        return inputSchema;
    }

    public final String getOutputSchema() {
        return outputSchema;
    }

    public final Class getInputClass() {
        return inputClass;
    }

    public final Class getOutputClass() {
        return outputClass;
    }

    public boolean isCacheable() {
        return false;
    }

    protected void doInit(String initParam) throws Exception {
        // to be overridden
    }

    protected abstract O execute(I input) throws Exception;
}