File: DKPortNameServer.m

package info (click to toggle)
dbuskit 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 3,552 kB
  • sloc: objc: 10,309; sh: 9,443; ansic: 200; makefile: 20
file content (166 lines) | stat: -rw-r--r-- 3,750 bytes parent folder | download | duplicates (4)
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
/** Implementation of the DKPortNameServer for integrating D-Bus name lookup in
    NSConnection.
   Copyright (C) 2011 Free Software Foundation, Inc.

   Written by:  Niels Grewe <niels.grewe@halbordnung.de>
   Created: February 2011

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02111 USA.
   */


#import "DBusKit/DKPort.h"
#import "DBusKit/DKPortNameServer.h"

#import "DKEndpointManager.h"

#import <Foundation/NSDictionary.h>
#import <Foundation/NSHashTable.h>
#import <Foundation/NSString.h>

#include <stdint.h>
#include <dbus/dbus.h>

@interface DKPortNameServer (Private)

- (id) initWithBusType: (DKDBusBusType)type;
@end

static DKPortNameServer *systemBusNameServer;
static DKPortNameServer *sessionBusNameServer;

@implementation DKPortNameServer

+ (void)initialize
{
  if (self == [DKPortNameServer class])
  {
    DKEndpointManager *manager = [DKEndpointManager sharedEndpointManager];
    [manager enterInitialize];
    systemBusNameServer = [[DKPortNameServer alloc] initWithBusType: DBUS_BUS_SYSTEM];
    sessionBusNameServer = [[DKPortNameServer alloc] initWithBusType: DBUS_BUS_SESSION];
    [manager leaveInitialize];
  }
}

+ (id)sharedSystemBusPortNameServer
{
  return systemBusNameServer;
}


+ (id)sharedSessionBusPortNameServer
{
  return sessionBusNameServer;
}

+ (id)sharedPortNameServerForBusType: (DKDBusBusType)type
{
  if (DKDBusSessionBus == type)
  {
    return sessionBusNameServer;
  }
  else if (DKDBusSystemBus == type)
  {
    return systemBusNameServer;
  }
  return nil;
}

+ (id)allocWithZone: (NSZone*)zone
{
  if ((nil == systemBusNameServer) || (nil == sessionBusNameServer))
  {
    return [super allocWithZone: zone];
  }
  return nil;
}

- (id) initWithBusType: (DKDBusBusType)type
{
  if (nil == (self = [super init]))
  {
    return nil;
  }

  if (((nil == systemBusNameServer) && (DKDBusSystemBus != type))
    || ((nil == sessionBusNameServer) && (DKDBusSessionBus != type))
    || ((nil != systemBusNameServer) && (nil != sessionBusNameServer)))
  {
    [self release];
    return nil;
  }

  busType = type;
  queuedNames  = NSCreateHashTable(NSObjectHashCallBacks, 3);
  activeNames = NSCreateHashTable(NSObjectHashCallBacks, 3);


  return self;
}


- (DKPort*)portForName: (NSString*)name
{
  DKPort *thisPort = [[[DKPort alloc] initWithRemote: name
                                               onBus: busType] autorelease];
  return thisPort;
}

- (BOOL)registerPort: (DKPort*)port
                name: (NSString*)name
{
  return [self registerPort: port
                       name: name
                      flags: 0];
}
- (BOOL)registerPort: (DKPort*)port
                name: (NSString*)name
               flags: (DKPortNameFlags)flags
{
  return NO;
}

- (void)removePortForName: (NSString*)name
{

}

- (NSUInteger) retainCount
{
    return UINT_MAX;
}

- (oneway void) release
{
    //Ignore, it's a singleton;
}
- (id) autorelease
{
    return self;
}
- (id) retain
{
    return self;
}

- (void)dealloc
{
  NSFreeHashTable(queuedNames);
  NSFreeHashTable(activeNames);
  [super dealloc];
}
@end