Package javarepl.client

Source Code of javarepl.client.JavaREPLClient

package javarepl.client;

import com.googlecode.funclate.Model;
import com.googlecode.totallylazy.Mapper;
import com.googlecode.totallylazy.Option;
import com.googlecode.totallylazy.Sequence;
import com.googlecode.utterlyidle.Response;
import com.googlecode.utterlyidle.handlers.ClientHttpHandler;
import javarepl.completion.CompletionResult;
import javarepl.console.ConsoleStatus;
import javarepl.rendering.ExpressionTemplate;

import static com.googlecode.funclate.Model.persistent.parse;
import static com.googlecode.totallylazy.Option.none;
import static com.googlecode.totallylazy.Option.some;
import static com.googlecode.totallylazy.Sequences.sequence;
import static com.googlecode.utterlyidle.RequestBuilder.get;
import static com.googlecode.utterlyidle.RequestBuilder.post;
import static javarepl.client.EvaluationLog.Type;
import static javarepl.completion.CompletionResult.methods.fromJson;
import static javarepl.console.ConsoleStatus.Idle;

public final class JavaREPLClient {
    private final String hostname;
    private final Integer port;
    private final ClientHttpHandler client;

    public JavaREPLClient(String hostname, Integer port) {
        this.hostname = hostname;
        this.port = port;
        this.client = new ClientHttpHandler();
    }

    public synchronized ExpressionTemplate template(String expression) throws Exception {
        Model model = parse(client.handle(get(url("template")).query("expression", expression).build()).entity().toString());
        return new ExpressionTemplate(model.get("template", String.class), model.get("token", String.class));
    }


    public synchronized Option<EvaluationResult> execute(String expr) throws Exception {
        String json = client.handle(post(url("execute")).form("expression", expr).build()).entity().toString();

        if (json.isEmpty())
            return none();

        Model model = parse(json);
        Sequence<Model> logs = sequence(model.getValues("logs", Model.class));
        String expression = model.get("expression", String.class);

        return some(new EvaluationResult(expression, logs.map(modelToEvaluationLog())));
    }

    public synchronized CompletionResult completions(String expr) throws Exception {
        return fromJson(client.handle(get(url("completions")).query("expression", expr).build()).entity().toString());
    }

    public synchronized ConsoleStatus status() {
        try {
            return ConsoleStatus.valueOf(parse(client.handle(get(url("status")).build()).entity().toString()).get("status", String.class));
        } catch (Exception e) {
            return Idle;
        }
    }

    public synchronized String version() {
        try {
            return parse(client.handle(get(url("version")).build()).entity().toString()).get("version", String.class);
        } catch (Exception e) {
            return "[unknown]";
        }
    }

    public synchronized Sequence<String> history() throws Exception {
        Response history = client.handle(get(url("history")).build());
        Model model = parse(history.entity().toString());
        return sequence(model.getValues("history", String.class));
    }

    private Mapper<Model, EvaluationLog> modelToEvaluationLog() {
        return new Mapper<Model, EvaluationLog>() {
            public EvaluationLog call(Model model) throws Exception {
                return new EvaluationLog(Type.valueOf(model.get("type", String.class)), model.get("message", String.class));
            }
        };
    }

    private String url(String path) {
        return "http://" + hostname + ":" + port + "/" + path;
    }
}
TOP

Related Classes of javarepl.client.JavaREPLClient

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.