aboutsummaryrefslogtreecommitdiff
path: root/libexe/platform-mac.c
blob: aa079082de8f8ef8bdf7bb5c78a2aa41acec4425 (plain) (blame)
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
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962

///////////////

#include <IOKit/IOKitLib.h>
#include <IOKit/network/IOEthernetInterface.h>
#include <IOKit/network/IONetworkInterface.h>
#include <IOKit/network/IOEthernetController.h>

///////////////////////

int
getMOUSE1(  )
{

	return ( 0 );

}



int
getTAB(  )
{

	return ( 0 );

}



int
getCOMMAND(  )
{

	int             vv = 0, vv2;

#ifdef NOLIB

	int             k = 55;		// Escape = 53

	unsigned char   km[16];

//  GetKeys((unsigned long*)km);

	GetKeys( ( long * ) km );

//  if (valuator[MOUSE2]!=0)

	{

		vv = ( ( km[k >> 3] >> ( k & 7 ) ) & 1 );

//  if ((vv==0)&&(valuator[MOUSE1]==1))

//  valuator[MOUSE1]=2;  

//  if ((vv==1)&&(valuator[MOUSE1]==0))

//  valuator[MOUSE1]=1;  

//  if (valuator[MOUSE1]) DRAW_STATUS("got mouse1");

//if (vv) DRAW_STATUS("command");



	}

#endif

	return ( vv );

//  return(0);

}



int
getCTRL(  )
{

	int             vv = 0, vv2;

#ifdef NOLIB

	int             k = 59;		// Escape = 53

	unsigned char   km[16];

//  GetKeys((unsigned long*)km);

	GetKeys( ( long * ) km );

//  if (valuator[MOUSE2]!=0)

	{

		vv = ( ( km[k >> 3] >> ( k & 7 ) ) & 1 );

//  if ((vv==0)&&(valuator[MOUSE1]==1))

//  valuator[MOUSE1]=2;  

//  if ((vv==1)&&(valuator[MOUSE1]==0))

//  valuator[MOUSE1]=1;  

//  if (valuator[MOUSE1]) DRAW_STATUS("got mouse1");

//if (vv) DRAW_STATUS("command");



	}

#endif

	return ( vv );

//  return(0);

}






int
getESCAPE(  )
{
	int             vvv = 0;

	return ( valuator[ESCKEY] );

}



int
getSHIFT( void )
{
	int             tmp = 0;

	return ( tmp );



}



HWND
GetFocus( void )
{

	return ( 0 );

}



void
SetCapture( long junk )
{

	//fprintf(stderr, "SetCapture(): NOT YET IMPLEMENTED\n");

}



#define BOOL int

#define LPPOINT VERT *



BOOL
SetCursorPos( int x, int y )
{

	//fprintf(stderr, "SetCursorPos(): NOT YET IMPLEMENTED\n");

//    valuator[MOUSEX]=x;

	//   valuator[MOUSEY]=y;



}









BOOL
GetCursorPos( LPPOINT p )
{

	p->x = valuator[MOUSEX];

	p->y = valuator[MOUSEY];

}



// GET HANDLE TO WINDOW FOR TIMERS -- DOES NOTHING ON SGI

HWND
GetForegroundWindow(  )
{

	return ( 0 );

}



int
filechooserSV( const char *title, const char *comment, char *filename, int filenamemax, char *filter, int filtermax )
{

	return 0;

}

int
filechooser( const char *title, const char *comment, char *filename, int filenamemax, char *filter, int filtermax )
{

	int             ret = -1;

#ifdef NOLIB

	NavDialogOptions dialogOptions;

//    NavEventUPP         eventProc = NewNavEventProc(myEventProc);

//    NavObjectFilterUPP  filterProc = NewNavObjectFilterProc(myFilterProc);

	NavTypeListHandle typeList;

	NavReplyRecord  reply;

	OSErr           anErr = noErr;



	//  Specify default options for dialog box

	anErr = NavGetDefaultDialogOptions( &dialogOptions );



	if( anErr == noErr )

	{

		AEDesc          defaultLocation;

		//  Adjust the options to fit our needs

		//  Set default location option

		dialogOptions.dialogOptionFlags |= kNavSelectDefaultLocation;

//          dialogOptions.dialogOptionFlags |= kNavSelectDefaultLocation;

		//  Clear preview option

		dialogOptions.dialogOptionFlags ^= kNavAllowPreviews;



		// Get 'open' resource. A nil handle being returned is OK,

		// this simply means no automatic file filtering.

		typeList = ( NavTypeListHandle ) GetResource( 'open', 128 );



		// Call NavChooseFile() with specified options and

		// declare our app-defined functions and type list

//        anErr = NavChooseFile (nil, &reply, &dialogOptions, eventProc, nil, filterProc, typeList, nil);

		anErr = NavChooseFile( nil, &reply, &dialogOptions, nil, nil, nil, typeList, nil );



		if( anErr == noErr && reply.validRecord )

		{

			AEKeyword       theKeyword;

			DescType        actualType;

			Size            actualSize;

			FSSpec          documentFSSpec;



			// Get a pointer to selected file

			anErr = AEGetNthPtr( &( reply.selection ), 1, typeFSS, &theKeyword, &actualType, &documentFSSpec, sizeof( documentFSSpec ), &actualSize );

			if( anErr == noErr )

			{

				char           *pfilter;

				int             lenstr = ( int ) ( documentFSSpec.name[0] );

				int             i = 1;

				for( ; i <= lenstr; i++ )

				{

					filename[i - 1] = documentFSSpec.name[i];

				}

				filename[lenstr] = '\0';

				if( filter[0] == '*' && filter[1] == '.' )

					pfilter = filter + 2;

				else

					pfilter = filter;

				if( strstr( filename, pfilter ) )

					ret = 0;

				else

					filename[0] = '\0';

			}



			//  Dispose of NavReplyRecord, resources, descriptors

			anErr = NavDisposeReply( &reply );

		}



		if( typeList != NULL )

		{

			ReleaseResource( ( Handle ) typeList );

		}



	}



#endif

//    DisposeRoutineDescriptor(eventProc);

//    DisposeRoutineDescriptor(filterProc);

//if (ret==0) printf("DEBUG: gonna open %s\n", filename);

//else printf("DEBUG: not opening anything\n");



	return ( ret );

}



/* NAVIGATION SERVICE EXAMPLE */

/*

This function allows the user to choose a single file, such as a preferences file, for an action other than opening. The NavChooseFile function is similar to NavGetFile, but is limited to selecting a single file. 



OSErr MyOpenDocument(const FSSpecPtr defaultLocationfssPtr)

{

    NavDialogOptions    dialogOptions;

    AEDesc              defaultLocation;

    NavEventUPP         eventProc = NewNavEventProc(myEventProc);

    NavObjectFilterUPP  filterProc = 

                        NewNavObjectFilterProc(myFilterProc);

    OSErr               anErr = noErr;

    

    //  Specify default options for dialog box

    anErr = NavGetDefaultDialogOptions(&dialogOptions);

    if (anErr == noErr)

    {

        //  Adjust the options to fit our needs

        //  Set default location option

        dialogOptions.dialogOptionFlags |= kNavSelectDefaultLocation;

        //  Clear preview option

        dialogOptions.dialogOptionFlags ^= kNavAllowPreviews;

        

        // make descriptor for default location

        anErr = AECreateDesc(typeFSS, defaultLocationfssPtr,

                             sizeof(*defaultLocationfssPtr),

                             &defaultLocation );

        if (anErr == noErr)

        {

            // Get 'open' resource. A nil handle being returned is OK,

            // this simply means no automatic file filtering.

            NavTypeListHandle typeList = (NavTypeListHandle)GetResource(

                                        'open', 128);

            NavReplyRecord reply;

            

            // Call NavGetFile() with specified options and

            // declare our app-defined functions and type list

            anErr = NavGetFile (&defaultLocation, &reply, &dialogOptions,

                                eventProc, nil, filterProc,

                                typeList, nil);

            if (anErr == noErr && reply.validRecord)

            {

                //  Deal with multiple file selection

                long    count;

                

                anErr = AECountItems(&(reply.selection), &count);

                // Set up index for file list

                if (anErr == noErr)

                {

                    longindex;

                    

                    for (index = 1; index <= count; index++)

                    {

                        AEKeyword   theKeyword;

                        DescType    actualType;

                        Size        actualSize;

                        FSSpec      documentFSSpec;

                        

                        // Get a pointer to selected file

                        anErr = AEGetNthPtr(&(reply.selection), index,

                                            typeFSS, &theKeyword,

                                            &actualType,&documentFSSpec,

                                            sizeof(documentFSSpec),

                                            &actualSize);

                        if (anErr == noErr)

                        {

                            anErr = DoOpenFile(&documentFSSpec);

                        }

                    }

                }

                //  Dispose of NavReplyRecord, resources, descriptors

                anErr = NavDisposeReply(&reply);

            }

            if (typeList != NULL)

            {

                ReleaseResource( (Handle)typeList);

            }

            (void) AEDisposeDesc(&defaultLocation);

        }

    }

    DisposeRoutineDescriptor(eventProc);

    DisposeRoutineDescriptor(filterProc);

    return anErr;

}

*/


///////////////// vald|10Jun2010 stuf to replace ...InetInterface deprecated in MacOS10.5 sdk  ///////////////////////
//////////////////////////////// used for retrieving MAC address ////////////////////////////////////////////////////

//static kern_return_t FindEthernetInterfaces(io_iterator_t *matchingServices);
//static kern_return_t GetMACAddress(io_iterator_t intfIterator, UInt8 *MACAddress, UInt8 bufferSize);

// Returns an iterator containing the primary (built-in) Ethernet interface. The caller is responsible for
// releasing the iterator after the caller is done with it.
static kern_return_t FindEthernetInterfaces(io_iterator_t *matchingServices)
{
    kern_return_t		kernResult; 
    CFMutableDictionaryRef	matchingDict;
    CFMutableDictionaryRef	propertyMatchDict;
    
    // Ethernet interfaces are instances of class kIOEthernetInterfaceClass. 
    // IOServiceMatching is a convenience function to create a dictionary with the key kIOProviderClassKey and 
    // the specified value.
    matchingDict = IOServiceMatching(kIOEthernetInterfaceClass);

    // Note that another option here would be:
    // matchingDict = IOBSDMatching("en0");
        
    if (NULL == matchingDict) {
        printf("IOServiceMatching returned a NULL dictionary.\n");
    }
    else {
        // Each IONetworkInterface object has a Boolean property with the key kIOPrimaryInterface. Only the
        // primary (built-in) interface has this property set to TRUE.
        
        // IOServiceGetMatchingServices uses the default matching criteria defined by IOService. This considers
        // only the following properties plus any family-specific matching in this order of precedence 
        // (see IOService::passiveMatch):
        //
        // kIOProviderClassKey (IOServiceMatching)
        // kIONameMatchKey (IOServiceNameMatching)
        // kIOPropertyMatchKey
        // kIOPathMatchKey
        // kIOMatchedServiceCountKey
        // family-specific matching
        // kIOBSDNameKey (IOBSDNameMatching)
        // kIOLocationMatchKey
        
        // The IONetworkingFamily does not define any family-specific matching. This means that in            
        // order to have IOServiceGetMatchingServices consider the kIOPrimaryInterface property, we must
        // add that property to a separate dictionary and then add that to our matching dictionary
        // specifying kIOPropertyMatchKey.
            
        propertyMatchDict = CFDictionaryCreateMutable(kCFAllocatorDefault, 0,
													  &kCFTypeDictionaryKeyCallBacks,
													  &kCFTypeDictionaryValueCallBacks);
    
        if (NULL == propertyMatchDict) {
            printf("CFDictionaryCreateMutable returned a NULL dictionary.\n");
        }
        else {
            // Set the value in the dictionary of the property with the given key, or add the key 
            // to the dictionary if it doesn't exist. This call retains the value object passed in.
            CFDictionarySetValue(propertyMatchDict, CFSTR(kIOPrimaryInterface), kCFBooleanTrue); 
            
            // Now add the dictionary containing the matching value for kIOPrimaryInterface to our main
            // matching dictionary. This call will retain propertyMatchDict, so we can release our reference 
            // on propertyMatchDict after adding it to matchingDict.
            CFDictionarySetValue(matchingDict, CFSTR(kIOPropertyMatchKey), propertyMatchDict);
            CFRelease(propertyMatchDict);
        }
    }
    
    // IOServiceGetMatchingServices retains the returned iterator, so release the iterator when we're done with it.
    // IOServiceGetMatchingServices also consumes a reference on the matching dictionary so we don't need to release
    // the dictionary explicitly.
    kernResult = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, matchingServices);    
    if (KERN_SUCCESS != kernResult) {
        printf("IOServiceGetMatchingServices returned 0x%08x\n", kernResult);
    }
        
    return kernResult;
}
    
// Given an iterator across a set of Ethernet interfaces, return the MAC address of the last one.
// If no interfaces are found the MAC address is set to an empty string.
// In this sample the iterator should contain just the primary interface.
static kern_return_t GetMACAddress(io_iterator_t intfIterator, UInt8 *MACAddress, UInt8 bufferSize)
{
    io_object_t		intfService;
    io_object_t		controllerService;
    kern_return_t	kernResult = KERN_FAILURE;
    
    // Make sure the caller provided enough buffer space. Protect against buffer overflow problems.
	if (bufferSize < kIOEthernetAddressSize) {
		return kernResult;
	}
	
	// Initialize the returned address
    bzero(MACAddress, bufferSize);
    
    // IOIteratorNext retains the returned object, so release it when we're done with it.
    while (intfService = IOIteratorNext(intfIterator))
    {
        CFTypeRef	MACAddressAsCFData;        

        // IONetworkControllers can't be found directly by the IOServiceGetMatchingServices call, 
        // since they are hardware nubs and do not participate in driver matching. In other words,
        // registerService() is never called on them. So we've found the IONetworkInterface and will 
        // get its parent controller by asking for it specifically.
        
        // IORegistryEntryGetParentEntry retains the returned object, so release it when we're done with it.
        kernResult = IORegistryEntryGetParentEntry(intfService,
												   kIOServicePlane,
												   &controllerService);
		
        if (KERN_SUCCESS != kernResult) {
            printf("IORegistryEntryGetParentEntry returned 0x%08x\n", kernResult);
        }
        else {
            // Retrieve the MAC address property from the I/O Registry in the form of a CFData
            MACAddressAsCFData = IORegistryEntryCreateCFProperty(controllerService,
																 CFSTR(kIOMACAddress),
																 kCFAllocatorDefault,
																 0);
            if (MACAddressAsCFData) {
                //CFShow(MACAddressAsCFData); // for display purposes only; output goes to stderr
                
                // Get the raw bytes of the MAC address from the CFData
                CFDataGetBytes(MACAddressAsCFData, CFRangeMake(0, kIOEthernetAddressSize), MACAddress);
                CFRelease(MACAddressAsCFData);
            }
                
            // Done with the parent Ethernet controller object so we release it.
            (void) IOObjectRelease(controllerService);
        }
        
        // Done with the Ethernet interface object so we release it.
        (void) IOObjectRelease(intfService);
    }
        
    return kernResult;
}