summaryrefslogtreecommitdiffstats
path: root/src/libs/xpcom18a4/ipc/ipcd/test/module/TestModule.cpp
blob: fbd788677a708450e46a6f6968e96253a2ac006f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <stdio.h>
#include "ipcModuleUtil.h"

#define TEST_MODULE_ID                                \
{ /* e628fc6e-a6a7-48c7-adba-f241d1128fb8 */          \
    0xe628fc6e,                                       \
    0xa6a7,                                           \
    0x48c7,                                           \
    {0xad, 0xba, 0xf2, 0x41, 0xd1, 0x12, 0x8f, 0xb8}  \
}
static const nsID kTestModuleID = TEST_MODULE_ID;

struct TestModule
{
    static void Init()
    {
        printf("*** TestModule::Init\n");
    }

    static void Shutdown()
    {
        printf("*** TestModule::Shutdown\n");
    }

    static void HandleMsg(ipcClientHandle client,
                          const nsID     &target,
                          const void     *data,
                          PRUint32        dataLen)
    {
        printf("*** TestModule::HandleMsg [%s]\n", (const char *) data);

        static const char buf[] = "pong";
        IPC_SendMsg(client, kTestModuleID, buf, sizeof(buf));
    }

    static void ClientUp(ipcClientHandle client)
    {
        printf("*** TestModule::ClientUp [%u]\n", IPC_GetClientID(client));
    }

    static void ClientDown(ipcClientHandle client)
    {
        printf("*** TestModule::ClientDown [%u]\n", IPC_GetClientID(client));
    }
};

static ipcModuleMethods gTestMethods =
{
    IPC_MODULE_METHODS_VERSION,
    TestModule::Init,
    TestModule::Shutdown,
    TestModule::HandleMsg,
    TestModule::ClientUp,
    TestModule::ClientDown
};

static ipcModuleEntry gTestModuleEntry[] =
{
    { TEST_MODULE_ID, &gTestMethods }
};

IPC_IMPL_GETMODULES(TestModule, gTestModuleEntry)