Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

103
LINES

< > BotCompany Repo | #1016571 // OS Instances Connector [Async Socket, Web Bot, dev.]

JavaX module [tags: use-pretranspiled]

Download Jar. Transpiled version (2771L) is out of date.

!7

import java.nio.*;
import java.nio.channels.*;

static long timeout = 30000+10000; // idle time + latency
static ConnectedInstances cI;
static ReliableSingleThread rst = new(r update);
static int theNumber;
static int port = 6000;
static Set<AsynchronousSocketChannel> channels = synchroSet();

sclass State {
  S computerID;
  int countSeen = -1;
}

p {
  cI = new ConnectedInstances;
  cI.connected2.onChange(rst);
  
  InetSocketAddress sockAddr = new InetSocketAddress(port);
  AsynchronousServerSocketChannel serverSock =  AsynchronousServerSocketChannel.open().bind(sockAddr);
        
  //start to accept the connection from client
  serverSock.accept(serverSock, new CompletionHandler<AsynchronousSocketChannel,AsynchronousServerSocketChannel>() {
    public void completed(AsynchronousSocketChannel sockChannel, AsynchronousServerSocketChannel serverSock) {
      //a connection is accepted, start to accept next connection
      serverSock.accept(serverSock, this);
      
      channels.add(channel);
      
      //start to read message from the client
      startRead( sockChannel );
    }

    public void failed(Throwable exc, AsynchronousServerSocketChannel serverSock) {
      print("fail to accept a connection");
    }
  });
}
        
static void startRead( AsynchronousSocketChannel sockChannel) {
  final ByteBuffer buf = ByteBuffer.allocate(2048);
        
  //read message from client
  sockChannel.read(buf, sockChannel, new CompletionHandler<Int, AsynchronousSocketChannel>() {
    @Override
    public void completed(Int result, AsynchronousSocketChannel channel) {
      buf.flip();
                
      // echo the message
      startWrite(channel, buf);
                
      // start to read next message again
      startRead(channel);
    }

    @Override
    public void failed(Throwable exc, AsynchronousSocketChannel channel) {
      print( "fail to read message from client");
    }
  });
}
    
static void startWrite(AsynchronousSocketChannel sockChannel, final ByteBuffer buf) {
  sockChannel.write(buf, sockChannel, new CompletionHandler<Integer, AsynchronousSocketChannel >() {
    @Override
    public void completed(Int result, AsynchronousSocketChannel channel) {                 
      // finish to write message to client, nothing to do
      // (close socket?)
    }

    @Override
    public void failed(Throwable exc, AsynchronousSocketChannel channel) {
      print("Fail to write message to client");
    }
  });
}

html { ret "Use port " + port; }

svoid sendNumber(O ws) {
  State s = wsToState.get(ws);
  if (s != null && theNumber != s.countSeen) {
    s.countSeen = theNumber;
    print("Sending number to " + s.computerID + ": " + theNumber);
    call(ws, 'send, str(theNumber));
  }
}

svoid update {
  print("OS Instances update");
  if (webSocketManager.isEmpty()) ret;

  int value = cI.value();
  //if (value == theNumber) ret;
  theNumber = value;
  for (O ws : webSocketManager.webSockets()) pcall {
    sendNumber(ws);
  }
  print("OS Instances update done");
}

Author comment

Began life as a copy of #1016453

download  show line numbers  debug dex  old transpilations   

Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1016571
Snippet name: OS Instances Connector [Async Socket, Web Bot, dev.]
Eternal ID of this version: #1016571/6
Text MD5: 2dfe289545dcc95a29c57ee622d5b8e6
Author: stefan
Category: javax / a.i. / web
Type: JavaX module
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-06-23 22:45:01
Source code size: 3136 bytes / 103 lines
Pitched / IR pitched: No / No
Views / Downloads: 327 / 688
Version history: 5 change(s)
Referenced in: [show references]