Rrom C#,通过SOCKET到JAVA进行读取/写入,并且存在一些并发/套接字问题。

我正在尝试实现一个服务器客户端应用程序,其中服务器是Java,客户端是C#。它们通过TCP / IP进行通信并在它们之间交换一些二进制数据。

特别是我有一个用Java和C#定义的Packet类。它具有标题,键和值。 Java和C#都以完全相同的方式写入和读取Packet to Socket。这样,我就可以从C#发送请求数据包,在Java Server上对其进行处理,并将响应作为数据包发送回去。

最初的问题要复杂得多,但我可以将其简化为此“简单”版本。

我已经实现了服务器和客户端,如下所述。该代码也位于底部。

让我指出问题,您必须继续阅读:)

服务器(Java)端

在服务器端,我有一个非常虚假的ServerSocket用法。它读取传入的数据包并发送回几乎相同的数据包作为响应。

客户端(C#)端
客户端有点复杂。客户端启动N(可配置)数量的线程(我称它们为用户线程)。一进一出线程。所有用户线程都会创建一个带有虚拟请求数据包和唯一ID的Call对象。然后将调用添加到本地BlockingCollection中。

输出线程连续读取本地BlockingCollection并将所有请求数据包发送到服务器

入线程还连续从服务器读取响应数据包,并将其与Call对象进行匹配(记住唯一的呼叫ID)。

如果在5秒钟的间隔内没有对特定Call对象的响应,则用户线程将通过打印到Console中来投诉它。

还有一个间隔为10秒的计时器,该计时器显示每秒执行了多少事务。

如果您到现在为止,谢谢:)。

现在的问题是:

下面的代码是我上面描述的实现,可以在Mac上的Mono上正常运行。在Windows上,用户线程数少(问题是为什么它们被损坏?如您所见,接触套接字的线程是In和Out线程。但是以某种方式,用户线程的数量会影响客户端并将其制动。

看起来有些并发或套接字问题,但我可以找到它。

我已经将代码用于Server(Java)和Client(C#)。他们没有任何依赖关系,只是在两个服务器(第一个服务器)上编译并运行Main方法都显示了问题。

如果您到目前为止阅读,我将不胜感激。

服务器代码

import java.io.*;
import java.net.*;
import java.nio.ByteBuffer;

public class DummyServer {

public static void main(String[] args) throws IOException {
    ServerSocket server = new ServerSocket(9900);
    System.out.println("Server started");
    for(;;){
        final Socket socket = server.accept();
        System.out.println("Accepting a connection");
        new Thread(new Runnable(){
            public void run() {
                try {
                    System.out.println("Thread started to handle the connection");
                    DataInputStream dis = new DataInputStream(socket.getInputStream());
                    DataOutputStream dos = new DataOutputStream(socket.getOutputStream());
                    for(int i=0; ; i++){
                        Packet packet = new Packet();
                        packet.readFrom(dis);
                        packet.key = null;
                        packet.value = new byte[1000];
                        packet.writeTo(dos);
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }).start();
    }
}
public static class Packet {
    byte[] key;
    byte[] value;
    long callId = -1;
    private int valueHash = -1;

    public void writeTo(DataOutputStream outputStream) throws IOException {
        final ByteBuffer writeHeaderBuffer = ByteBuffer.allocate(1 << 10); // 1k
        writeHeaderBuffer.clear();
        writeHeaderBuffer.position(12);
        writeHeaderBuffer.putLong(callId);
        writeHeaderBuffer.putInt(valueHash);
        int size = writeHeaderBuffer.position();
        int headerSize = size - 12;
        writeHeaderBuffer.position(0);
        writeHeaderBuffer.putInt(headerSize);
        writeHeaderBuffer.putInt((key == null) ? 0 : key.length);
        writeHeaderBuffer.putInt((value == null) ? 0 : value.length);
        outputStream.write(writeHeaderBuffer.array(), 0, size);
        if (key != null)outputStream.write(key);
        if (value != null)outputStream.write(value);
    }

    public void readFrom(DataInputStream dis) throws IOException {
        final ByteBuffer readHeaderBuffer = ByteBuffer.allocate(1 << 10);
        final int headerSize = dis.readInt();
        int keySize = dis.readInt();
        int valueSize = dis.readInt();
        readHeaderBuffer.clear();
        readHeaderBuffer.limit(headerSize);
        dis.readFully(readHeaderBuffer.array(), 0, headerSize);
        this.callId = readHeaderBuffer.getLong();
        valueHash = readHeaderBuffer.getInt();
        key = new byte[keySize];
        dis.readFully(key);
        value = new byte[valueSize];
        dis.readFully(value);
    }
}


}

C#客户端代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;
using System.Collections.Concurrent;
using System.Threading;

namespace Client
{
public class Program
{
    readonly ConcurrentDictionary<long, Call> calls = new ConcurrentDictionary<long, Call>();
    readonly BlockingCollection<Call> outThreadQueue = new BlockingCollection<Call>(1000);
    readonly TcpClient tcpClient = new TcpClient("localhost", 9900);
    readonly private int THREAD_COUNT;
    static int ops;

    public static void Main(string[] args) {
        new Program(args.Length > 0 ? int.Parse(args[0]) : 100).Start();
    }
    public Program(int threadCount) {
        this.THREAD_COUNT = threadCount;
        new Thread(new ThreadStart(this.InThreadRun)).Start();//start the InThread
        new Thread(new ThreadStart(this.OutThreadRun)).Start();//start the OutThread
    }
    public void Start(){
        for (int i = 0; i < THREAD_COUNT; i++)
            new Thread(new ThreadStart(this.Call)).Start();
        Console.WriteLine(THREAD_COUNT + " User Threads started to perform server call");
        System.Timers.Timer aTimer = new System.Timers.Timer(10000);
        aTimer.Elapsed += new System.Timers.ElapsedEventHandler(this.Stats);
        aTimer.Enabled = true;
    }
    public void Stats(object source, System.Timers.ElapsedEventArgs e){
        Console.WriteLine("Ops per second: " + Interlocked.Exchange(ref ops, 0) / 10);
    }
    public void Call() {
        for (; ;){
            Call call = new Call(new Packet());
            call.request.key = new byte[10];
            call.request.value = new byte[1000];
            outThreadQueue.Add(call);
            Packet result = null;
            for (int i = 1;result==null ; i++){
                result = call.getResult(5000);
                if(result==null) Console.WriteLine("Call"  + call.id + " didn't get answer within "+ 5000*i/1000 + " seconds");
            }
            Interlocked.Increment(ref ops);
        }
    }
    public void InThreadRun(){
        for (; ; ){
            Packet packet = new Packet();
            packet.Read(tcpClient.GetStream());
            Call call;
            if (calls.TryGetValue(packet.callId, out call))
                call.inbQ.Add(packet);
            else
                Console.WriteLine("Unkown call result: " + packet.callId);
        }
    }
    public void OutThreadRun() {
        for (; ; ){
            Call call = outThreadQueue.Take();
            calls.TryAdd(call.id, call);
            Packet packet = call.request;
            if (packet != null) packet.write(tcpClient.GetStream());
        }
    }
}
public class Call
{
    readonly public long id;
    readonly public Packet request;
    static long callIdGen = 0;
    readonly public BlockingCollection<Packet> inbQ = new BlockingCollection<Packet>(1);
    public Call(Packet request)
    {
        this.id = incrementCallId();
        this.request = request;
        this.request.callId = id;
    }
    public Packet getResult(int timeout)
    {
        Packet response = null;
        inbQ.TryTake(out response, timeout);
        return response;
    }
    private static long incrementCallId()
    {
        long initialValue, computedValue;
        do
        {
            initialValue = callIdGen;
            computedValue = initialValue + 1;
        } while (initialValue != Interlocked.CompareExchange(ref callIdGen, computedValue, initialValue));
        return computedValue;
    }
}

public class Packet
{
    public byte[] key;
    public byte[] value;
    public long callId = 0;
    public void write(Stream stream)
    {
        MemoryStream header = new MemoryStream();
        using (BinaryWriter writer = new BinaryWriter(header))
        {
            writer.Write(System.Net.IPAddress.HostToNetworkOrder((long)callId));
            writer.Write(System.Net.IPAddress.HostToNetworkOrder((int)-1));
        }
        byte[] headerInBytes = header.ToArray();
        MemoryStream body = new MemoryStream();
        using (BinaryWriter writer = new BinaryWriter(body))
        {
            writer.Write(System.Net.IPAddress.HostToNetworkOrder(headerInBytes.Length));
            writer.Write(System.Net.IPAddress.HostToNetworkOrder(key == null ? 0 : key.Length));
            writer.Write(System.Net.IPAddress.HostToNetworkOrder(value == null ? 0 : value.Length));
            writer.Write(headerInBytes);
            if (key != null) writer.Write(key);
            if (value != null) writer.Write(value);
            byte[] packetInBytes = body.ToArray();
            stream.Write(packetInBytes, 0, packetInBytes.Length);
        }
    }
    public void Read(Stream stream)
    {
        BinaryReader reader = new BinaryReader(stream);
        int headerSize = IPAddress.NetworkToHostOrder(reader.ReadInt32());
        int keySize = IPAddress.NetworkToHostOrder(reader.ReadInt32());
        int valueSize = IPAddress.NetworkToHostOrder(reader.ReadInt32());
        this.callId = IPAddress.NetworkToHostOrder(reader.ReadInt64());
        int valuePartitionHash = IPAddress.NetworkToHostOrder(reader.ReadInt32());
        this.key = new byte[keySize];
        this.value = new byte[valueSize];
        if (keySize > 0) reader.Read(this.key, 0, keySize);
        if (valueSize > 0) reader.Read(this.value, 0, valueSize);
    }
}


}

最佳答案

这是一个很常见的错误:套接字上的任何Read调用实际上都无法读取所需的字节数(如果当前不可用)。 Read将返回每个调用读取的字节数。如果希望读取n个字节的数据,则需要多次调用read,直到读取的字节数总计为n。

07-24 09:44
查看更多