/* * Copyright 2011 Chad Retz * * 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.gwtnode.core.node.tls; import org.gwtnode.core.JavaScriptFunction; import org.gwtnode.core.JavaScriptFunctionArguments; import org.gwtnode.core.JavaScriptFunctionWrapper; import org.gwtnode.core.meta.GwtNodeEvent; import org.gwtnode.core.meta.GwtNodeFunction; import org.gwtnode.core.meta.GwtNodeModule; import org.gwtnode.core.node.Global; import org.gwtnode.core.node.NodeJsModule; import org.gwtnode.core.node.event.EventEmitter; import org.gwtnode.core.node.event.ParameterlessEventHandler; import org.gwtnode.core.node.stream.Stream; /** * The node.js * <a href="http://nodejs.org/docs/v0.5.6/api/tls.html">TLS</a> module * * @author Chad Retz */ @GwtNodeModule public class Tls extends EventEmitter implements NodeJsModule { private static Tls instance; public static Tls get() { if (instance == null) { instance = Global.get().require("tls"); } return instance; } protected Tls() { } @GwtNodeEvent public final void onSecureConnection(SecureConnectionEventHandler handler) { on("secureConnection", handler); } @GwtNodeFunction public final CleartextStream connect(int port, ConnectOptions options, ParameterlessEventHandler callback) { return this.connect(port, options, callback.getNativeFunction()); } @GwtNodeFunction public final native CleartextStream connect(int port, ConnectOptions options, JavaScriptFunction callback) /*-{ return this.connect(port, options, callback); }-*/; @GwtNodeFunction public final CleartextStream connect(int port, String host, ConnectOptions options, ParameterlessEventHandler callback) { return this.connect(port, host, options, callback.getNativeFunction()); } @GwtNodeFunction public final native CleartextStream connect(int port, String host, ConnectOptions options, JavaScriptFunction callback) /*-{ return this.connect(port, host, options, callback); }-*/; //TODO: securePair @GwtNodeFunction public final native Server createServer(ServerOptions options) /*-{ return this.createServer(options); }-*/; @GwtNodeFunction public final Server createServer(ServerOptions options, SecureConnectionEventHandler callback) { return createServer(options, callback.getNativeFunction()); } @GwtNodeFunction public final Server createServer(ServerOptions options, JavaScriptFunctionWrapper callback) { return createServer(options, callback.getNativeFunction()); } @GwtNodeFunction public final native Server createServer(ServerOptions options, JavaScriptFunction callback) /*-{ return this.createServer(options, callback); }-*/; public static abstract class SecureConnectionEventHandler extends JavaScriptFunctionWrapper { @Override public final void call(JavaScriptFunctionArguments args) { onEvent((Stream) args.get(0)); } protected abstract void onEvent(Stream stream); } }