[Issue 9798] New: The memory assigned in multithread is broken

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Mar 23 10:15:21 PDT 2013


http://d.puremagic.com/issues/show_bug.cgi?id=9798

           Summary: The memory assigned in multithread is broken
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: zan77137 at nifty.com


--- Comment #0 from SHOO <zan77137 at nifty.com> 2013-03-23 10:15:18 PDT ---
This code doesn't work (github master HEAD):
-----------------------------------------
import std.socket, std.algorithm, std.concurrency, std.variant, std.typecons;

struct SendData { string id; string data; }

private bool receiveEx(T)(Socket sock, ref T dat)
{
    import std.traits: isDynamicArray;
    bool receiveExact(ubyte[] dat)
    {
        auto r = sock.receive(dat);
        return r != 0 && r != Socket.ERROR;
    }
    static if (isDynamicArray!T)
    {
        uint len;
        if (!receiveExact((cast(ubyte*)&len)[0..uint.sizeof]))
            return false;
        dat.length = len;
        return receiveExact((cast(ubyte*)dat.ptr)[0..len*T.sizeof]);
    }
    else
    {
        return receiveExact((cast(ubyte*)&dat)[0..T.sizeof]);
    }
}

private bool sendEx(T)(Socket sock, in T dat)
{
    import std.traits: isDynamicArray;
    static if (isDynamicArray!T)
    {
        auto len = cast(uint)dat.length;
        return sock.send((cast(const ubyte*)&len)[0..uint.sizeof]) !=
Socket.ERROR
            && sock.send((cast(const ubyte*)dat.ptr)[0..len * T.sizeof]) !=
Socket.ERROR;
    }
    else
    {
        return !(sock.send((cast(const ubyte*)&dat)[0..T.sizeof]) ==
Socket.ERROR);
    }
}

void entrySend(shared Socket ssock)
{
    auto sock = cast()ssock;
    receiveTimeout( dur!"msecs"(1),
    (Variant arg)
    {
        auto msg = arg.get!(immutable(SendData)*)();
        sock.sendEx(cast(uint)0);
        sock.sendEx(msg.id);
        sock.sendEx(msg.data);
    });
}

void entryReceive(shared Socket ssock, void delegate(string, string) shared dg)
{
    auto sock = cast()ssock;
    uint msgid;
    char[] id, data;
    sock.receiveEx(msgid);
    sock.receiveEx(id);
    sock.receiveEx(data);
    dg(id.assumeUnique(), data.assumeUnique());
}

unittest
{
    import std.string, core.sync.barrier, core.thread;
    auto barrier = new Barrier(2);
    string msg;
    auto socks = socketPair();
    scope (exit)
    {
        socks[0].shutdown(SocketShutdown.BOTH), socks[0].close();
        socks[1].shutdown(SocketShutdown.BOTH), socks[1].close();
    }
    auto dummy = new class
    {
        void onDataReceived(string id, string data) shared
        {
            msg = format("Client data received id[%s] data[%s]", id, data);
            barrier.wait();
        }
    };

    auto tidSS = spawn(&entrySend,    cast(shared)socks[0]);
    auto tidCR = spawn(&entryReceive, cast(shared)socks[1],
&dummy.onDataReceived);

    // server->client sendData
    tidSS.send(new immutable SendData("aaaa", "xxxx"));
    barrier.wait();
    assert(msg == "Client data received id[aaaa] data[xxxx]", msg);
}

void main(){}
-----------------------------------------


$ dmd -unittest -debug -g -run main
core.exception.AssertError at main.d(92): Client data received id[Clie] data[xxxx]
----------------
0x0041426D in onAssertErrorMsg
0x0040CC24 in void main.__modtest()
0x0041AA4D in extern (C) bool core.runtime.runModuleUnitTests().int
__foreachbod
y344(ref object.ModuleInfo*)
0x00420CC7 in int rt.minfo.moduleinfos_apply(scope int delegate(ref
object.Modul
eInfo*)).int __foreachbody549(ref rt.sections_win32.SectionGroup)
0x00414461 in _d_run_main
0x0040D630 in main
0x75B88543 in BaseThreadInitThunk
0x77B2AC69 in RtlInitializeExceptionChain
0x77B2AC3C in RtlInitializeExceptionChain

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list