⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbus-api.txt

📁 实现bluez蓝牙profile需要的库
💻 TXT
📖 第 1 页 / 共 3 页
字号:
D-Bus API description for BlueZ*******************************Copyright (C) 2004-2007  Marcel Holtmann <marcel@holtmann.org>Copyright (C) 2005-2006  Johan Hedberg <johan.hedberg@nokia.com>Copyright (C) 2005-2006  Claudio Takahasi <claudio.takahasi@indt.org.br>Copyright (C) 2005-2006  Eduardo Rocha <eduardo.rocha@indt.org.br>Constant definitions====================The class of device definition from the Bluetooth specification divides intothree different parts. It the major class, the minor class and the serviceclasses. The D-Bus interface will always use string constants to identifyany of these classes.Service classes		positioning, networking, rendering, capturing,			object transfer, audio, telephony, informationMajor classes		miscellaneous, computer, phone, access point,			audio/video, peripheral, imaging, wearable, toy,			uncategorizedMinor classes computer	uncategorized, desktop, server, laptop, handheld,			palm, wearableMinor classes phone	uncategorized, cellular, cordless, smart phone,			modem, isdnMinor classes access point	fully, 1-17 percent, 17-33 percent,			33-50 percent, 50-67 percent, 67-83 percent,			83-99 percent, not availableMinor classes audio video	uncategorized, headset, handsfree,microphone,			loudspeaker, headphones, portable audio, car audio,			set-top box, hifi audio, vcr, video camera, camcorder,			video monitor, video display and loudspeaker,			video conferencing, gaming/toy, unknownMinor classes peripheral	uncategorized, keyboard, pointing, comboMinor classes imaging	display, camera, scanner, printerMinor classes wearable	wrist watch, pager, jacket, helmet, glassesMinor classes toy	robot, vehicle, doll, controller, gameError hierarchy===============Interface	org.bluez.ErrorErrors		Failed			An unknown error occured. The error messages is			taken from the strerror(errno) function.		InvalidArguments			Error returned when the argument list is invalid or			out of specification for the method.		NotAuthorized			Error returned when the caller of a method is not			authorized. This might happen if a caller tries to			terminate a connection that it hasn't created.		OutOfMemory			Error returned when a memory allocation via malloc()			fails. This error is similar to ENOMEM.		NoSuchAdapter			Error returned when the requested adapter doesn't			exists. This error is similar to ENODEV.		NotReady			Error returned when the adapter is DOWN.		NotAvailable			Error returned when a specified record is not			available.		NotConnected			Error returned when the remote device isn't connected			at the moment.		ConnectionAttemptFailed		AlreadyExists			Error returned if a record for a specific procedure			already exists and it has been tried create a new			one. The error message however should indicate the			procedure that fails. For example "Bonding already			exists"		DoesNotExist			Error returned if a record for a specifc procedure			doesn't exist. The error message however should			indicate the procedure that fails. For example			"Bonding does not exist".		InProgress			Error returned if an operation is in progress. Since			this is a generic error that can be used in various			situations, the error message should be more clear			about what is in progress. For example "Bonding in			progress".		NotSupported			The feature is not supported by the remote device		AuthenticationFailed		AuthenticationTimeout		AuthenticationRejected		AuthenticationCanceled		UnsupportedMajorClassManager hierarchy=================Service		org.bluezInterface	org.bluez.ManagerObject path	/org/bluezMethods		uint32 InterfaceVersion()			Returns the current interface version. At the moment			only version 0 is supported.			Possible errors: org.bluez.Error.InvalidArguments		string DefaultAdapter()			Returns object path for the default adapter.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.NoSuchAdapter		string FindAdapter(string pattern)			Returns object path for the specified adapter. Valid			patterns are "hci0" or "00:11:22:33:44:55".			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.NoSuchAdapter		array{string} ListAdapters()			Returns list of adapter object paths under /org/bluez			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.Failed					 org.bluez.Error.OutOfMemory		string FindService(string pattern)			Returns object path for the specified service. Valid			patterns are the unqiue identifier or a bus name.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.NoSuchService		array{string} ListServices()			Returns list of object paths of current services.			Possible errors: org.bluez.Error.InvalidArguments		string ActivateService(string pattern)			Returns the unqiue bus id of the specified service.			Valid patterns are the same as for FindService(). If			the service is not running it will be started.Signals		void AdapterAdded(string path)			Parameter is object path of added adapter.		void AdapterRemoved(string path)			Parameter is object path of removed adapter.		void DefaultAdapterChanged(string path)			Parameter is object path of the new default adapter.		void ServiceAdded(string path)			Parameter is object path of registered service agent.		void ServiceRemoved(string path)			Parameter is object path of unregistered service agent.Database hierarchy==================Service		org.bluezInterface	org.bluez.DatabaseObject path	/org/bluez or /org/bluez/{hci0,hci1,...}Methods		void RegisterService(string identifier, string name, string description)			This method registers a new service specified by			its unique identifier. This is only needed for			services that are not started through the			Bluetooth daemon.		void UnregisterService(string identifier)			This method unregisters a service specified by			its unique identifier.		uint32 AddServiceRecord(array{byte})			Adds a new service record and returns the assigned			record handle.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.Failed		uint32 AddServiceRecordFromXML(string record)			Adds a new service record and returns the assigned			record handle.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.Failed		void UpdateServiceRecord(uint32 handle, array{byte})			Updates a given service record.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.NotAvailable					 org.bluez.Error.Failed		void UpdateServiceRecordFromXML(uint32 handle, string record)			Updates a given service record provided in the			XML format.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.NotAvailable					 org.bluez.Error.Failed		void RemoveServiceRecord(uint32 handle)			Remove a service record identified by its handle.			It is only possible to remove service records that			where added by the current connection.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.NotAuthorized					 org.bluez.Error.DoesNotExist					 org.bluez.Error.Failed		void RequestAuthorization(string address, string uuid)			This method gets called when a service wants to check			if a remote device is authorized to perform some			action. The authorization request is forwarded to an			authorization agent.			The address parameter is the Bluetooth address of the			remote device and the uuid is the identifier of the			profile requesting the authorization. This parameter			can also be left blank.		void CancelAuthorizationRequest(string address, string uuid)			This method cancels an authorization process requested			by a previous call to RequestAuthorization(). The			address and uuid parameters must match.Adapter hierarchy=================Service		org.bluezInterface	org.bluez.AdapterObject path	/org/bluez/{hci0,hci1,...}Methods		dict GetInfo()			Returns the properties of the local adapter.		string GetAddress()			Returns the device address for a given path.			Example: "00:11:22:33:44:55"			Possible errors: none		string GetVersion()			Returns the version of the Bluetooth chip. This version			is compiled from the LMP version. In case of EDR the			features attribute must be checked.			Example: "Bluetooth 2.0 + EDR"			Possible errors: none		string GetRevision()			Returns the revision of the Bluetooth chip. This is a			vendor specific value and in most cases it represents			the firmware version. This might derive from the HCI			revision and LMP subversion values or via extra vendor			specific commands.			In case the revision of a chip is not available. This			method should return the LMP subversion value as a			string.			Example: "HCI 19.2"			Possible errors: org.bluez.Error.Failed		string GetManufacturer()			Returns the manufacturer of the Bluetooth chip. If			the company id is not know the sting "Company ID %d"			where %d should be replaced with the numeric value			from the manufacturer field.			Example: "Cambridge Silicon Radio"			Possible errors: org.bluez.Error.Failed		string GetCompany()			Returns the company name from the OUI database of the			Bluetooth device address. This function will need a			valid and up-to-date oui.txt from the IEEE. This value			will be different from the manufacturer string in the			most cases.			If the oui.txt file is not present or the OUI part of			the BD_ADDR is not listed, it should return the			string "OUI %s" where %s is the actual OUI.			Example: "Apple Computer"			Possible errors: org.bluez.Error.Failed		array{string} ListAvailableModes()			Returns a list of available modes the adapter can			be switched into.		string GetMode()			Returns the current mode of a adapter.			Valid modes: "off", "connectable", "discoverable",					"limited".			Possible errors: none		void SetMode(string mode)			Sets mode of the adapter. See GetMode for valid strings			for the mode parameter.			Possible errors: org.bluez.Error.NoSuchAdapter					 org.bluez.Error.Failed		uint32 GetDiscoverableTimeout()			Returns the discoverable timeout in seconds. A value			of zero means that the timeout is disabled and it will			stay in discoverable/limited mode forever.			The default value for the discoverable timeout should			be 180 seconds (3 minutes).			Possible errors: none		void SetDiscoverableTimeout(uint32 timeout)			Sets the discoverable timeout in seconds. A value of			zero disables the timeout and the adapter would be			always discoverable/limited.			Changing this value doesn't set the adapter into			discoverable/limited mode. The SetMode method must be used.			Possible errors: org.bluez.Error.NotReady					 org.bluez.Error.InvalidArguments		boolean IsConnectable()			Returns true if the local adapter is connectable and			false if it is switched off.			It is also possible to use GetMode to retrieve this			information.			Possible errors: none		boolean IsDiscoverable()			Returns true if the local adapter is discoverable/limited			and false if it is only connectable or switched off.			It is also possible to use GetMode to retrieve this			information.			Possible errors: none		boolean IsConnected(string address)			Return true if the local adapter is connected to			the remote device.			Possible errors: org.bluez.Error.InvalidArguments		array{string} ListConnections()			Returns a list with addresses of currently connected			remote devices.			Possible errors: none		string GetMajorClass()			Returns the current major class value for this			system. Currently, only "computer" is supported.			For the other values, unsupported major class			error is returned.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.UnsupportedMajorClass		array{string} ListAvailableMinorClasses()			Returns a list of available minor classes for the			currently used major class. At the moment this should			only return a list of minor classes if the major			class is set to "computer".			If the major class is not "computer" an error should			be returned.			Possible errors: org.bluez.Error.InvalidArguments					 org.bluez.Error.UnsupportedMajorClass		string GetMinorClass()			Returns the current minor class value for this			system where the default major class is "computer".			If the major class is not "computer" an error should			be returned.			Valid values: "uncategorized", "desktop", "server",			              "laptop", "handheld", "palm", "wearable"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -