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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/service/chrome_service_application_mac.h"
#include "base/mac/foundation_util.h"
#include "base/mac/mac_logging.h"
#import "chrome/common/cloud_print/cloud_print_class_mac.h"
#include "chrome/common/chrome_switches.h"
@interface ServiceApplication ()
- (void)setCloudPrintHandler;
- (void)submitPrint:(NSAppleEventDescriptor*)event;
@end
@implementation ServiceApplication
- (void)setCloudPrintHandler {
NSAppleEventManager* em = [NSAppleEventManager sharedAppleEventManager];
[em setEventHandler:self
andSelector:@selector(submitPrint:)
forEventClass:cloud_print::kAECloudPrintClass
andEventID:cloud_print::kAECloudPrintClass];
}
// Event handler for Cloud Print Event. Forwards print job received to Chrome,
// launching Chrome if necessary. Used to beat CUPS sandboxing.
- (void)submitPrint:(NSAppleEventDescriptor*)event {
std::string silent = std::string("--") + switches::kNoStartupWindow;
// Set up flag so that it can be passed along with the Apple Event.
CFStringRef silentLaunchFlag =
CFStringCreateWithCString(NULL, silent.c_str(), kCFStringEncodingUTF8);
CFStringRef flags[] = { silentLaunchFlag };
// Argv array that will be passed.
CFArrayRef passArgv =
CFArrayCreate(NULL, (const void**) flags, 1, &kCFTypeArrayCallBacks);
FSRef ref;
CFURLRef* kDontWantURL = NULL;
// Get Chrome's bundle ID.
std::string bundleID = base::mac::BaseBundleID();
CFStringRef bundleIDCF =
CFStringCreateWithCString(NULL, bundleID.c_str(), kCFStringEncodingUTF8);
// Use Launch Services to locate Chrome using its bundleID.
OSStatus status = LSFindApplicationForInfo(kLSUnknownCreator, bundleIDCF,
NULL, &ref, kDontWantURL);
if (status != noErr) {
OSSTATUS_LOG(ERROR, status) << "Failed to make path ref";
return;
}
// Actually create the Apple Event.
NSAppleEventDescriptor* sendEvent =
[NSAppleEventDescriptor
appleEventWithEventClass:cloud_print::kAECloudPrintClass
eventID:cloud_print::kAECloudPrintClass
targetDescriptor:nil
returnID:kAutoGenerateReturnID
transactionID:kAnyTransactionID];
// Pull the parameters out of AppleEvent sent to us and attach them
// to our Apple Event.
NSAppleEventDescriptor* parameters =
[event paramDescriptorForKeyword:cloud_print::kAECloudPrintClass];
[sendEvent setParamDescriptor:parameters
forKeyword:cloud_print::kAECloudPrintClass];
LSApplicationParameters params = { 0,
kLSLaunchDefaults,
&ref,
NULL,
NULL,
passArgv,
NULL };
AEDesc* initialEvent = const_cast<AEDesc*> ([sendEvent aeDesc]);
params.initialEvent = static_cast<AppleEvent*> (initialEvent);
// Send the Apple Event Using launch services, launching Chrome if necessary.
status = LSOpenApplication(¶ms, NULL);
if (status != noErr) {
OSSTATUS_LOG(ERROR, status) << "Unable to launch";
}
}
@end
namespace chrome_service_application_mac {
void RegisterServiceApp() {
ServiceApplication* var =
base::mac::ObjCCastStrict<ServiceApplication>(
[ServiceApplication sharedApplication]);
[var setCloudPrintHandler];
}
} // namespace chrome_service_application_mac
|