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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
|
/********************************************************************************************
Clean OS Windows library module version 1.2.1.
This module is part of the Clean Object I/O library, version 1.2.1,
for the Windows platform.
********************************************************************************************/
/********************************************************************************************
About this module:
cCrossCall_121 defines the infrastructure required by the Object I/O library to call
system procedures that interact with the Windows callback mechanism.
The basic principle in cCrossCall_121 is to have a minimal cross call kernel. If Clean
code requires extension of the functionality of the OS thread, then this functionality
must be registered before being applicable.
In this version the request codes are still statically fixed and are assumed to be
globally available both in the OS thread and the Clean thread. In a future version this
will probably be replaced by a dynamic allocation of cross call request codes.
********************************************************************************************/
/********************************************************************************************
Include section.
********************************************************************************************/
#include "cCrossCall_121.h"
#include "cCrossCallWindows_121.h" /* Contains the implementation of cursors. */
#include <gdk/gdkkeysyms.h>
#include <pthread.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
char** global_argv;
int global_argc = 0;
#define _MAX_PATH 255
/**********************************************************************************************
External global data section.
**********************************************************************************************/
CrossCallInfo gCci; /* The global cross call information struct. */
GtkTooltips *gTooltip = NULL; /* The tooltip control. */
CrossCallProcedureTable gCrossCallProcedureTable;
/**********************************************************************************************
Internal global data section.
**********************************************************************************************/
static pthread_mutex_t gCleanMutex;
static pthread_mutex_t gOSMutex;
static pthread_t gOSThread;
static gboolean gOSThreadIsRunning = FALSE;
static gboolean gEventsInited = FALSE; /* What is this? */
static CrossCallInfo *MakeQuitCci (CrossCallInfo * pcci);
/* GetModifiers returns the modifiers that are currently pressed.
*/
int GetModifiers (void)
{
int mods = 0;
GdkModifierType state;
/*printf("GetModifiers\n");*/
gdk_event_get_state(gtk_get_current_event(), &state);
if (state & GDK_SHIFT_MASK) {
mods |= SHIFTBIT;
}
if (state & GDK_CONTROL_MASK) {
mods |= CTRLBIT;
}
if (state & GDK_MOD1_MASK) {
mods |= ALTBIT;
}
return mods;
}
/* Translate virtual key codes to the codes shared with Clean.
This procedure has been filtered from TranslateKeyboardMessage.
If the keycode could not be translated, zero is returned.
*/
int CheckVirtualKeyCode (int keycode)
{
int c = 0;
/* printf("CheckVirtualKeyCode\n");*/
switch (keycode)
{
case GDK_Up:
c = WinUpKey;
break;
case GDK_Down:
c = WinDownKey;
break;
case GDK_Left:
c = WinLeftKey;
break;
case GDK_Right:
c = WinRightKey;
break;
case GDK_Page_Up:
c = WinPgUpKey;
break;
case GDK_Page_Down:
c = WinPgDownKey;
break;
case GDK_End:
c = WinEndKey;
break;
case GDK_Begin:
c = WinBeginKey;
break;
case GDK_BackSpace:
c = WinBackSpKey;
break;
case GDK_Delete:
c = WinDelKey;
break;
case GDK_Tab:
c = WinTabKey;
break;
case GDK_Return:
c = WinReturnKey;
break;
case GDK_Escape:
c = WinEscapeKey;
break;
case GDK_Help:
c = WinHelpKey;
break;
case GDK_F1:
c = WinF1Key;
break;
case GDK_F2:
c = WinF2Key;
break;
case GDK_F3:
c = WinF3Key;
break;
case GDK_F4:
c = WinF4Key;
break;
case GDK_F5:
c = WinF5Key;
break;
case GDK_F6:
c = WinF6Key;
break;
case GDK_F7:
c = WinF7Key;
break;
case GDK_F8:
c = WinF8Key;
break;
case GDK_F9:
c = WinF9Key;
break;
case GDK_F10:
c = WinF10Key;
break;
case GDK_F11:
c = WinF11Key;
break;
case GDK_F12:
c = WinF12Key;
break;
}
return c;
}
static gboolean TimerCallback (gpointer data)
{
/*printf("TimerCallback\n");*/
SendMessage0ToClean (CcWmIDLETIMER);
return TRUE;
}
void HandleCleanRequest (CrossCallInfo * pcci)
{
/*printf("HandleCleanRequest: Message = %d\n", pcci->mess);*/
switch (pcci->mess)
{
case CcRqDOMESSAGE: /* idleTimerOn, sleeptime; no result. */
{
gboolean gIdleTimerOn = (gboolean) pcci->p1;
gint interval = (gint) pcci->p2;
/*printf("CcRqDOMESSAGE\n");*/
if (gIdleTimerOn)
{
GSource *source = g_timeout_source_new(interval);
g_source_set_callback(source,TimerCallback,NULL,NULL);
g_source_attach(source,NULL);
gtk_main_iteration();
g_source_destroy(source);
}
else
{
gtk_main_iteration();
}
MakeReturn0Cci (pcci);
}
break;
default:
{
CrossCallProcedure action;
action = FindCrossCallEntry (gCrossCallProcedureTable, pcci->mess);
/*printf("Handle Request for action logged for: %d\n", pcci->mess);*/
if (action == NULL)
{ /* Cross call request code not installed. */
/*printf("\'HandleCleanRequest\' got uninstalled CcRq request code from Haskell: %d\n", pcci->mess);*/
exit(1);
}
else
{ /* Cross call request code found. Apply it to pcci. */
/*printf("Action Requested: %d\n", pcci->mess);*/
action (pcci);
}
}
}
KickCleanThread (pcci);
} /* HandleCleanRequest */
void InitGTK()
{
static gboolean gInitiated = FALSE;
/*printf("InitGTK\n"); */
if (!gInitiated)
{
gtk_set_locale();
gtk_init(&global_argc,&global_argv);
gInitiated = TRUE;
};
} /* InitGTK */
static gpointer OsThreadFunction (gpointer param);
OS WinStartOsThread(OS os)
{
pthread_attr_t attr;
/* rprintf ("WinStartOSThread\n"); */
InitGTK();
/* The cross call procedure table is set to the empty table. */
gCrossCallProcedureTable = EmptyCrossCallProcedureTable ();
/* rprintf ("Created CC Table\n"); */
pthread_mutex_init(&gCleanMutex,NULL);
pthread_mutex_lock(&gCleanMutex);
pthread_mutex_init(&gOSMutex,NULL);
pthread_mutex_lock(&gOSMutex);
gOSThreadIsRunning = TRUE;
/* rprintf ("OS is running.\n"); */
pthread_attr_init(&attr);
pthread_create(&gOSThread,&attr,OsThreadFunction,NULL);
pthread_attr_destroy(&attr);
/* rprintf ("Exiting initializer.\n"); */
return os;
} /* WinStartOsThread */
OS WinKillOsThread (OS os)
{
/* printf("WinKillOsThread\n"); */
if (gOSThread != FALSE)
{
gOSThreadIsRunning = FALSE;
gOSThread = FALSE;
DeleteCursors();
if (gCrossCallProcedureTable)
FreeCrossCallProcedureTable (gCrossCallProcedureTable);
}
return os;
} /*WinKillOsThread*/
#define PRINTCROSSCALLS
void WinKickOsThread (int64_t imess,
int64_t ip1, int64_t ip2, int64_t ip3,
int64_t ip4, int64_t ip5, int64_t ip6,
OS ios,
int64_t *omess,
int64_t *op1, int64_t *op2, int64_t *op3,
int64_t *op4, int64_t *op5, int64_t *op6,
OS *oos
)
{
#ifdef PRINTCROSSCALLS
rprintf("WinKickOsThread (");
printCCI (&gCci);
rprintf(")\n");
#endif
gCci.mess = imess;
gCci.p1 = ip1;
gCci.p2 = ip2;
gCci.p3 = ip3;
gCci.p4 = ip4;
gCci.p5 = ip5;
gCci.p6 = ip6;
if (gOSThread != FALSE)
{
#ifdef PRINTCROSSCALLS
rprintf("Unlocking Clean mutex.\n");
#endif
pthread_mutex_unlock(&gCleanMutex);
#ifdef PRINTCROSSCALLS
rprintf("Locking OS mutex.\n");
#endif
pthread_mutex_lock(&gOSMutex);
#ifdef PRINTCROSSCALLS
rprintf("OS mutex locked.\n");
#endif
*omess = gCci.mess;
*op1 = gCci.p1;
*op2 = gCci.p2;
*op3 = gCci.p3;
*op4 = gCci.p4;
*op5 = gCci.p5;
*op6 = gCci.p6;
*oos = ios;
printf("Data: %p, %p, %p, %p, %p, %p, %p\n",
gCci.p1, gCci.p2, gCci.p3, gCci.p4,
gCci.p5, gCci.p6, ios);
}
else
{
*omess = CcWASQUIT;
*op1 = 0;
*op2 = 0;
*op3 = 0;
*op4 = 0;
*op5 = 0;
*op6 = 0;
*oos = ios;
}
} /* WinKickOsThread */
#ifdef PRINTCROSSCALLS
static CrossCallInfo osstack[10];
static CrossCallInfo clstack[10];
static int ossp = -1;
static int clsp = -1;
#endif
void KickCleanThread (CrossCallInfo * pcci)
{
/* rprintf("KickCleanThread\n"); */
#ifdef PRINTCROSSCALLS
if (ossp == -1)
{
for (ossp = 0; ossp < 10; ossp++)
{
osstack[ossp].mess = -1;
}
ossp = 1;
osstack[ossp].mess = -2;
}
if (clsp == -1)
{
for (clsp = 0; clsp < 10; clsp++)
{
clstack[clsp].mess = -1;
}
clsp = 1;
clstack[clsp].mess = -2;
}
#endif
if (pcci != &gCci)
{
gCci = *pcci;
}
#ifdef PRINTCROSSCALLS
rprintf ("KCT: started\n");
if (gCci.mess < 20)
{
rprintf (" -- %d --> OS returning <", clsp + ossp - 2);
printCCI (&gCci);
rprintf ("> from <");
printCCI (&(clstack[clsp]));
rprintf (">\n");
clsp--;
}
else
{
ossp++;
osstack[ossp] = gCci;
rprintf (" -- %d --> OS calling with <", clsp + ossp - 2);
printCCI (&gCci);
rprintf (">\n");
}
rprintf ("KCT: setting event\n");
#endif
pthread_mutex_unlock(&gOSMutex);
#ifdef PRINTCROSSCALLS
rprintf ("KCT: starting wait\n");
#endif
pthread_mutex_lock(&gCleanMutex);
#ifdef PRINTCROSSCALLS
rprintf ("KCT: wait done.\n");
#endif
if (pcci != &gCci)
*pcci = gCci;
#ifdef PRINTCROSSCALLS
if (gCci.mess < 20)
{
rprintf (" <-- %d -- Clean returning <", clsp + ossp - 2);
printCCI (&gCci);
rprintf ("> from <");
printCCI (&(osstack[ossp]));
rprintf (">\n");
ossp--;
}
else
{
clsp++;
clstack[clsp] = gCci;
rprintf (" <-- %d -- Clean calling with <", clsp + ossp - 2);
printCCI (&gCci);
rprintf (">\n");
}
#endif
} /* KickCleanThread */
void SendMessageToClean (int64_t mess, int64_t p1, int64_t p2, int64_t p3, int64_t p4, int64_t p5, int64_t p6)
{
/* printf("SendMessageToClean -- Message: %d\n", mess); */
gCci.mess = mess;
gCci.p1 = p1;
gCci.p2 = p2;
gCci.p3 = p3;
gCci.p4 = p4;
gCci.p5 = p5;
gCci.p6 = p6;
KickCleanThread (&gCci);
while (!IsReturnCci (&gCci))
{
HandleCleanRequest (&gCci);
}
}
CrossCallInfo *MakeReturn0Cci (CrossCallInfo * pcci)
{
pcci->mess = CcRETURN0;
return pcci;
}
CrossCallInfo *MakeReturn1Cci (CrossCallInfo * pcci, int64_t v1)
{
pcci->mess = CcRETURN1;
pcci->p1 = v1;
return pcci;
}
CrossCallInfo *MakeReturn2Cci (CrossCallInfo * pcci, int64_t v1, int64_t v2)
{
pcci->mess = CcRETURN2;
pcci->p1 = v1;
pcci->p2 = v2;
return pcci;
}
CrossCallInfo *MakeReturn3Cci (CrossCallInfo * pcci, int64_t v1, int64_t v2, int64_t v3)
{
pcci->mess = CcRETURN3;
pcci->p1 = v1;
pcci->p2 = v2;
pcci->p3 = v3;
return pcci;
}
CrossCallInfo *MakeReturn4Cci (CrossCallInfo * pcci, int64_t v1, int64_t v2, int64_t v3, int64_t v4)
{
pcci->mess = CcRETURN4;
pcci->p1 = v1;
pcci->p2 = v2;
pcci->p3 = v3;
pcci->p4 = v4;
return pcci;
}
CrossCallInfo *MakeReturn5Cci (CrossCallInfo * pcci, int64_t v1, int64_t v2, int64_t v3, int64_t v4, int64_t v5)
{
pcci->mess = CcRETURN5;
pcci->p1 = v1;
pcci->p2 = v2;
pcci->p3 = v3;
pcci->p4 = v4;
pcci->p5 = v5;
return pcci;
}
CrossCallInfo *MakeReturn6Cci (CrossCallInfo * pcci, int64_t v1, int64_t v2, int64_t v3, int64_t v4, int64_t v5, int64_t v6)
{
pcci->mess = CcRETURN6;
pcci->p1 = v1;
pcci->p2 = v2;
pcci->p3 = v3;
pcci->p4 = v4;
pcci->p5 = v5;
pcci->p6 = v6;
return pcci;
}
gboolean IsReturnCci (CrossCallInfo * pcci)
{
/* printf("Checking message %d: ", pcci->mess);*/
if (pcci->mess >= CcRETURNmin && pcci->mess <= CcRETURNmax)
{
return TRUE;
}
return FALSE;
}
static gpointer OsThreadFunction (gpointer param)
{
/* printf("OsThreadFunction\n"); */
gTooltip = gtk_tooltips_new();
pthread_mutex_lock(&gCleanMutex);
while (gOSThreadIsRunning)
{
HandleCleanRequest (&gCci);
}
pthread_mutex_unlock(&gCleanMutex);
pthread_mutex_destroy(&gOSMutex);
pthread_mutex_destroy(&gCleanMutex);
return NULL;
} /* OsThreadFunction */
void WinInitOs (Bool* ok, OS* os)
{
/* printf("WinInitOs\n"); */
if (gEventsInited)
{
*ok = FALSE;
rprintf ("WIO: *ok = FALSE\n");
}
else
{
*ok = TRUE;
gEventsInited = TRUE;
rprintf ("WIO: *ok = TRUE\n");
}
*os = 54321;
} /* WinInitOs */
Bool WinCloseOs (OS os)
{
if (gEventsInited)
{
rprintf ("WCO: return TRUE\n");
gEventsInited = FALSE;
return TRUE;
}
else
{
rprintf ("WCO: return FALSE\n");
return FALSE;
}
} /* WinCloseOs */
void WinCallProcess (char* commandline, char* env, char* dir, char* in,
char* out, char* err, OS ios, Bool* success, int* exitcode,
OS* oos)
{
printf("WinCallProcess --> Not Implemented\n");
*oos = ios;
}
void WinLaunchApp2 (CLEAN_STRING commandline, CLEAN_STRING pathname,
BOOL console, OS ios, Bool *success, OS *oos)
{
pid_t pi;
BOOL fsuccess;
char path[_MAX_PATH];
char *cl, *exname, *thepath;
int i;
int error;
rprintf ("WLA: starting...\n");
*success = FALSE;
*oos = ios;
rprintf ("WLA: step 2.\n");
exname = cstring(pathname);
cl = cstring (commandline);
strcpy (path, cl);
for (i = strlen (path); path[i] != '\\' && i >= 0; i--)
{
path[i] = 0;
}
if (i == 0)
{
thepath = NULL;
}
else
{ /* path[i] = '\"'; */
thepath = path + 1;
}
rprintf ("WLA: step 2a: directory = <%s>\n", thepath);
rprintf ("WLA: step 3: calling process \"%s\".\n", cl);
pi = fork();
if (pi == 0)
{
/* I'm a child -- launch the desired program. */
execlp(exname, cl);
} else if (pi == -1) {
/* Error condition */
error = errno;
rprintf ("WLA: failure %d\n", error);
fsuccess = FALSE;
} else {
rprintf ("WLA: success\n");
fsuccess = TRUE;
}
rprintf ("WLA: step 5: returning\n");
*success = fsuccess;
*oos = ios;
rprintf ("WLA: done...\n");
}
void WinLaunchApp (CLEAN_STRING commandline, BOOL console, OS ios,
Bool *success, OS *oos)
{
printf("WinLaunchApp --> Not implemented\n");
*oos = ios;
}
char* WinGetAppPath (void)
{
int idx, length;
char *path = rmalloc(261);
char *search = rmalloc(261);
pid_t pid = getpid();
/* printf("WinGetAppPath\n"); */
/*
* NOTE: LINUX Only
*
* Path to current executable is found by:
*
* /proc/<pid>/exe (symlink to actual executable
*
* stat this symlink to get the path
*/
sprintf(search, "/proc/%d/exe", pid);
length = readlink(search, path, 261);
path[length] = 0x00;
for (idx = length - 1;
path[idx] != '/' && path[idx] != '\\' &&
path[idx] != ':';
idx--)
;
path[idx + 1] = 0;
/* printf("App Path: %s\n", path); */
return path;
/* relying on the calling clean function to de-allocate path. */
} /* WinGetAppPath */
CLEAN_STRING WinGetModulePath (void)
{
char path[255 + 1];
printf("WinGetModulePath -- Not Implemented.\n");
return cleanstring(WinGetAppPath());
}
void WinFileModifiedDate (CLEAN_STRING name, gboolean* exists, int *yy,
int *mm, int *dd, int *h, int *m, int *s)
{
printf("WinFileModifiedDate --> Not implemented.\n");
*exists = FALSE;
*yy = 0;
*mm = 0;
*dd = 0;
*h = 0;
*m = 0;
*s = 0;
}
gboolean WinFileExists (CLEAN_STRING string)
{
printf("WinFileExists --> Not implemented\n");
return FALSE;
}
|