ADC Home > Reference Library > Reference > Hardware & Drivers > Bluetooth > Bluetooth Framework Reference
|
IOBluetoothSDPServiceRecord |
Inherits from: | NSObject |
Declared In: |
An instance of this class represents a single SDP service record.
As a service record, an instance of this class has an NSDictionary of service attributes. It also has a link to the IOBluetoothDevice that the service belongs to. The service dictionary is keyed off of the attribute ID of each attribute represented as an NSNumber.
Returns the data element for the given attribute ID in the target service.
Returns an NSDictionary containing the attributes for the service.
Returns the IOBluetoothDevice that the target service belongs to.
Allows the discovery of the L2CAP PSM assigned to the service.
Allows the discovery of the RFCOMM channel ID assigned to the service.
Returns an IOBluetoothSDPServiceRecordRef representation of the target IOBluetoothSDPServiceRecord object.
Returns the name of the service.
Allows the discovery of the service record handle assigned to the service.
Returns TRUE if any one of the UUIDs in the given array is found in the target service.
Returns TRUE any of the UUID arrays in the search array match the target service.
Returns TRUE if ALL of the UUIDs in the given array is found in the target service.
Method call to convert an IOBluetoothSDPServiceRecordRef into an IOBluetoothSDPServiceRecord *.
getAttributeDataElement: |
Returns the data element for the given attribute ID in the target service.
- (IOBluetoothSDPDataElement *)getAttributeDataElement:(BluetoothSDPServiceAttributeID)attributeID;
attributeID
The attribute ID of the desired attribute.
Returns the data element for the given attribute ID in the target service. If the service does not contain an attribute with the given ID, then nil is returned.
getAttributes |
Returns an NSDictionary containing the attributes for the service.
- (NSDictionary *)getAttributes;
Returns an NSDictionary containing the attributes for the target service.
The attribute dictionary is keyed off of the attribute id represented as an NSNumber. The values in the NSDictionary are IOBluetoothSDPDataElement objects representing the data element for the given attribute.
getDevice |
Returns the IOBluetoothDevice that the target service belongs to.
- (IOBluetoothDevice *)getDevice;
Returns the IOBluetoothDevice that the target service belongs to. If the service is one the local host is vending, then nil is returned.
If the service is a local service (i.e. one the current host is vending out), then nil is returned.
getL2CAPPSM: |
Allows the discovery of the L2CAP PSM assigned to the service.
- (IOReturn)getL2CAPPSM:(BluetoothL2CAPPSM *)outPSM;
outPSM
A pointer to the location that will get the found L2CAP PSM.
Returns kIOReturnSuccess if the PSM is found.
This method will search through the ProtoclDescriptorList attribute to find an entry with the L2CAP UUID (UUID16: 0x0100). If one is found, it gets the second element of the data element sequence and sets the outPSM pointer to it. The PSM value only gets set when kIOReturnSuccess is returned.
getRFCOMMChannelID: |
Allows the discovery of the RFCOMM channel ID assigned to the service.
- (IOReturn)getRFCOMMChannelID:(BluetoothRFCOMMChannelID *)rfcommChannelID;
rfcommChannelID
A pointer to the location that will get the found RFCOMM channel ID.
Returns kIOReturnSuccess if the channel ID is found.
This method will search through the ProtoclDescriptorList attribute to find an entry with the RFCOMM UUID (UUID16: 0x0003). If one is found, it gets the second element of the data element sequence and sets the rfcommChannelID pointer to it. The channel ID only gets set when kIOReturnSuccess is returned.
getSDPServiceRecordRef |
Returns an IOBluetoothSDPServiceRecordRef representation of the target IOBluetoothSDPServiceRecord object.
- (IOBluetoothSDPServiceRecordRef)getSDPServiceRecordRef;
Returns an IOBluetoothSDPServiceRecordRef representation of the target IOBluetoothSDPServiceRecord object.
getServiceName |
Returns the name of the service.
- (NSString *)getServiceName;
Returns the name of the target service.
This is currently implemented to simply return the attribute with an id of 0x0100. In the future, it will be extended to allow name localization based on the user's chosen language or other languages.
getServiceRecordHandle: |
Allows the discovery of the service record handle assigned to the service.
- (IOReturn)getServiceRecordHandle:(BluetoothSDPServiceRecordHandle *)outServiceRecordHandle;
outServiceRecordHandle
A pointer to the location that will get the found service record handle.
Returns kIOReturnSuccess if the service record handle is found.
This method will search through the attributes to find the one representing the service record handle. If one is found the outServiceRecordHandle param is set with the value. The outServiceRecordHandle value only gets set when kIOReturnSuccess is returned.
hasServiceFromArray: |
Returns TRUE if any one of the UUIDs in the given array is found in the target service.
- (BOOL)hasServiceFromArray:(NSArray *)array;
array
An NSArray of IOBluetoothSDPUUID objects to search for in the target service.
Returns TRUE if any of the given UUIDs are present in the service.
The given array should contain IOBluetoothSDPUUID objects. It is currently implemented such that it returns TRUE if any of the UUIDs are found. However in the future, it is likely that this will change to more closely match the functionality in the SDP spec so that it only returns TRUE if all of the given UUIDs are present. That way, both AND and OR comparisons can be implemented. Please make a note of this potential change.
matchesSearchArray: |
Returns TRUE any of the UUID arrays in the search array match the target service.
- (BOOL)matchesSearchArray:(NSArray *)searchArray;
array
An NSArray of NSArrays of IOBluetoothSDPUUID objects.
Returns TRUE if any of the UUID arrays match.
The given array should contain NSArray objects. Each sub-NSArray should contain IOBluetoothSDPUUID objects. In turn, each sub-NSArray gets passed to -matchesUUIDArray: If any of those returns TRUE, then the search stops and TRUE is returned. Essentially the master NSArray contains the OR operations and each sub-array contains the AND operations.
NOTE: This method is only available in Mac OS X 10.2.4 (Bluetooth v1.1) or later.
matchesUUIDArray: |
Returns TRUE if ALL of the UUIDs in the given array is found in the target service.
- (BOOL)matchesUUIDArray:(NSArray *)uuidArray;
array
An NSArray of IOBluetoothSDPUUID objects to search for in the target service.
Returns TRUE if all of the given UUIDs are present in the service.
The given array should contain IOBluetoothSDPUUID objects. It only returns TRUE if all of the UUIDs are found. This method is like hasServiceFromArray: except that it requires that all UUIDs match instead of any of them matching.
NOTE: This method is only available in Mac OS X 10.2.4 (Bluetooth v1.1) or later.
withSDPServiceRecordRef: |
Method call to convert an IOBluetoothSDPServiceRecordRef into an IOBluetoothSDPServiceRecord *.
+ (IOBluetoothSDPServiceRecord *)withSDPServiceRecordRef:(IOBluetoothSDPServiceRecordRef)sdpServiceRecordRef;
sdpServiceRecordRef
IOBluetoothSDPServiceRecordRef for which an IOBluetoothSDPServiceRecord * is desired.
Returns the IOBluetoothSDPServiceRecord * for the given IOBluetoothSDPServiceRecordRef.
|
Last Updated: 2008-08-07