-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCWHessianChannel.m
120 lines (102 loc) · 3.35 KB
/
CWHessianChannel.m
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
//
// CWHessianChannel.m
// HessianKit
//
// Copyright 2009 Fredrik Olsson, Cocoway. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#import "CWHessianChannel.h"
#import "HessianKitTypes.h"
#if (TARGET_OS_MAC && !(TARGET_OS_EMBEDDED || TARGET_OS_IPHONE))
#include <CoreFoundation/CoreFoundation.h>
#include <IOKit/IOKitLib.h>
void CopySerialNumber(CFStringRef *serialNumber) {
if (serialNumber != NULL) {
*serialNumber = NULL;
io_service_t platformExpert = IOServiceGetMatchingService(kIOMasterPortDefault,
IOServiceMatching("IOPlatformExpertDevice"));
if (platformExpert) {
CFTypeRef serialNumberAsCFString =
IORegistryEntryCreateCFProperty(platformExpert,
CFSTR(kIOPlatformSerialNumberKey),
kCFAllocatorDefault, 0);
if (serialNumberAsCFString) {
*serialNumber = serialNumberAsCFString;
}
IOObjectRelease(platformExpert);
}
}
}
#else
#import <UIKit/UIDevice.h>
#endif
@interface CWHessianChannel ()
@property(readwrite, assign, nonatomic) id<CWHessianChannelDelegate> delegate;
@end
@implementation CWHessianChannel
@synthesize delegate = _delegate;
-(id)initWithDelegate:(id<CWHessianChannelDelegate>)delegate;
{
self = [super init];
if (self) {
self.delegate = delegate;
}
return self;
}
-(void)dealloc;
{
self.delegate = nil;
[_remoteIdPrefix release];
[super dealloc];
}
-(BOOL)canVendObjects;
{
return YES;
}
-(NSString*)remoteIdPrefix;
{
if (_remoteIdPrefix == nil) {
#if (TARGET_OS_MAC && !(TARGET_OS_EMBEDDED || TARGET_OS_IPHONE))
CFStringRef serialNumber = NULL;
CopySerialNumber(&serialNumber);
_remoteIdPrefix = [[NSString alloc] initWithString:(NSString*)serialNumber];
CFRelease(serialNumber);
#else
_remoteIdPrefix = [[UIDevice currentDevice].uniqueIdentifier retain];
#endif
}
return _remoteIdPrefix;
}
-(NSString*)remoteIdForObject:(id)anObject;
{
if ([self canVendObjects]) {
uint64_t target = (NSUInteger)anObject;
return [NSString stringWithFormat:@"%@:%qx", [self remoteIdPrefix], target];
} else {
[NSException raise:CWHessianObjectNotVendableException
format:@"Can not vend remote objects over %@ channel", NSStringFromClass([self class])];
return nil;
}
}
-(NSOutputStream*)outputStreamForMessage;
{
[NSException raise:NSInternalInconsistencyException
format:@"-[CWHessianChannel outputStreamForMessage] not overridden for %@", NSStringFromClass([self class])];
return nil;
}
-(void)finishOutputStreamForMessage:(NSOutputStream*)outputStream;
{
[NSException raise:NSInternalInconsistencyException
format:@"-[CWHessianChannel finnishOutputStreamForMessage] not overridden for %@", NSStringFromClass([self class])];
}
@end