X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=doc%2Fafb-application-writing.md;h=14199f62c5f0778c128d67595b117032e3a7291d;hb=c9bb1cec405741d5721dfcafb35b187c6f182a6f;hp=1fd02e5f8808fdb6797d33e72612432282f5e722;hpb=16ac46f9966c85f5d8c3b766efb8df1417aa5ce2;p=src%2Fapp-framework-binder.git diff --git a/doc/afb-application-writing.md b/doc/afb-application-writing.md index 1fd02e5f..14199f62 100644 --- a/doc/afb-application-writing.md +++ b/doc/afb-application-writing.md @@ -1,10 +1,6 @@ + HOWTO WRITE an APPLICATION above AGL FRAMEWORK ============================================== - version: 1 - Date: 09 juin 2016 - Author: José Bollo - -TABLE-OF-CONTENT-HERE Programmation Languages for Applications ----------------------------------------- @@ -166,6 +162,8 @@ Checking on closed session for uuid should be refused: #### Using afb-client-demo +> The program is packaged within AGL in the rpm **libafbwsc-dev** + Here is an example of exchange using **afb-client-demo**: $ afb-client-demo ws://localhost:1234/api?token=123456 @@ -202,6 +200,24 @@ Replies use javascript object returned as serialized JSON. This object contains at least 2 mandatory fields of name **jtype** and **request** and one optional field of name **response**. +### Template + +This is a template of replies: + +```json +{ + "jtype": "afb-reply", + "request": { + "status": "success", + "info": "informationnal text", + "token": "e83b36f8-d945-463d-b983-5d8ed73ba52", + "uuid": "5fcc3f3d-4b84-4fc7-ba66-2d8bd34ae7d1", + "reqid": "application-generated-id-23456" + }, + "response": ....any response object.... +} +``` + ### Field jtype The field **jtype** must have a value of type string equal to **"afb-reply"**. @@ -240,19 +256,39 @@ Value returns in the reply has the exact same value as the one received in the r This field response optionally contains an object returned when request succeeded. +Format of events +---------------- + +Events are javascript object serialized as JSON. + +This object contains at least 2 mandatory fields of name **jtype** and **event** +and one optional field of name **data**. + ### Template -This is a template of replies: +Here is a template of event: - { - "jtype": "afb-reply", - "request": { - "status": "success", - "info": "informationnal text", - "token": "e83b36f8-d945-463d-b983-5d8ed73ba52", - "uuid": "5fcc3f3d-4b84-4fc7-ba66-2d8bd34ae7d1", - "reqid": "application-generated-id-23456" - }, - "response": ....any response object.... - } +```json +{ + "jtype": "afb-event", + "event": "sample_api_name/sample_event_name", + "data": ...any event data... +} +``` + +### Field jtype + +The field **jtype** must have a value of type string equal to **"afb-event"**. + +### Field event + +The field **event** carries the event's name. + +The name of the event is made of two parts separated by a slash: +the name of the name of the API that generated the event +and the name of event within the API. + +### Field data + +This field data if present holds the data carried by the event.