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
|
/** Implementation DKPorpertyMethod and subclasses.
Copyright (C) 2010 Free Software Foundation, Inc.
Written by: Niels Grewe <niels.grewe@halbordnung.de>
Created: September 2010
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 "DKPropertyMethod.h"
#import "DKArgument.h"
#import "DKProperty.h"
#import <Foundation/NSArray.h>
#import <Foundation/NSDebug.h>
#import <Foundation/NSException.h>
#import <Foundation/NSInvocation.h>
#import <Foundation/NSMethodSignature.h>
#import <Foundation/NSString.h>
#import <GNUstepBase/NSDebug+GNUstepBase.h>
#include <string.h>
#include <dbus/dbus.h>
@implementation DKPropertyMethod
- (id)initWithName: (NSString*)aName
parent: (id)aParent
{
if (nil == (self = [super initWithName: aName
parent: aParent]))
{
return nil;
}
if (NO == [aParent isKindOfClass: [DKProperty class]])
{
NSWarnMLog(@"Not creating property method for non-property parent.");
[self release];
return nil;
}
return self;
}
- (NSString*)interface
{
return @"org.freedesktop.DBus.Properties";
}
@end
@implementation DKPropertyAccessor
- (id)initWithProperty: (DKProperty*)aProperty
{
DKArgument *interfaceArg = nil;
DKArgument *propertyNameArg = nil;
DKArgument *retValArg = nil;
if (nil == (self = [super initWithName: @"Get"
parent: aProperty]))
{
return nil;
}
/*
* Create the argument for the Get() method, making sure that we don't leak
* memory in the process.
*/
NS_DURING
{
interfaceArg = [[DKArgument alloc] initWithDBusSignature: "s"
name: @"interface_name"
parent: self];
[self addArgument: interfaceArg
direction: kDKArgumentDirectionIn];
NS_DURING
{
propertyNameArg = [[DKArgument alloc] initWithDBusSignature: "s"
name: @"property_name"
parent: self];
[self addArgument: propertyNameArg
direction: kDKArgumentDirectionIn];
NS_DURING
{
retValArg = [[(DKProperty*)parent type] copy];
[retValArg setParent: self];
[self addArgument: retValArg
direction: kDKArgumentDirectionOut];
}
NS_HANDLER
{
[retValArg release];
[localException raise];
}
NS_ENDHANDLER
}
NS_HANDLER
{
[propertyNameArg release];
[localException raise];
}
NS_ENDHANDLER
}
NS_HANDLER
{
[interfaceArg release];
[localException raise];
}
NS_ENDHANDLER
[interfaceArg release];
[propertyNameArg release];
[retValArg release];
return self;
}
- (NSString*)selectorString
{
return [parent name];
}
- (const char*)objCTypesBoxed: (BOOL)doBox
{
return [[NSString stringWithFormat: @"%s%d@0:%d", [self returnTypeBoxed: doBox],
(sizeof(id) + sizeof(SEL)),
sizeof(id)] UTF8String];
}
- (BOOL) isValidForMethodSignature: (NSMethodSignature*)aSignature
{
/* Accessor methods take no arguments except for self and _cmd: */
if (2 != [aSignature numberOfArguments])
{
return NO;
}
/* Only whether we can safely box/unbox the return value: */
if (DK_ARGUMENT_INVALID == [self boxingStateForReturnValueFromMethodSignature: aSignature])
{
return NO;
}
return YES;
}
- (void)marshallFromInvocation: (NSInvocation*)inv
intoIterator: (DBusMessageIter*)iter
messageType: (int)type
{
/*
* For returns, we simply wrap the value from the invocation in an variant
* type container.
*/
if (DBUS_MESSAGE_TYPE_METHOD_RETURN == type)
{
DBusMessageIter subIter;
const char *sig = [[(DKArgument*)[outArgs objectAtIndex: 0] DBusTypeSignature] UTF8String];
/* Open the container and check for OOM: */
if (NO == (BOOL)dbus_message_iter_open_container(iter,
DBUS_TYPE_VARIANT,
sig,
&subIter))
{
[NSException raise: @"DKArgumentMarshallingException"
format: @"Out of memory when marshalling argument."];
}
/* Let super do the marshalling: */
[super marshallFromInvocation: inv
intoIterator: &subIter
messageType: type];
/* Close the container and check for OOM: */
if (NO == (BOOL)dbus_message_iter_close_container(iter, &subIter))
{
[NSException raise: @"DKArgumentMarshallingException"
format: @"Out of memory when marshalling argument."];
}
}
else if (DBUS_MESSAGE_TYPE_METHOD_CALL == type)
{
/* For calls, we need to construct the arguments manually: */
// marshall interface name from the parent
[(DKArgument*)[inArgs objectAtIndex: 0] marshallObject: [(DKProperty*)parent interface]
intoIterator: iter];
// marshall property name from the parent
[(DKArgument*)[inArgs objectAtIndex: 1] marshallObject: [(DKProperty*)parent name]
intoIterator: iter];
}
}
- (void) unmarshallFromIterator: (DBusMessageIter*)iter
intoInvocation: (NSInvocation*)inv
messageType: (int)type
{
if (DBUS_MESSAGE_TYPE_METHOD_CALL == type)
{
/* If a getter is being called from D-Bus, we do unmarshall any arguments.
* Those that have been there (interface and property name, will already
* have been deserialized by the dispatcher in order to find this method.
* Hence, we just return;
*/
return;
}
else if (DBUS_MESSAGE_TYPE_METHOD_RETURN == type)
{
DBusMessageIter subIter;
DKArgument *returnArg = [outArgs objectAtIndex: 0];
char *actualSignature = NULL;
// Make sure we are processing a variant:
NSAssert((DBUS_TYPE_VARIANT == dbus_message_iter_get_arg_type(iter)),
@"Type mismatch between introspection data and D-Bus message.");
// Recurse into the variant:
dbus_message_iter_recurse(iter,&subIter);
// Find the type:
actualSignature = dbus_message_iter_get_signature(&subIter);
// Make sure that we find what we expect:
NS_DURING
{
NSAssert3((0 == strcmp(actualSignature, [[returnArg DBusTypeSignature] UTF8String])),
@"Type mismatch for property %@, expected %@, got %s.",
parent,
[returnArg DBusTypeSignature],
actualSignature);
}
NS_HANDLER
{
dbus_free(actualSignature);
[localException raise];
}
NS_ENDHANDLER
dbus_free(actualSignature);
// Let the superclass implementation do the work:
[super unmarshallFromIterator: &subIter
intoInvocation: inv
messageType: type];
}
}
- (NSUInteger)userVisibleArguments
{
return 0;
}
@end
@implementation DKPropertyMutator
- (id)initWithProperty: (DKProperty*)aProperty
{
DKArgument *interfaceArg = nil;
DKArgument *propertyNameArg = nil;
DKArgument *newValArg = nil;
if (nil == (self = [super initWithName: @"Set"
parent: aProperty]))
{
return nil;
}
/*
* Create the argument for the Get() method, making sure that we don't leak
* memory in the process.
*/
NS_DURING
{
interfaceArg = [[DKArgument alloc] initWithDBusSignature: "s"
name: @"interface_name"
parent: self];
[self addArgument: interfaceArg
direction: kDKArgumentDirectionIn];
NS_DURING
{
propertyNameArg = [[DKArgument alloc] initWithDBusSignature: "s"
name: @"property_name"
parent: self];
[self addArgument: propertyNameArg
direction: kDKArgumentDirectionIn];
NS_DURING
{
newValArg = [[(DKProperty*)parent type] copy];
[newValArg setParent: self];
[self addArgument: newValArg
direction: kDKArgumentDirectionIn];
}
NS_HANDLER
{
[newValArg release];
[localException raise];
}
NS_ENDHANDLER
}
NS_HANDLER
{
[propertyNameArg release];
[localException raise];
}
NS_ENDHANDLER
}
NS_HANDLER
{
[interfaceArg release];
[localException raise];
}
NS_ENDHANDLER
[interfaceArg release];
[propertyNameArg release];
[newValArg release];
return self;
}
- (NSString*)selectorString
{
// We could camelCase this, but perhaps we shouldn't to avoid ambiguities.
return [NSString stringWithFormat: @"set%@:", [parent name]];
}
- (const char*)objCTypesBoxed: (BOOL)doBox
{
DKArgument *valueArgument = [inArgs objectAtIndex: 2];
size_t valueSize = 0;
const char *valueType = NULL;
if (doBox)
{
valueSize = sizeof(id);
valueType = @encode(id);
}
else
{
valueSize = [valueArgument unboxedObjCTypeSize];
valueType = [valueArgument unboxedObjCTypeChar];
}
return [[NSString stringWithFormat: @"%s%d@0:%d%s%d", @encode(void),
((sizeof(id) + sizeof(SEL)) + valueSize),
sizeof(id),
valueType,
(sizeof(id) + sizeof(SEL))] UTF8String];
}
- (BOOL) isValidForMethodSignature: (NSMethodSignature*)aSignature
{
/* Mutator methods take three arguments (self, _cmd, and the new value) */
if (3 != [aSignature numberOfArguments])
{
return NO;
}
/*
* Only check whether we can safely box/unbox the new value. For this check,
* we need to offset the hidden arguments representing interface and property
* name.
*/
if (DK_ARGUMENT_INVALID == [self boxingStateForArgumentAtIndex: 2
fromMethodSignature: aSignature
atIndex: 2])
{
return NO;
}
return YES;
}
- (void)marshallFromInvocation: (NSInvocation*)inv
intoIterator: (DBusMessageIter*)iter
messageType: (int)type
{
/*
* If we are sending a return message, we do nothing because the setter
* returns void.
*/
if (DBUS_MESSAGE_TYPE_METHOD_RETURN == type)
{
return;
}
else if (DBUS_MESSAGE_TYPE_METHOD_CALL == type)
{
/* For calls, we need to construct the arguments manually: */
DBusMessageIter subIter;
DKArgument *newValArg = [inArgs objectAtIndex: 2];
NSMethodSignature *objCSig = [inv methodSignature];
const char *DBusSig = [[newValArg DBusTypeSignature] UTF8String];
BOOL doBox = YES;
NSInteger boxingState = [self boxingStateForArgumentAtIndex: 2
fromMethodSignature: objCSig
atIndex: 2];
// Sanity check: Abort if there is a type mismatch between the argument and
// the invocation.
NSAssert1((DK_ARGUMENT_INVALID != boxingState),
@"Type mismatch when marshalling invocation '%@' into org.freedesktop.DBus.Properties.Set() method call.",
inv);
// marshall interface name from the parent
[(DKArgument*)[inArgs objectAtIndex: 0] marshallObject: [(DKProperty*)parent interface]
intoIterator: iter];
// marshall property name from the parent
[(DKArgument*)[inArgs objectAtIndex: 1] marshallObject: [(DKProperty*)parent name]
intoIterator: iter];
/* Open the container and check for OOM: */
if (NO == (BOOL)dbus_message_iter_open_container(iter,
DBUS_TYPE_VARIANT,
DBusSig,
&subIter))
{
[NSException raise: @"DKArgumentMarshallingException"
format: @"Out of memory when marshalling argument."];
}
/* Set the boxing state */
if (DK_ARGUMENT_BOXED == boxingState)
{
doBox = YES;
}
else if (DK_ARGUMENT_UNBOXED == boxingState)
{
doBox = NO;
}
/*
* Do the marshalling of the actual argument. (the index refers to the
* position of the argument within the invocation)
*/
[newValArg marshallArgumentAtIndex: 2
fromInvocation: inv
intoIterator: &subIter
boxing: doBox];
/* Close the container and check for OOM: */
if (NO == (BOOL)dbus_message_iter_close_container(iter, &subIter))
{
[NSException raise: @"DKArgumentMarshallingException"
format: @"Out of memory when marshalling argument."];
}
}
}
- (void) unmarshallFromIterator: (DBusMessageIter*)iter
intoInvocation: (NSInvocation*)inv
messageType: (int)type
{
if (DBUS_MESSAGE_TYPE_METHOD_RETURN == type)
{
/*
* We don't have any return arguments and can simply return.
*/
return;
}
else if (DBUS_MESSAGE_TYPE_METHOD_CALL == type)
{
DBusMessageIter subIter;
DKArgument *newValArg = [inArgs objectAtIndex: 2];
char *actualSignature = NULL;
NSMethodSignature *objCSig = [inv methodSignature];
BOOL doBox = YES;
NSInteger boxingState = [self boxingStateForArgumentAtIndex: 2
fromMethodSignature: objCSig
atIndex: 2];
// Sanity check: Abort if there is a type mismatch between the argument and
// the invocation.
NSAssert2((DK_ARGUMENT_INVALID != boxingState),
@"Type mismatch when unmarshalling Set() for property '%@' into invocation '%@'.",
parent,
inv);
// Make sure we are processing a variant:
NSAssert((DBUS_TYPE_VARIANT == dbus_message_iter_get_arg_type(iter)),
@"Type mismatch between introspection data and D-Bus message.");
// Recurse into the variant:
dbus_message_iter_recurse(iter,&subIter);
// Find the type:
actualSignature = dbus_message_iter_get_signature(&subIter);
// Make sure that we find what we expect:
NS_DURING
{
NSAssert3((0 == strcmp(actualSignature, [[newValArg DBusTypeSignature] UTF8String])),
@"Type mismatch for property %@, expected %@, got %s.",
parent,
[newValArg DBusTypeSignature],
actualSignature);
}
NS_HANDLER
{
dbus_free(actualSignature);
[localException raise];
}
NS_ENDHANDLER
dbus_free(actualSignature);
/* Set the boxing state */
if (DK_ARGUMENT_BOXED == boxingState)
{
doBox = YES;
}
else if (DK_ARGUMENT_UNBOXED == boxingState)
{
doBox = NO;
}
// Do the unmarshalling:
[newValArg unmarshallFromIterator: &subIter
intoInvocation: inv
atIndex: 2
boxing: doBox];
}
}
- (NSUInteger)userVisibleArguments
{
return 1;
}
@end
|