Name: vi73552 Date: 04/01/99
I would like to have select like feature on top of TCP/IP
stack java implementation.
Why?
If I have one network card naturaly I want one thread to be
able to process all incoming/outgoing TCP/IP (UDP also) trafic.
This way I need the single high priority thread to work
(dedicated) on processing data to/from network card.
What Benefit?
Let's assume we have a system (PC) with
1 netwok card and
4 hard disks.
Using ala select feature on TCP/IP stack I would be able to
serve (let's say) 50,000 simultaneous tcp/ip connection
on the system with 6 threads only.
1 Thread (dedicated&internal), (I have no dirrect access to it),
processes data to/from network card (high priority)
2 Thread is my basic application with caching capabilities
+ issuing requests for the thread #1 or to the threads #3-#6
3-6 Threads read data (files) from the disks #1#2#3#4
So, thread #2 waits on semaphore when has nothing to do, and
could be woken up from threads #3-#6 (naturaly, this would be
my application code) or from thread #1 (because it is designed
to work this way)
Let me repeat:
I have no access to the thread #1. I have an TCPSelectInterface Object only which is created to serve my specific network
interface.
Requested features for TCPSelectInterface.
1) I wanna have several TCPSelectInterface objects serving on
single network interface. That is required because I can have
my thread #2 serving all ordinary "download html files" trafic
and thread pool of (let's say) 50 threads serving special
request ala servlets.
1)a) I don't need TCPSelectInterface object at all if my
special handling thread ("servlet" execution) uses only one
socket at all, so this special stealth thread #1 can block my
special handling thread if needed.
2) I should be able have and use 2 TCPSelectInterface objects
dedicated for different interfaces (let's say, network card and
loopback 1 thread for 1 interface) in the same thread
(let's say thread #2)
3) Through TCPSelectInterface I should be able to check socket
status, should be able to query how many bytes i can write/read
from specified socket.
3)a) Through TCPSelectInterface I should be able to query how
many bytes i can write/read from the network interface.
4) I should be able to read from TCPSelectInterface all data
and sockets' numbers which are available immediately without
blocking
4)a) I should be able to block my thread while waiting data
from "4)" requested feature. My thread should be waken up when
data from "4)" requested feature is available (if not waken
by any other thread).
I am aware now, that i can check socket and query how many bytes
are available for immediate read, but i'm not sure how to
implement write bytes to the socket which does not block thread
(or at least query socket for how many bytes i can write without
blocking).
Also, current TCP/IP stack implementation forces me to scan
all sockets for being able to see which socket has data for
immediate (non blocking) read, and which does not. So requested
feature "4)" is supposed to solve that problem.
I request this feature, because i'm almost sure, that this
feature requires some native code for implementation.
If i do write my native code, i will get not compatible with
100% pure Java solution, which is not my aim.
(Review ID: 56377)
======================================================================
- duplicates
-
JDK-4094858 Need the select() call for Socket in java.net.
-
- Closed
-
-
JDK-4313882 New I/O: Scalable I/O for sockets and files
-
- Resolved
-