blob: d80194f17ba0786a9862b8c5cd33bb153263250f [file] [log] [blame]
/*
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.plc4x.java.base.connection;
import io.netty.channel.Channel;
import io.netty.channel.ChannelHandler;
import org.apache.plc4x.java.api.exceptions.PlcConnectionException;
import org.apache.plc4x.java.api.exceptions.PlcException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.Socket;
public class RawSocketChannelFactory implements ChannelFactory {
private static final int PING_TIMEOUT_MS = 1_000;
private final InetAddress address;
private final int port;
private final int protocolId;
public RawSocketChannelFactory(InetAddress address, int port, int protocolId) {
this.address = address;
this.port = port;
this.protocolId = protocolId;
}
@Override
public Channel createChannel(ChannelHandler channelHandler)
throws PlcConnectionException {
/*try {
Bootstrap bootstrap = new Bootstrap();
bootstrap.group(new NioEventLoopGroup());
bootstrap.channel(RawSocketChannel.class);
bootstrap.option(ChannelOption.SO_KEEPALIVE, true);
bootstrap.option(ChannelOption.TCP_NODELAY, true);
bootstrap.handler(channelHandler);
// Start the client.
ChannelFuture f = bootstrap.connect(address).sync();
f.awaitUninterruptibly();
// Wait till the session is finished initializing.
return f.channel();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new PlcConnectionException("Error creating channel.", e);
}*/
return null;
}
@Override
public void ping() throws PlcException {
// TODO: Replace this check with a more accurate one ...
InetSocketAddress address = new InetSocketAddress(getAddress(), getPort());
try (Socket s = new Socket()) {
s.connect(address, PING_TIMEOUT_MS);
// TODO keep the address for a (timely) next request???
s.setReuseAddress(true);
} catch (Exception e) {
throw new PlcConnectionException("Unable to ping remote host");
}
}
public InetAddress getAddress() {
return address;
}
public int getPort() {
return port;
}
}