This repository was archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 601
Expand file tree
/
Copy pathappshell_extensions_mac.mm
More file actions
957 lines (800 loc) · 32.5 KB
/
appshell_extensions_mac.mm
File metadata and controls
957 lines (800 loc) · 32.5 KB
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
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
/*
* Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
#include "appshell_extensions_platform.h"
#include "appshell_extensions.h"
#include "native_menu_model.h"
#include <Cocoa/Cocoa.h>
extern ExtensionString gPendingFilesToOpen;
@interface ChromeWindowsTerminatedObserver : NSObject
- (void)appTerminated:(NSNotification *)note;
- (void)timeoutTimer:(NSTimer*)timer;
@end
// App ID for either Chrome or Chrome Canary (commented out)
NSString *const appId = @"com.google.Chrome";
//NSString *const appId = @"com.google.Chrome.canary";
///////////////////////////////////////////////////////////////////////////////
// LiveBrowserMgrMac
class LiveBrowserMgrMac
{
public:
static LiveBrowserMgrMac* GetInstance();
static void Shutdown();
bool IsChromeRunning();
void CheckForChromeRunning();
void CheckForChromeRunningTimeout();
void CloseLiveBrowserKillTimers();
void CloseLiveBrowserFireCallback(int valToSend);
ChromeWindowsTerminatedObserver* GetTerminateObserver() { return m_chromeTerminateObserver; }
CefRefPtr<CefProcessMessage> GetCloseCallback() { return m_closeLiveBrowserCallback; }
void SetCloseTimeoutTimer(NSTimer* closeLiveBrowserTimeoutTimer)
{ m_closeLiveBrowserTimeoutTimer = closeLiveBrowserTimeoutTimer; }
void SetTerminateObserver(ChromeWindowsTerminatedObserver* chromeTerminateObserver)
{ m_chromeTerminateObserver = chromeTerminateObserver; }
void SetCloseCallback(CefRefPtr<CefProcessMessage> response)
{ m_closeLiveBrowserCallback = response; }
void SetBrowser(CefRefPtr<CefBrowser> browser)
{ m_browser = browser; }
private:
// private so this class cannot be instantiated externally
LiveBrowserMgrMac();
virtual ~LiveBrowserMgrMac();
NSTimer* m_closeLiveBrowserTimeoutTimer;
CefRefPtr<CefProcessMessage> m_closeLiveBrowserCallback;
CefRefPtr<CefBrowser> m_browser;
ChromeWindowsTerminatedObserver* m_chromeTerminateObserver;
static LiveBrowserMgrMac* s_instance;
};
LiveBrowserMgrMac::LiveBrowserMgrMac()
: m_closeLiveBrowserTimeoutTimer(nil)
, m_chromeTerminateObserver(nil)
{
}
LiveBrowserMgrMac::~LiveBrowserMgrMac()
{
if (s_instance)
s_instance->CloseLiveBrowserKillTimers();
}
LiveBrowserMgrMac* LiveBrowserMgrMac::GetInstance()
{
if (!s_instance)
s_instance = new LiveBrowserMgrMac();
return s_instance;
}
void LiveBrowserMgrMac::Shutdown()
{
delete s_instance;
s_instance = NULL;
}
bool LiveBrowserMgrMac::IsChromeRunning()
{
NSArray *apps = [NSRunningApplication runningApplicationsWithBundleIdentifier:appId];
for (NSUInteger i = 0; i < apps.count; i++) {
NSRunningApplication* curApp = [apps objectAtIndex:i];
if( curApp && !curApp.terminated ) {
return true;
}
}
return false;
}
void LiveBrowserMgrMac::CloseLiveBrowserKillTimers()
{
if (m_closeLiveBrowserTimeoutTimer) {
[m_closeLiveBrowserTimeoutTimer invalidate];
[m_closeLiveBrowserTimeoutTimer release];
m_closeLiveBrowserTimeoutTimer = nil;
}
if (m_chromeTerminateObserver) {
[[[NSWorkspace sharedWorkspace] notificationCenter] removeObserver:m_chromeTerminateObserver];
[m_chromeTerminateObserver release];
m_chromeTerminateObserver = nil;
}
}
void LiveBrowserMgrMac::CloseLiveBrowserFireCallback(int valToSend)
{
CefRefPtr<CefListValue> responseArgs = m_closeLiveBrowserCallback->GetArgumentList();
// kill the timers
CloseLiveBrowserKillTimers();
// Set common response args (callbackId and error)
responseArgs->SetInt(1, valToSend);
// Send response
m_browser->SendProcessMessage(PID_RENDERER, m_closeLiveBrowserCallback);
// Clear state
m_closeLiveBrowserCallback = NULL;
m_browser = NULL;
}
void LiveBrowserMgrMac::CheckForChromeRunning()
{
if (IsChromeRunning())
return;
CloseLiveBrowserFireCallback(NO_ERROR);
}
void LiveBrowserMgrMac::CheckForChromeRunningTimeout()
{
int retVal = (IsChromeRunning() ? ERR_UNKNOWN : NO_ERROR);
//notify back to the app
CloseLiveBrowserFireCallback(retVal);
}
LiveBrowserMgrMac* LiveBrowserMgrMac::s_instance = NULL;
// Forward declarations for functions defined later in this file
void NSArrayToCefList(NSArray* array, CefRefPtr<CefListValue>& list);
int32 ConvertNSErrorCode(NSError* error, bool isReading);
int32 OpenLiveBrowser(ExtensionString argURL, bool enableRemoteDebugging)
{
// Parse the arguments
NSString *urlString = [NSString stringWithUTF8String:argURL.c_str()];
NSURL *url = [NSURL URLWithString:urlString];
// Find instances of the Browser
NSArray *apps = [NSRunningApplication runningApplicationsWithBundleIdentifier:appId];
NSWorkspace * ws = [NSWorkspace sharedWorkspace];
NSUInteger launchOptions = NSWorkspaceLaunchDefault | NSWorkspaceLaunchWithoutActivation;
// Launch Browser
if(apps.count == 0) {
// Create the configuration dictionary for launching with custom parameters.
NSArray *parameters = nil;
if (enableRemoteDebugging) {
parameters = [NSArray arrayWithObjects:
@"--remote-debugging-port=9222",
@"--allow-file-access-from-files",
urlString,
nil];
}
else {
parameters = [NSArray arrayWithObjects:
@"--allow-file-access-from-files",
urlString,
nil];
}
NSMutableDictionary* appConfig = [NSDictionary dictionaryWithObject:parameters forKey:NSWorkspaceLaunchConfigurationArguments];
NSURL *appURL = [ws URLForApplicationWithBundleIdentifier:appId];
if( !appURL ) {
return ERR_NOT_FOUND; //Chrome not installed
}
NSError *error = nil;
if( ![ws launchApplicationAtURL:appURL options:launchOptions configuration:appConfig error:&error] ) {
return ERR_UNKNOWN;
}
return NO_ERROR;
}
// Tell the Browser to load the url
[ws openURLs:[NSArray arrayWithObject:url] withAppBundleIdentifier:appId options:launchOptions additionalEventParamDescriptor:nil launchIdentifiers:nil];
return NO_ERROR;
}
void CloseLiveBrowser(CefRefPtr<CefBrowser> browser, CefRefPtr<CefProcessMessage> response)
{
LiveBrowserMgrMac* liveBrowserMgr = LiveBrowserMgrMac::GetInstance();
if (liveBrowserMgr->GetCloseCallback() != NULL) {
// We can only handle a single async callback at a time. If there is already one that hasn't fired then
// we kill it now and get ready for the next.
liveBrowserMgr->CloseLiveBrowserFireCallback(ERR_UNKNOWN);
}
liveBrowserMgr->SetBrowser(browser);
liveBrowserMgr->SetCloseCallback(response);
// Find instances of the Browser and terminate them
NSArray *apps = [NSRunningApplication runningApplicationsWithBundleIdentifier:appId];
if (apps.count == 0) {
// No instances of Chrome found. Fire callback immediately.
liveBrowserMgr->CloseLiveBrowserFireCallback(NO_ERROR);
return;
} else if (apps.count > 0 && !LiveBrowserMgrMac::GetInstance()->GetTerminateObserver()) {
//register an observer to watch for the app terminations
LiveBrowserMgrMac::GetInstance()->SetTerminateObserver([[ChromeWindowsTerminatedObserver alloc] init]);
[[[NSWorkspace sharedWorkspace] notificationCenter]
addObserver:LiveBrowserMgrMac::GetInstance()->GetTerminateObserver()
selector:@selector(appTerminated:)
name:NSWorkspaceDidTerminateApplicationNotification
object:nil
];
}
// Iterate over open browser intances and terminate
for (NSUInteger i = 0; i < apps.count; i++) {
NSRunningApplication* curApp = [apps objectAtIndex:i];
if( curApp && !curApp.terminated ) {
[curApp terminate];
}
}
//start a timeout timer
liveBrowserMgr->SetCloseTimeoutTimer([[NSTimer
scheduledTimerWithTimeInterval:(3 * 60)
target:LiveBrowserMgrMac::GetInstance()->GetTerminateObserver()
selector:@selector(timeoutTimer:)
userInfo:nil repeats:NO] retain]
);
}
int32 OpenURLInDefaultBrowser(ExtensionString url)
{
NSString* urlString = [NSString stringWithUTF8String:url.c_str()];
if ([[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString: urlString]] == NO) {
return ERR_UNKNOWN;
}
return NO_ERROR;
}
int32 ShowOpenDialog(bool allowMulitpleSelection,
bool chooseDirectory,
ExtensionString title,
ExtensionString initialDirectory,
ExtensionString fileTypes,
CefRefPtr<CefListValue>& selectedFiles)
{
NSArray* allowedFileTypes = nil;
BOOL canChooseDirectories = chooseDirectory;
BOOL canChooseFiles = !canChooseDirectories;
if (fileTypes != "")
{
// fileTypes is a Space-delimited string
allowedFileTypes =
[[NSString stringWithUTF8String:fileTypes.c_str()]
componentsSeparatedByString:@" "];
}
// Initialize the dialog
NSOpenPanel* openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseFiles:canChooseFiles];
[openPanel setCanChooseDirectories:canChooseDirectories];
[openPanel setCanCreateDirectories:canChooseDirectories];
[openPanel setAllowsMultipleSelection:allowMulitpleSelection];
[openPanel setShowsHiddenFiles: YES];
[openPanel setTitle: [NSString stringWithUTF8String:title.c_str()]];
if (initialDirectory != "")
[openPanel setDirectoryURL:[NSURL URLWithString:[NSString stringWithUTF8String:initialDirectory.c_str()]]];
[openPanel setAllowedFileTypes:allowedFileTypes];
[openPanel beginSheetModalForWindow:[NSApp mainWindow] completionHandler:nil];
if ([openPanel runModal] == NSOKButton)
{
NSArray* urls = [openPanel URLs];
for (NSUInteger i = 0; i < [urls count]; i++) {
selectedFiles->SetString(i, [[[urls objectAtIndex:i] path] UTF8String]);
}
}
[NSApp endSheet:openPanel];
return NO_ERROR;
}
int32 ReadDir(ExtensionString path, CefRefPtr<CefListValue>& directoryContents)
{
NSString* pathStr = [NSString stringWithUTF8String:path.c_str()];
NSError* error = nil;
if ([pathStr length] == 0) {
return ERR_INVALID_PARAMS;
}
NSArray* contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:pathStr error:&error];
if (contents != nil)
{
NSArrayToCefList(contents, directoryContents);
return NO_ERROR;
}
return ConvertNSErrorCode(error, true);
}
int32 MakeDir(ExtensionString path, int32 mode)
{
NSError* error = nil;
NSString* pathStr = [NSString stringWithUTF8String:path.c_str()];
// TODO (issue #1759): honor mode
[[NSFileManager defaultManager] createDirectoryAtPath:pathStr withIntermediateDirectories:TRUE attributes:nil error:&error];
return ConvertNSErrorCode(error, false);
}
int32 Rename(ExtensionString oldName, ExtensionString newName)
{
NSError* error = nil;
NSString* oldPathStr = [NSString stringWithUTF8String:oldName.c_str()];
NSString* newPathStr = [NSString stringWithUTF8String:newName.c_str()];
// Check to make sure newName doesn't already exist. On OS 10.7 and later, moveItemAtPath
// returns a nice "NSFileWriteFileExists" error in this case, but 10.6 returns a generic
// "can't write" error.
if ([[NSFileManager defaultManager] fileExistsAtPath:newPathStr]) {
return ERR_FILE_EXISTS;
}
[[NSFileManager defaultManager] moveItemAtPath:oldPathStr toPath:newPathStr error:&error];
return ConvertNSErrorCode(error, false);
}
int32 GetFileModificationTime(ExtensionString filename, uint32& modtime, bool& isDir)
{
NSString* path = [NSString stringWithUTF8String:filename.c_str()];
BOOL isDirectory;
if ([[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:&isDirectory]) {
isDir = isDirectory;
} else {
return ERR_NOT_FOUND;
}
NSError* error = nil;
NSDictionary* fileAttribs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:&error];
NSDate *modDate = [fileAttribs valueForKey:NSFileModificationDate];
modtime = [modDate timeIntervalSince1970];
return ConvertNSErrorCode(error, true);
}
int32 ReadFile(ExtensionString filename, ExtensionString encoding, std::string& contents)
{
NSString* path = [NSString stringWithUTF8String:filename.c_str()];
NSStringEncoding enc;
NSError* error = nil;
if (encoding == "utf8")
enc = NSUTF8StringEncoding;
else
return ERR_UNSUPPORTED_ENCODING;
NSString* fileContents = [NSString stringWithContentsOfFile:path encoding:enc error:&error];
if (fileContents)
{
contents = [fileContents UTF8String];
return NO_ERROR;
}
return ConvertNSErrorCode(error, true);
}
int32 WriteFile(ExtensionString filename, std::string contents, ExtensionString encoding)
{
NSString* path = [NSString stringWithUTF8String:filename.c_str()];
NSString* contentsStr = [NSString stringWithUTF8String:contents.c_str()];
NSStringEncoding enc;
NSError* error = nil;
if (encoding == "utf8")
enc = NSUTF8StringEncoding;
else
return ERR_UNSUPPORTED_ENCODING;
const NSData* encodedContents = [contentsStr dataUsingEncoding:enc];
NSUInteger len = [encodedContents length];
NSOutputStream* oStream = [NSOutputStream outputStreamToFileAtPath:path append:NO];
[oStream open];
NSInteger res = [oStream write:(const uint8_t*)[encodedContents bytes] maxLength:len];
[oStream close];
if (res == -1) {
error = [oStream streamError];
}
return ConvertNSErrorCode(error, false);
}
int32 SetPosixPermissions(ExtensionString filename, int32 mode)
{
NSError* error = nil;
NSString* path = [NSString stringWithUTF8String:filename.c_str()];
NSDictionary* attrs = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:mode] forKey:NSFilePosixPermissions];
if ([[NSFileManager defaultManager] setAttributes:attrs ofItemAtPath:path error:&error])
return NO_ERROR;
return ConvertNSErrorCode(error, false);
}
int32 DeleteFileOrDirectory(ExtensionString filename)
{
NSError* error = nil;
NSString* path = [NSString stringWithUTF8String:filename.c_str()];
BOOL isDirectory;
// Contrary to the name of this function, we don't actually delete directories
if ([[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:&isDirectory]) {
if (isDirectory) {
return ERR_NOT_FILE;
}
} else {
return ERR_NOT_FOUND;
}
if ([[NSFileManager defaultManager] removeItemAtPath:path error:&error])
return NO_ERROR;
return ConvertNSErrorCode(error, false);
}
void NSArrayToCefList(NSArray* array, CefRefPtr<CefListValue>& list)
{
for (NSUInteger i = 0; i < [array count]; i++) {
list->SetString(i, [[[array objectAtIndex:i] precomposedStringWithCanonicalMapping] UTF8String]);
}
}
int32 ConvertNSErrorCode(NSError* error, bool isReading)
{
if (!error)
return NO_ERROR;
if( [[error domain] isEqualToString: NSPOSIXErrorDomain] )
{
switch ([error code])
{
case ENOENT:
return ERR_NOT_FOUND;
break;
case EPERM:
case EACCES:
return (isReading ? ERR_CANT_READ : ERR_CANT_WRITE);
break;
case EROFS:
return ERR_CANT_WRITE;
break;
case ENOSPC:
return ERR_OUT_OF_SPACE;
break;
}
}
switch ([error code])
{
case NSFileNoSuchFileError:
case NSFileReadNoSuchFileError:
return ERR_NOT_FOUND;
break;
case NSFileReadNoPermissionError:
return ERR_CANT_READ;
break;
case NSFileReadInapplicableStringEncodingError:
return ERR_UNSUPPORTED_ENCODING;
break;
case NSFileWriteNoPermissionError:
return ERR_CANT_WRITE;
break;
case NSFileWriteOutOfSpaceError:
return ERR_OUT_OF_SPACE;
break;
case NSFileWriteFileExistsError:
return ERR_FILE_EXISTS;
break;
}
// Unknown error
return ERR_UNKNOWN;
}
void OnBeforeShutdown()
{
LiveBrowserMgrMac::Shutdown();
}
void CloseWindow(CefRefPtr<CefBrowser> browser)
{
NSWindow* window = [browser->GetHost()->GetWindowHandle() window];
// Tell the window delegate it's really time to close
[[window delegate] performSelector:@selector(setIsReallyClosing)];
browser->GetHost()->CloseBrowser();
}
void BringBrowserWindowToFront(CefRefPtr<CefBrowser> browser)
{
NSWindow* window = [browser->GetHost()->GetWindowHandle() window];
[window makeKeyAndOrderFront:nil];
}
@implementation ChromeWindowsTerminatedObserver
- (void) appTerminated:(NSNotification *)note
{
LiveBrowserMgrMac::GetInstance()->CheckForChromeRunning();
}
- (void) timeoutTimer:(NSTimer*)timer
{
LiveBrowserMgrMac::GetInstance()->CheckForChromeRunningTimeout();
}
@end
int32 ShowFolderInOSWindow(ExtensionString pathname)
{
NSString* scriptString = [NSString stringWithFormat: @"activate application \"Finder\"\n tell application \"Finder\" to open posix file \"%s\"", pathname.c_str()];
NSAppleScript* script = [[NSAppleScript alloc] initWithSource: scriptString];
NSDictionary* errorDict = nil;
[script executeAndReturnError: &errorDict];
[script release];
return NO_ERROR;
}
int32 GetPendingFilesToOpen(ExtensionString& files)
{
files = gPendingFilesToOpen;
gPendingFilesToOpen = "[]";
return NO_ERROR;
}
int32 GetMenuPosition(CefRefPtr<CefBrowser> browser, const ExtensionString& commandId, ExtensionString& parentId, int& index)
{
index = -1;
parentId = ExtensionString();
int32 tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(commandId);
if (tag == kTagNotFound) {
return ERR_NOT_FOUND;
}
NSMenuItem* item = (NSMenuItem*)NativeMenuModel::getInstance(getMenuParent(browser)).getOsItem(tag);
NSMenu* parentMenu = NULL;
if (item == NULL) {
parentMenu = [NSApp mainMenu];
} else {
parentMenu = [item menu];
parentId = NativeMenuModel::getInstance(getMenuParent(browser)).getParentId(tag);
}
index = [parentMenu indexOfItemWithTag:tag];
return NO_ERROR;
}
// Return index where menu or menu item should be placed.
// -1 indicates append.
int32 getNewMenuPosition(CefRefPtr<CefBrowser> browser, NSMenu* menu, const ExtensionString& position, const ExtensionString& relativeId, int32& positionIdx)
{
NativeMenuModel model = NativeMenuModel::getInstance(getMenuParent(browser));
ExtensionString pos = position;
ExtensionString relId = relativeId;
NSInteger errCode = NO_ERROR;
if (position.size() == 0) {
positionIdx = -1;
} else if ((pos == "firstInSection" || pos == "lastInSection") && relId.size() > 0) {
int32 startTag = model.getTag(relId);
NSMenuItem* item = (NSMenuItem*)model.getOsItem(startTag);
NSMenu* parentMenu = [item menu];
NSInteger startIndex = [parentMenu indexOfItemWithTag:startTag];
if (menu != parentMenu) {
// Section is in a different menu.
positionIdx = -1;
return ERR_NOT_FOUND;
}
if (pos == "firstInSection") {
// Move backwards until reaching the beginning of the menu or a separator
while (startIndex >= 0) {
if ([[parentMenu itemAtIndex:startIndex] isSeparatorItem]) {
break;
}
startIndex--;
}
if (startIndex < 0) {
positionIdx = 0;
} else {
startIndex++;
pos = "before";
}
} else { // "lastInSection"
NSInteger numItems = [parentMenu numberOfItems];
// Move forwards until reaching the end of the menu or a separator
while (startIndex < numItems) {
if ([[parentMenu itemAtIndex:startIndex] isSeparatorItem]) {
break;
}
startIndex++;
}
if (startIndex == numItems) {
positionIdx = -1;
} else {
startIndex--;
pos = "after";
}
}
if (pos == "before" || pos == "after") {
relId = model.getCommandId([[parentMenu itemAtIndex:startIndex] tag]);
}
}
if ((pos == "before" || pos == "after") && relId.size() > 0) {
ExtensionString parentId;
errCode = GetMenuPosition(browser, relId, parentId, positionIdx);
if (menu && menu != [(NSMenuItem*)model.getOsItem(model.getTag(parentId)) submenu]) {
errCode = ERR_NOT_FOUND;
}
// If we don't find the relative ID, return an error
// and set positionIdx to -1. The item will be appended and an error will be shown.
if (errCode == ERR_NOT_FOUND) {
positionIdx = -1;
}
if (positionIdx >= 0 && pos == "after") {
positionIdx += 1;
}
} else if (pos == "first") {
positionIdx = 0;
}
return errCode;
}
int32 AddMenu(CefRefPtr<CefBrowser> browser, ExtensionString itemTitle, ExtensionString command, ExtensionString position, ExtensionString relativeId) {
NSString* itemTitleStr = [[NSString alloc] initWithUTF8String:itemTitle.c_str()];
NSMenuItem *testItem = nil;
int32 tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(command);
if (tag == kTagNotFound) {
tag = NativeMenuModel::getInstance(getMenuParent(browser)).getOrCreateTag(command, ExtensionString());
} else {
// menu already there
return NO_ERROR;
}
NSInteger menuIdx = [[NSApp mainMenu] indexOfItemWithTag:tag];
if (menuIdx >= 0) {
// if we didn't find the tag, we shouldn't already have an item with this tag
return ERR_UNKNOWN;
} else {
testItem = [[[NSMenuItem alloc] initWithTitle:itemTitleStr action:nil keyEquivalent:@""] autorelease];
[testItem setTag:tag];
NativeMenuModel::getInstance(getMenuParent(browser)).setOsItem(tag, (void*)testItem);
}
NSMenu *subMenu = [testItem submenu];
if (subMenu == nil) {
subMenu = [[[NSMenu alloc] initWithTitle:itemTitleStr] autorelease];
[testItem setSubmenu:subMenu];
}
// Positioning hack. If position and relativeId are both "", put the menu
// before the window menu *except* if it is the Help menu.
if (position.size() == 0 && relativeId.size() == 0 && command != "help-menu") {
position = "before";
relativeId = "window";
}
NSInteger positionIdx = -1;
int32 errCode = getNewMenuPosition(browser, nil, position, relativeId, positionIdx);
// Another position hack. If position is "first" we will change positionIdx to 1
// since we can't allow user to put anything before the Mac OS default application menu.
if (position.size() > 0 && position == "first" && positionIdx == 0) {
positionIdx = 1;
}
if (positionIdx > -1) {
[[NSApp mainMenu] insertItem:testItem atIndex:positionIdx];
} else {
[[NSApp mainMenu] addItem:testItem];
}
return errCode;
}
// Looks at modifiers and special keys in "key",
// removes then and returns an unsigned int mask
// that can be used by setKeyEquivalentModifierMask
NSUInteger processKeyString(ExtensionString& key)
{
// Bail early if empty string is passed
if (key == "") {
return 0;
}
NSUInteger mask = 0;
if (appshell_extensions::fixupKey(key, "Cmd-", "")) {
mask |= NSCommandKeyMask;
}
if (appshell_extensions::fixupKey(key, "Ctrl-", "")) {
mask |= NSControlKeyMask;
}
if (appshell_extensions::fixupKey(key, "Shift-", "")) {
mask |= NSShiftKeyMask;
}
if (appshell_extensions::fixupKey(key, "Alt-", "") ||
appshell_extensions::fixupKey(key, "Opt-", "")) {
mask |= NSAlternateKeyMask;
}
//replace special keys with ones expected by keyEquivalent
const ExtensionString del = (ExtensionString() += NSDeleteCharacter);
const ExtensionString backspace = (ExtensionString() += NSBackspaceCharacter);
const ExtensionString tab = (ExtensionString() += NSTabCharacter);
const ExtensionString enter = (ExtensionString() += NSEnterCharacter);
appshell_extensions::fixupKey(key, "Delete", del);
appshell_extensions::fixupKey(key, "Backspace", backspace);
appshell_extensions::fixupKey(key, "Tab", tab);
appshell_extensions::fixupKey(key, "Enter", enter);
appshell_extensions::fixupKey(key, "Up", "↑");
appshell_extensions::fixupKey(key, "Down", "↓");
appshell_extensions::fixupKey(key, "Left", "←");
appshell_extensions::fixupKey(key, "Right", "→");
// from unicode display char to ascii hyphen
appshell_extensions::fixupKey(key, "−", "-");
return mask;
}
int32 AddMenuItem(CefRefPtr<CefBrowser> browser, ExtensionString parentCommand, ExtensionString itemTitle, ExtensionString command, ExtensionString key, ExtensionString position, ExtensionString relativeId) {
NSString* itemTitleStr = [[NSString alloc] initWithUTF8String:itemTitle.c_str()];
NSMenuItem *testItem = nil;
int32 parentTag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(parentCommand);
bool isSeparator = (itemTitle == "---");
if (parentTag == kTagNotFound) {
return NO_ERROR;
}
int32 tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(command);
if (tag == kTagNotFound) {
tag = NativeMenuModel::getInstance(getMenuParent(browser)).getOrCreateTag(command, parentCommand);
} else {
return NO_ERROR;
}
NSInteger menuIdx;
testItem = (NSMenuItem*)NativeMenuModel::getInstance(getMenuParent(browser)).getOsItem(parentTag);
if (testItem != nil) {
NSMenu* subMenu = nil;
if (![testItem hasSubmenu]) {
subMenu = [[[NSMenu alloc] initWithTitle:itemTitleStr] autorelease];
[testItem setSubmenu:subMenu];
}
subMenu = [testItem submenu];
if (subMenu != nil) {
if (isSeparator) {
menuIdx = -1;
}
else {
menuIdx = [subMenu indexOfItemWithTag:tag];
}
if (menuIdx < 0) {
NSMenuItem* newItem = nil;
if (isSeparator) {
newItem = [NSMenuItem separatorItem];
}
else {
NSUInteger mask = processKeyString(key);
NSString* keyStr = [[NSString alloc] initWithUTF8String:key.c_str()];
keyStr = [keyStr lowercaseString];
newItem = [NSMenuItem alloc];
[newItem setTitle:itemTitleStr];
[newItem setAction:NSSelectorFromString(@"handleMenuAction:")];
[newItem setKeyEquivalent:keyStr];
[newItem setKeyEquivalentModifierMask:mask];
[newItem setTag:tag];
NativeMenuModel::getInstance(getMenuParent(browser)).setOsItem(tag, (void*)newItem);
}
NSInteger positionIdx = -1;
int32 errCode = getNewMenuPosition(browser, subMenu, position, relativeId, positionIdx);
if (positionIdx > -1) {
[subMenu insertItem:newItem atIndex:positionIdx];
} else {
[subMenu addItem:newItem];
}
return errCode;
}
}
}
return NO_ERROR;
}
int32 GetMenuItemState(CefRefPtr<CefBrowser> browser, ExtensionString commandId, bool& enabled, bool &checked, int& index)
{
int32 tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(commandId);
if (tag == kTagNotFound) {
return ERR_NOT_FOUND;
}
NSMenuItem* item = (NSMenuItem*)NativeMenuModel::getInstance(getMenuParent(browser)).getOsItem(tag);
if (item == NULL) {
return ERR_NOT_FOUND;
}
if ([item respondsToSelector:@selector(menu)]) {
NSWindow* mainWindow = [NSApp mainWindow];
//menu item's enabled status is dependent on the selector's return value.
//[item enabled] will only be correct if we use manual menu enablement.
enabled = [(NSObject*)[mainWindow delegate] performSelector:@selector(validateMenuItem:) withObject:item];
checked = ([item state] == NSOnState);
index = [[item menu] indexOfItemWithTag:tag];
}
return NO_ERROR;
}
int32 SetMenuTitle(CefRefPtr<CefBrowser> browser, ExtensionString command, ExtensionString itemTitle) {
NSString* itemTitleStr = [[NSString alloc] initWithUTF8String:itemTitle.c_str()];
int32 tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(command);
if (tag == kTagNotFound) {
return ERR_NOT_FOUND;
}
NSMenuItem* menuItem = (NSMenuItem*)NativeMenuModel::getInstance(getMenuParent(browser)).getOsItem(tag);
if (menuItem == NULL) {
return ERR_NOT_FOUND;
}
if ([menuItem submenu]) {
[[menuItem submenu] setTitle:itemTitleStr];
} else {
[menuItem setTitle:itemTitleStr];
}
return NO_ERROR;
}
int32 GetMenuTitle(CefRefPtr<CefBrowser> browser, ExtensionString commandId, ExtensionString& title)
{
int32 tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(commandId);
if (tag == kTagNotFound) {
return ERR_NOT_FOUND;
}
NSMenuItem* item = (NSMenuItem*)NativeMenuModel::getInstance(getMenuParent(browser)).getOsItem(tag);
if (item == NULL) {
return ERR_NOT_FOUND;
}
if ([item submenu]) {
title = [[[item submenu] title] UTF8String];
} else {
title = [[item title] UTF8String];
}
return NO_ERROR;
}
//Remove menu item associated with commandId
int32 RemoveMenu(CefRefPtr<CefBrowser> browser, const ExtensionString& commandId)
{
//works for menu and menu item
return RemoveMenuItem(browser, commandId);
}
//Remove menu item associated with commandId
int32 RemoveMenuItem(CefRefPtr<CefBrowser> browser, const ExtensionString& commandId)
{
int tag = NativeMenuModel::getInstance(getMenuParent(browser)).getTag(commandId);
if (tag == kTagNotFound) {
return ERR_NOT_FOUND;
}
NSMenuItem* item = (NSMenuItem*)NativeMenuModel::getInstance(getMenuParent(browser)).getOsItem(tag);
if (item == NULL) {
return ERR_NOT_FOUND;
}
NSMenu* parentMenu = NULL;
if ([item respondsToSelector:@selector(menu)]) {
parentMenu = [item menu];
if (parentMenu == NULL) {
return ERR_NOT_FOUND;
}
[parentMenu removeItem:item];
NativeMenuModel::getInstance(getMenuParent(browser)).removeMenuItem(commandId);
} else {
return ERR_NOT_FOUND;
}
return NO_ERROR;
}