Usermode/AxWin3 - Implemented passing messages to the client
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / ipc.c
1 /*
2  * Acess2 GUI (AxWin) Version 3
3  * - By John Hodge (thePowersGang)
4  * 
5  * ipc.c
6  * - Interprocess communication
7  */
8 #include <common.h>
9 #include <acess/sys.h>
10 #include <net.h>
11 #include <string.h>
12 #include <ipcmessages.h>
13 #include <stdio.h>
14 #include <wm.h>
15
16 #define AXWIN_PORT      4101
17
18 #define STATICBUF_SIZE  64
19 #define MAX_WINDOWS_PER_APP     128
20
21 // === TYPES ===
22 typedef struct sIPC_Type        tIPC_Type;
23
24 struct sIPC_Type
25 {
26          int    (*GetIdentSize)(const void *Ident);
27          int    (*CompareIdent)(const void *Ident1, const void *Ident2);
28         void    (*SendMessage)(const void *Ident, size_t Length, const void *Data);
29 };
30
31 struct sIPC_Client
32 {
33         const tIPC_Type *IPCType;
34         const void      *Ident; // Stored after structure
35
36          int    nWindows;
37         tWindow **Windows;
38 };
39
40
41 // === PROTOTYPES ===
42 void    IPC_Init(void);
43 void    IPC_FillSelect(int *nfds, fd_set *set);
44 void    IPC_HandleSelect(fd_set *set);
45  int    IPC_Type_Datagram_GetSize(const void *Ident);
46  int    IPC_Type_Datagram_Compare(const void *Ident1, const void *Ident2);
47 void    IPC_Type_Datagram_Send(const void *Ident, size_t Length, const void *Data);
48  int    IPC_Type_Sys_GetSize(const void *Ident);
49  int    IPC_Type_Sys_Compare(const void *Ident1, const void *Ident2);
50 void    IPC_Type_Sys_Send(const void *Ident, size_t Length, const void *Data);
51 void    IPC_Handle(const tIPC_Type *IPCType, const void *Ident, size_t MsgLen, tAxWin_IPCMessage *Msg);
52
53 // === GLOBALS ===
54 const tIPC_Type gIPC_Type_Datagram = {
55         IPC_Type_Datagram_GetSize,
56         IPC_Type_Datagram_Compare, 
57         IPC_Type_Datagram_Send
58 };
59 const tIPC_Type gIPC_Type_SysMessage = {
60         IPC_Type_Sys_GetSize,
61         IPC_Type_Sys_Compare,
62         IPC_Type_Sys_Send
63 };
64  int    giNetworkFileHandle = -1;
65  int    giMessagesFileHandle = -1;
66  int    giIPC_ClientCount;
67 tIPC_Client     **gIPC_Clients;
68
69 // === CODE ===
70 void IPC_Init(void)
71 {
72          int    tmp;
73         // TODO: Check this
74         giNetworkFileHandle = open("/Devices/ip/loop/udp", OPENFLAG_READ);
75         tmp = AXWIN_PORT;       ioctl(giNetworkFileHandle, 4, &tmp);    // TODO: Don't hard-code IOCtl number
76 }
77
78 void IPC_FillSelect(int *nfds, fd_set *set)
79 {
80         if( giNetworkFileHandle > *nfds )       *nfds = giNetworkFileHandle;
81         FD_SET(giNetworkFileHandle, set);
82 }
83
84 void IPC_HandleSelect(fd_set *set)
85 {
86         if( FD_ISSET(giNetworkFileHandle, set) )
87         {
88                 char    staticBuf[STATICBUF_SIZE];
89                  int    readlen, identlen;
90                 char    *msg;
91
92                 readlen = read(giNetworkFileHandle, staticBuf, sizeof(staticBuf));
93                 
94                 identlen = 4 + Net_GetAddressSize( ((uint16_t*)staticBuf)[1] );
95                 msg = staticBuf + identlen;
96
97                 IPC_Handle(&gIPC_Type_Datagram, staticBuf, readlen - identlen, (void*)msg);
98 //              _SysDebug("IPC_HandleSelect: UDP handled");
99         }
100
101         while(SysGetMessage(NULL, NULL))
102         {
103                 pid_t   tid;
104                  int    len = SysGetMessage(&tid, NULL);
105                 char    data[len];
106                 SysGetMessage(NULL, data);
107
108                 IPC_Handle(&gIPC_Type_SysMessage, &tid, len, (void*)data);
109 //              _SysDebug("IPC_HandleSelect: Message handled");
110         }
111 }
112
113 int IPC_Type_Datagram_GetSize(const void *Ident)
114 {
115         return 4 + Net_GetAddressSize( ((const uint16_t*)Ident)[1] );
116 }
117
118 int IPC_Type_Datagram_Compare(const void *Ident1, const void *Ident2)
119 {
120         // Pass the buck :)
121         // - No need to worry about mis-matching sizes, as the size is computed
122         //   from the 3rd/4th bytes, hence it will differ before the size is hit.
123         return memcmp(Ident1, Ident2, IPC_Type_Datagram_GetSize(Ident1));
124 }
125
126 void IPC_Type_Datagram_Send(const void *Ident, size_t Length, const void *Data)
127 {
128          int    identlen = IPC_Type_Datagram_GetSize(Ident);
129         char    tmpbuf[ identlen + Length ];
130         memcpy(tmpbuf, Ident, identlen);        // Header
131         memcpy(tmpbuf + identlen, Data, Length);        // Data
132         // TODO: Handle fragmented packets
133         write(giNetworkFileHandle, tmpbuf, sizeof(tmpbuf));
134 }
135
136 int IPC_Type_Sys_GetSize(const void *Ident)
137 {
138         return sizeof(pid_t);
139 }
140
141 int IPC_Type_Sys_Compare(const void *Ident1, const void *Ident2)
142 {
143         return *(const tid_t*)Ident1 - *(const tid_t*)Ident2;
144 }
145
146 void IPC_Type_Sys_Send(const void *Ident, size_t Length, const void *Data)
147 {
148         SysSendMessage( *(const tid_t*)Ident, Length, Data );
149 }
150
151 // --- Client -> Window Mappings
152 int _CompareClientPtrs(const void *_a, const void *_b)
153 {
154         tIPC_Client     *a = *(tIPC_Client**)_a;
155         tIPC_Client     *b = *(tIPC_Client**)_b;
156         
157         if(a->IPCType < b->IPCType)     return -1;
158         if(a->IPCType > b->IPCType)     return 1;
159         
160         return a->IPCType->CompareIdent(a->Ident, b->Ident);
161 }
162
163 tIPC_Client *IPC_int_GetClient(const tIPC_Type *IPCType, const void *Ident)
164 {
165          int    pos = 0;        // Position where the new client will be inserted
166          int    ident_size;
167         tIPC_Client     *ret;
168
169         // - Search list of registered clients
170         if(giIPC_ClientCount > 0)
171         {
172                 tIPC_Client     target;
173                  int    div;
174                  int    cmp = -1;
175         
176                 target.IPCType = IPCType;
177                 target.Ident = Ident;
178                 ret = &target;  // Abuse ret to get a pointer
179                 
180                 div = giIPC_ClientCount;
181                 pos = div/2;
182                 while(div > 0)
183                 {
184                         div /= 2;
185                         cmp = _CompareClientPtrs(&ret, &gIPC_Clients[pos]);
186 //                      _SysDebug("Checking against %i gives %i", pos, cmp);
187                         if(cmp == 0)    break;
188                         if(cmp < 0)
189                                 pos -= div;
190                         else
191                                 pos += div;
192                 }
193                 
194                 // - Return if found    
195                 if(cmp == 0)
196                         return gIPC_Clients[pos];
197         
198                 // Adjust pos to be the index where the new client will be placed
199                 if(cmp > 0)     pos ++;
200         }
201
202
203         // - Create a new client entry
204         ident_size = IPCType->GetIdentSize(Ident);
205 //      _SysDebug("ident_size = %i", ident_size);
206         ret = malloc( sizeof(tIPC_Client) + ident_size );
207         if(!ret)        return NULL;
208         ret->IPCType = IPCType;
209         ret->Ident = ret + 1;   // Get the end of the structure
210         memcpy( (void*)ret->Ident, Ident, ident_size );
211         ret->nWindows = 0;
212         ret->Windows = NULL;
213         
214         // TODO: Register some way of detecting the client disconnecting
215         //       > Wait on the thread / register with kernel somehow
216         //       > Sockets are easier, but UDP is harder. Might get rid of it
217
218         // - Insert
219         giIPC_ClientCount ++;
220         gIPC_Clients = realloc(gIPC_Clients, giIPC_ClientCount*sizeof(tIPC_Client*));
221         memmove(&gIPC_Clients[pos+1], &gIPC_Clients[pos], (giIPC_ClientCount-pos-1) * sizeof(tIPC_Client*));
222         gIPC_Clients[pos] = ret;
223
224         return ret;
225 }
226
227 tWindow *IPC_int_GetWindow(tIPC_Client *Client, uint32_t WindowID)
228 {
229         if( WindowID == -1 )
230                 return NULL;
231
232         if( WindowID >= Client->nWindows ) {
233 //              _SysDebug("Window %i out of range for %p (%i)", WindowID, Client, Client->nWindows);
234                 return NULL;
235         }
236
237         return Client->Windows[WindowID];
238 }
239
240 void IPC_int_SetWindow(tIPC_Client *Client, uint32_t WindowID, tWindow *WindowPtr)
241 {
242         if( WindowID >= MAX_WINDOWS_PER_APP )
243                 return ;
244
245         if( WindowID >= Client->nWindows )
246         {
247                  int    oldCount = Client->nWindows;
248                 Client->nWindows = WindowID + 1;
249                 Client->Windows = realloc(Client->Windows, Client->nWindows*sizeof(tWindow*));
250                 memset( &Client->Windows[oldCount],  0, (Client->nWindows-oldCount)*sizeof(tWindow*) );
251                 _SysDebug("Expanded %p's window list from %i to %i", Client, oldCount, Client->nWindows);
252         }
253
254         _SysDebug("Assigned %p to window %i for %p", WindowPtr, WindowID, Client);      
255         Client->Windows[WindowID] = WindowPtr;
256 }
257
258 // --- IPC Message Handlers ---
259 int IPC_Msg_SendMsg(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
260 {
261         tIPCMsg_SendMsg *info = (void*)Msg->Data;
262         tWindow *src, *dest;
263         
264         // - Sanity checks
265         if( Msg->Size < sizeof(tIPCMsg_SendMsg) )
266                 return -1;
267         if( Msg->Size < sizeof(tIPCMsg_SendMsg) + info->Length )
268                 return -1;
269         
270         src = IPC_int_GetWindow(Client, Msg->Window);
271         if(!src)        return 1;
272         dest = IPC_int_GetWindow(Client, info->Remote);
273         if(!dest)       return 1;
274
275         WM_SendMessage(src, dest, info->ID, info->Length, info->Data);  
276
277         return 0;
278 }
279
280 int IPC_Msg_CreateWin(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
281 {
282         tIPCMsg_CreateWin       *info = (void*)Msg->Data;
283         tWindow *newwin, *parent;
284
285         // - Sanity checks
286         //  > +1 is for NULL byte on string
287         if( Msg->Size < sizeof(tIPCMsg_CreateWin) + 1 )
288                 return -1;
289         if( info->Renderer[Msg->Size - sizeof(tIPCMsg_CreateWin)] != '\0' )
290                 return -1;
291         
292         // - Get the parent window ID
293         parent = IPC_int_GetWindow(Client, Msg->Window);
294
295         // Catch creating a window with an existing ID
296         if( IPC_int_GetWindow(Client, info->NewWinID) )
297                 return 1;
298
299         // - Create the new window, and save its pointer
300         newwin = WM_CreateWindow(parent, Client, info->NewWinID, info->RendererArg, info->Renderer);
301         IPC_int_SetWindow(Client, info->NewWinID, newwin);
302
303         return 0;
304 }
305
306 int IPC_Msg_ShowWindow(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
307 {
308         tIPCMsg_ShowWindow      *info = (void*)Msg->Data;
309         tWindow *win;
310         
311         if( Msg->Size < sizeof(*info) ) return -1;
312         
313         win = IPC_int_GetWindow(Client, Msg->Window);
314         if(!win)        return 1;
315
316         WM_ShowWindow(win, !!info->bShow);
317         
318         return 0;
319 }
320
321 int IPC_Msg_SetWinPos(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
322 {
323         tIPCMsg_SetWindowPos    *info = (void*)Msg->Data;
324         tWindow *win;
325         
326         if(Msg->Size < sizeof(*info))   return -1;
327         
328         win = IPC_int_GetWindow(Client, Msg->Window);
329         if(!win)        return 1;
330         
331         _SysDebug("info = {..., bSetPos=%i,bSetDims=%i}", info->bSetPos, info->bSetDims);
332         
333         if(info->bSetPos)
334                 WM_MoveWindow(win, info->X, info->Y);
335         if(info->bSetDims)
336                 WM_ResizeWindow(win, info->W, info->H);
337         
338         return 0;
339 }
340
341 void IPC_Handle(const tIPC_Type *IPCType, const void *Ident, size_t MsgLen, tAxWin_IPCMessage *Msg)
342 {
343         tIPC_Client     *client;
344          int    rv = 0;
345         
346         _SysDebug("IPC_Handle: (IPCType=%p, Ident=%p, MsgLen=%i, Msg=%p)",
347                 IPCType, Ident, MsgLen, Msg);
348         
349         if( MsgLen < sizeof(tAxWin_IPCMessage) )
350                 return ;
351         if( MsgLen < sizeof(tAxWin_IPCMessage) + Msg->Size )
352                 return ;
353         
354         client = IPC_int_GetClient(IPCType, Ident);
355
356         switch((enum eAxWin_IPCMessageTypes) Msg->ID)
357         {
358         // --- Ping message (reset timeout and get server version)
359         case IPCMSG_PING:
360                 _SysDebug(" IPC_Handle: IPCMSG_PING");
361                 if( Msg->Size < 4 )     return;
362                 if( Msg->Flags & IPCMSG_FLAG_RETURN )
363                 {
364                         Msg->ID = IPCMSG_PING;
365                         Msg->Size = sizeof(tIPCMsg_Return);
366                         ((tIPCMsg_Return*)Msg->Data)->Value = AXWIN_VERSION;
367                         IPCType->SendMessage(Ident, sizeof(tIPCMsg_Return), Msg);
368                 }
369                 break;
370
371         // --- Send a message
372         case IPCMSG_SENDMSG:
373                 _SysDebug(" IPC_Handle: IPCMSG_SENDMSG %i", ((tIPCMsg_SendMsg*)Msg->Data)->ID);
374                 rv = IPC_Msg_SendMsg(client, Msg);
375                 break;
376
377         // --- Create window
378         case IPCMSG_CREATEWIN:
379                 _SysDebug(" IPC_Handle: IPCMSG_CREATEWIN");
380                 rv = IPC_Msg_CreateWin(client, Msg);
381                 break;
382         // --- Show/Hide a window
383         case IPCMSG_SHOWWINDOW:
384                 _SysDebug(" IPC_Handle: IPCMSG_SHOWWINDOW");
385                 rv = IPC_Msg_ShowWindow(client, Msg);
386                 break;
387         // --- Move/Resize a window
388         case IPCMSG_SETWINPOS:
389                 _SysDebug(" IPC_Handle: IPCMSG_SETWINPOS");
390                 rv = IPC_Msg_SetWinPos(client, Msg);
391                 break;
392
393         // --- Unknown message
394         default:
395                 fprintf(stderr, "WARNING: Unknown message %i (%p)\n", Msg->ID, IPCType);
396                 _SysDebug("WARNING: Unknown message %i (%p)", Msg->ID, IPCType);
397                 break;
398         }
399         if(rv)
400                 _SysDebug("IPC_Handle: rv = %i", rv);
401 }
402
403 // --- Server->Client replies
404 void IPC_SendWMMessage(tIPC_Client *Client, uint32_t Src, uint32_t Dst, int MsgID, int Len, void *Data)
405 {
406         tAxWin_IPCMessage       *hdr;
407         tIPCMsg_SendMsg         *msg;
408         char    buf[sizeof(*hdr)+sizeof(*msg)+Len];
409         
410         hdr = (void*)buf;
411         msg = (void*)hdr->Data;
412         
413         hdr->ID = IPCMSG_SENDMSG;
414         hdr->Flags = 0;
415         hdr->Size = sizeof(*msg) + Len;
416         hdr->Window = Dst;
417         
418         msg->Remote = Src;
419         msg->ID = MsgID;
420         msg->Length = Len;
421         memcpy(msg->Data, Data, Len);
422         
423         Client->IPCType->SendMessage(Client->Ident, sizeof(buf), buf);
424 }
425

UCC git Repository :: git.ucc.asn.au