All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Sim Access Profile API
@ 2011-02-07 12:41 Harald Schmitt
  2011-02-07 12:49 ` Harald Schmitt
  0 siblings, 1 reply; 5+ messages in thread
From: Harald Schmitt @ 2011-02-07 12:41 UTC (permalink / raw)
  To: linux-bluetooth

New API for Sim Access Profile by Waldemar Rymarkiewicz
---
 Makefile.am     |    3 ++-
 doc/sap-api.txt |   34 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 1 deletions(-)
 create mode 100644 doc/sap-api.txt

diff --git a/Makefile.am b/Makefile.am
index e6639a7..7975dfa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -354,7 +354,8 @@ EXTRA_DIST += doc/manager-api.txt \
 		doc/service-api.txt doc/agent-api.txt doc/attribute-api.txt \
 		doc/serial-api.txt doc/network-api.txt \
 		doc/input-api.txt doc/audio-api.txt doc/control-api.txt \
-		doc/hfp-api.txt doc/health-api.txt doc/assigned-numbers.txt
+		doc/hfp-api.txt doc/health-api.txt doc/sap-api.txt \
+		doc/assigned-numbers.txt
  AM_YFLAGS = -d
 diff --git a/doc/sap-api.txt b/doc/sap-api.txt
new file mode 100644
index 0000000..b8b7253
--- /dev/null
+++ b/doc/sap-api.txt
@@ -0,0 +1,34 @@
+BlueZ D-Bus Sim Access Profile API description
+***********************************
+
+Copyright (C) 2010 ST-Ericsson SA
+
+
+Sim Access Profile hierarchy
+============================
+
+Service		org.bluez
+Interface	org.bluez.SimAccess
+Object path	[variable prefix]/{hci0,hci1,...}
+
+Methods		void Disconnect()
+
+			Disconnects SAP client from the server.
+
+			Possible errors: org.bluez.Error.Failed
+
+		dict GetProperties()
+
+			Return all properties for the interface. See the
+			properties section for available properties.
+
+			Possible Errors: org.bluez.Error.Failed
+
+Signals		PropertyChanged(string name, variant value)
+
+			This signal indicates a changed value of the given
+			property.
+
+Properties	boolean Connected [readonly]
+
+			Indicates if SAP client is connected to the server.
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Sim Access Profile API
  2011-02-07 12:41 [PATCH] Sim Access Profile API Harald Schmitt
@ 2011-02-07 12:49 ` Harald Schmitt
  2011-02-07 13:31   ` Waldemar.Rymarkiewicz
  0 siblings, 1 reply; 5+ messages in thread
From: Harald Schmitt @ 2011-02-07 12:49 UTC (permalink / raw)
  To: linux-bluetooth

Am 07.02.2011 13:41, schrieb Harald Schmitt:
> New API for Sim Access Profile by Waldemar Rymarkiewicz
> ---
>  Makefile.am     |    3 ++-
>  doc/sap-api.txt |   34 ++++++++++++++++++++++++++++++++++
>  2 files changed, 36 insertions(+), 1 deletions(-)
>  create mode 100644 doc/sap-api.txt
> 
> diff --git a/Makefile.am b/Makefile.am
> index e6639a7..7975dfa 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -354,7 +354,8 @@ EXTRA_DIST += doc/manager-api.txt \
>  		doc/service-api.txt doc/agent-api.txt doc/attribute-api.txt \
>  		doc/serial-api.txt doc/network-api.txt \
>  		doc/input-api.txt doc/audio-api.txt doc/control-api.txt \
> -		doc/hfp-api.txt doc/health-api.txt doc/assigned-numbers.txt
> +		doc/hfp-api.txt doc/health-api.txt doc/sap-api.txt \
> +		doc/assigned-numbers.txt
>   AM_YFLAGS = -d
>  diff --git a/doc/sap-api.txt b/doc/sap-api.txt
> new file mode 100644
> index 0000000..b8b7253
> --- /dev/null
> +++ b/doc/sap-api.txt
> @@ -0,0 +1,34 @@
> +BlueZ D-Bus Sim Access Profile API description
> +***********************************
> +
> +Copyright (C) 2010 ST-Ericsson SA
> +
> +
> +Sim Access Profile hierarchy
> +============================
> +
> +Service		org.bluez
> +Interface	org.bluez.SimAccess
> +Object path	[variable prefix]/{hci0,hci1,...}
> +
> +Methods		void Disconnect()
> +
> +			Disconnects SAP client from the server.
> +
> +			Possible errors: org.bluez.Error.Failed
> +
> +		dict GetProperties()
> +
> +			Return all properties for the interface. See the
> +			properties section for available properties.
> +
> +			Possible Errors: org.bluez.Error.Failed
> +
> +Signals		PropertyChanged(string name, variant value)
> +
> +			This signal indicates a changed value of the given
> +			property.
> +
> +Properties	boolean Connected [readonly]
> +
> +			Indicates if SAP client is connected to the server.

I took the patch from Waldemar Rymarkiewicz (2010-12-02) and did the
restructuring in Makefile.am as commented from Gustavo F. Padovan.
Are there any other comments?

Best regards,
Harald

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] Sim Access Profile API
  2011-02-07 12:49 ` Harald Schmitt
@ 2011-02-07 13:31   ` Waldemar.Rymarkiewicz
  2011-02-07 13:44     ` Harald Schmitt
  0 siblings, 1 reply; 5+ messages in thread
From: Waldemar.Rymarkiewicz @ 2011-02-07 13:31 UTC (permalink / raw)
  To: linux, linux-bluetooth

Hi, 

>Am 07.02.2011 13:41, schrieb Harald Schmitt:
>> New API for Sim Access Profile by Waldemar Rymarkiewicz
>> ---
>>  Makefile.am     |    3 ++-
>>  doc/sap-api.txt |   34 ++++++++++++++++++++++++++++++++++
>>  2 files changed, 36 insertions(+), 1 deletions(-)  create 
>mode 100644 
>> doc/sap-api.txt
>> 
>> diff --git a/Makefile.am b/Makefile.am index e6639a7..7975dfa 100644
>> --- a/Makefile.am
>> +++ b/Makefile.am
>> @@ -354,7 +354,8 @@ EXTRA_DIST += doc/manager-api.txt \
>>  		doc/service-api.txt doc/agent-api.txt 
>doc/attribute-api.txt \
>>  		doc/serial-api.txt doc/network-api.txt \
>>  		doc/input-api.txt doc/audio-api.txt 
>doc/control-api.txt \
>> -		doc/hfp-api.txt doc/health-api.txt 
>doc/assigned-numbers.txt
>> +		doc/hfp-api.txt doc/health-api.txt doc/sap-api.txt \
>> +		doc/assigned-numbers.txt
>>   AM_YFLAGS = -d
>>  diff --git a/doc/sap-api.txt b/doc/sap-api.txt new file mode 100644 
>> index 0000000..b8b7253
>> --- /dev/null
>> +++ b/doc/sap-api.txt
>> @@ -0,0 +1,34 @@
>> +BlueZ D-Bus Sim Access Profile API description
>> +***********************************
>> +
>> +Copyright (C) 2010 ST-Ericsson SA
>> +
>> +
>> +Sim Access Profile hierarchy
>> +============================
>> +
>> +Service		org.bluez
>> +Interface	org.bluez.SimAccess
>> +Object path	[variable prefix]/{hci0,hci1,...}
>> +
>> +Methods		void Disconnect()
>> +
>> +			Disconnects SAP client from the server.
>> +
>> +			Possible errors: org.bluez.Error.Failed
>> +
>> +		dict GetProperties()
>> +
>> +			Return all properties for the interface. See the
>> +			properties section for available properties.
>> +
>> +			Possible Errors: org.bluez.Error.Failed
>> +
>> +Signals		PropertyChanged(string name, variant value)
>> +
>> +			This signal indicates a changed value 
>of the given
>> +			property.
>> +
>> +Properties	boolean Connected [readonly]
>> +
>> +			Indicates if SAP client is connected to 
>the server.
>
>I took the patch from Waldemar Rymarkiewicz (2010-12-02) and 
>did the restructuring in Makefile.am as commented from Gustavo 
>F. Padovan.
>Are there any other comments?


What kind of restructuring did you do? I cannot notice any difference.
Is this just a rebase ?

Thanks,
/Waldek

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Sim Access Profile API
  2011-02-07 13:31   ` Waldemar.Rymarkiewicz
@ 2011-02-07 13:44     ` Harald Schmitt
  2011-02-07 13:58       ` Waldemar.Rymarkiewicz
  0 siblings, 1 reply; 5+ messages in thread
From: Harald Schmitt @ 2011-02-07 13:44 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Waldemar.Rymarkiewicz

Am 07.02.2011 14:31, schrieb Waldemar.Rymarkiewicz@tieto.com:
> Hi, 
> 
>> Am 07.02.2011 13:41, schrieb Harald Schmitt:
>>> New API for Sim Access Profile by Waldemar Rymarkiewicz
>>> ---
>>>  Makefile.am     |    3 ++-
>>>  doc/sap-api.txt |   34 ++++++++++++++++++++++++++++++++++
>>>  2 files changed, 36 insertions(+), 1 deletions(-)  create 
>> mode 100644 
>>> doc/sap-api.txt
>>>
>>> diff --git a/Makefile.am b/Makefile.am index e6639a7..7975dfa 100644
>>> --- a/Makefile.am
>>> +++ b/Makefile.am
>>> @@ -354,7 +354,8 @@ EXTRA_DIST += doc/manager-api.txt \
>>>  		doc/service-api.txt doc/agent-api.txt 
>> doc/attribute-api.txt \
>>>  		doc/serial-api.txt doc/network-api.txt \
>>>  		doc/input-api.txt doc/audio-api.txt 
>> doc/control-api.txt \
>>> -		doc/hfp-api.txt doc/health-api.txt 
>> doc/assigned-numbers.txt
>>> +		doc/hfp-api.txt doc/health-api.txt doc/sap-api.txt \
>>> +		doc/assigned-numbers.txt
>>>   AM_YFLAGS = -d
>>>  diff --git a/doc/sap-api.txt b/doc/sap-api.txt new file mode 100644 
>>> index 0000000..b8b7253
>>> --- /dev/null
>>> +++ b/doc/sap-api.txt
>>> @@ -0,0 +1,34 @@
>>> +BlueZ D-Bus Sim Access Profile API description
>>> +***********************************
>>> +
>>> +Copyright (C) 2010 ST-Ericsson SA
>>> +
>>> +
>>> +Sim Access Profile hierarchy
>>> +============================
>>> +
>>> +Service		org.bluez
>>> +Interface	org.bluez.SimAccess
>>> +Object path	[variable prefix]/{hci0,hci1,...}
>>> +
>>> +Methods		void Disconnect()
>>> +
>>> +			Disconnects SAP client from the server.
>>> +
>>> +			Possible errors: org.bluez.Error.Failed
>>> +
>>> +		dict GetProperties()
>>> +
>>> +			Return all properties for the interface. See the
>>> +			properties section for available properties.
>>> +
>>> +			Possible Errors: org.bluez.Error.Failed
>>> +
>>> +Signals		PropertyChanged(string name, variant value)
>>> +
>>> +			This signal indicates a changed value 
>> of the given
>>> +			property.
>>> +
>>> +Properties	boolean Connected [readonly]
>>> +
>>> +			Indicates if SAP client is connected to 
>> the server.
>>
>> I took the patch from Waldemar Rymarkiewicz (2010-12-02) and 
>> did the restructuring in Makefile.am as commented from Gustavo 
>> F. Padovan.
>> Are there any other comments?
> 
> 
> What kind of restructuring did you do? I cannot notice any difference.
> Is this just a rebase ?
> 
It is a rebase in the end. The only change is that I put
doc/assigned-numbers.txt at the end of EXTRA_DIST as commented by
Gustavo. Feel free to submit it again with your credentials. I just
wanted to see if this very, very small change prevented your patch from
being pushed. As I am very keen to see a progress on SimAccess.

Best regards,
Harald

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] Sim Access Profile API
  2011-02-07 13:44     ` Harald Schmitt
@ 2011-02-07 13:58       ` Waldemar.Rymarkiewicz
  0 siblings, 0 replies; 5+ messages in thread
From: Waldemar.Rymarkiewicz @ 2011-02-07 13:58 UTC (permalink / raw)
  To: linux, linux-bluetooth, marcel; +Cc: padovan, johan.hedberg

Hi,

>> What kind of restructuring did you do? I cannot notice any=20
>difference.
>> Is this just a rebase ?
>>=20
>It is a rebase in the end. The only change is that I put=20
>doc/assigned-numbers.txt at the end of EXTRA_DIST as commented=20
>by Gustavo. Feel free to submit it again with your=20
>credentials. I just wanted to see if this very, very small=20
>change prevented your patch from being pushed. As I am very=20
>keen to see a progress on SimAccess.

I see. I guess that's not the blocking point in this case.

@Marcel\Gustavo: Could you find some time to put your comment on this api? =
=20
If it's fine I'll adjust server code to that API.

Thanks,
/Waldek

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-02-07 13:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-07 12:41 [PATCH] Sim Access Profile API Harald Schmitt
2011-02-07 12:49 ` Harald Schmitt
2011-02-07 13:31   ` Waldemar.Rymarkiewicz
2011-02-07 13:44     ` Harald Schmitt
2011-02-07 13:58       ` Waldemar.Rymarkiewicz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.