X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=doc%2Fapi-ref%2Fhtml%2Fdf%2Fd66%2Fhs-helper_8cpp.html;fp=doc%2Fapi-ref%2Fhtml%2Fdf%2Fd66%2Fhs-helper_8cpp.html;h=303434a9637f244a301ccc768bbe4b6afe2b80bf;hb=31ff5ce755d00cf12ea2ffc96c33ed9acd36358f;hp=0000000000000000000000000000000000000000;hpb=bbb4ee8e9974c4b008da84a1e504120f70606c92;p=apps%2Fagl-service-homescreen.git diff --git a/doc/api-ref/html/df/d66/hs-helper_8cpp.html b/doc/api-ref/html/df/d66/hs-helper_8cpp.html new file mode 100644 index 0000000..303434a --- /dev/null +++ b/doc/api-ref/html/df/d66/hs-helper_8cpp.html @@ -0,0 +1,449 @@ + + + + + + +HomeScreenBinding: src/hs-helper.cpp File Reference + + + + + + + + + + +
+
+ + + + + + +
+
HomeScreenBinding +
+
+
+ + + + + + +
+
+ + +
+ +
+ + +
+
+
+Functions | +Variables
+
+
hs-helper.cpp File Reference
+
+
+
#include <string.h>
+#include <cstdarg>
+#include "hs-helper.h"
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + + + +

+Functions

REQ_ERROR get_value_uint16 (const afb_req_t request, const char *source, uint16_t *out_id)
 
REQ_ERROR get_value_int16 (const afb_req_t request, const char *source, int16_t *out_id)
 
REQ_ERROR get_value_int32 (const afb_req_t request, const char *source, int32_t *out_id)
 
void hs_add_object_to_json_object (struct json_object *j_obj, int count,...)
 
void hs_add_object_to_json_object_str (struct json_object *j_obj, int count,...)
 
void hs_add_object_to_json_object_func (struct json_object *j_obj, const char *verb_name, int count,...)
 
int hs_search_event_name_index (const char *value)
 
+ + + +

+Variables

const char * evlist []
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
REQ_ERROR get_value_int16 (const afb_req_t request,
const char * source,
int16_t * out_id 
)
+
+

get int16 value from source

+

Parameters

+
    +
  • request : Describes the request by bindings from afb-daemon
  • +
  • source : input source
  • +
  • out_id : output int16 value
  • +
+

Return

+

error code

+ +

Definition at line 82 of file hs-helper.cpp.

+
83 {
84  char* endptr;
85  const char* tmp = afb_req_value (request, source);
86  if(!tmp)
87  {
88  return REQ_FAIL;
89  }
90  long tmp_id = strtol(tmp,&endptr,10);
91 
92  /* error check of range */
93  if( (tmp_id > INT16_MAX) || (tmp_id < INT16_MIN) )
94  {
95  return OUT_RANGE;
96  }
97  if(*endptr != '\0')
98  {
99  return NOT_NUMBER;
100  }
101 
102  *out_id = (int16_t)tmp_id;
103  return REQ_OK;
104 }
+ + + +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
REQ_ERROR get_value_int32 (const afb_req_t request,
const char * source,
int32_t * out_id 
)
+
+

get int32 value from source

+

Parameters

+
    +
  • request : Describes the request by bindings from afb-daemon
  • +
  • source : input source
  • +
  • out_id : output int32 value
  • +
+

Return

+

error code

+ +

Definition at line 118 of file hs-helper.cpp.

+
119 {
120  char* endptr;
121  const char* tmp = afb_req_value (request, source);
122  if(!tmp)
123  {
124  return REQ_FAIL;
125  }
126  long tmp_id = strtol(tmp,&endptr,10);
127 
128  /* error check of range */
129  if( (tmp_id > INT32_MAX) || (tmp_id < INT32_MIN) )
130  {
131  return OUT_RANGE;
132  }
133  if(*endptr != '\0')
134  {
135  return NOT_NUMBER;
136  }
137 
138  *out_id = (int32_t)tmp_id;
139  return REQ_OK;
140 }
+ + + +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
REQ_ERROR get_value_uint16 (const afb_req_t request,
const char * source,
uint16_t * out_id 
)
+
+

get uint16 value from source

+

Parameters

+
    +
  • request : Describes the request by bindings from afb-daemon
  • +
  • source : input source
  • +
  • out_id : output uint16 value
  • +
+

Return

+

error code

+ +

Definition at line 46 of file hs-helper.cpp.

+
47 {
48  char* endptr;
49  const char* tmp = afb_req_value (request, source);
50  if(!tmp)
51  {
52  return REQ_FAIL;
53  }
54  long tmp_id = strtol(tmp,&endptr,10);
55 
56  /* error check of range */
57  if( (tmp_id > UINT16_MAX) || (tmp_id < 0) )
58  {
59  return OUT_RANGE;
60  }
61  if(*endptr != '\0')
62  {
63  return NOT_NUMBER;
64  }
65 
66  *out_id = (uint16_t)tmp_id;
67  return REQ_OK;
68 }
+ + + +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
void hs_add_object_to_json_object (struct json_object * j_obj,
int count,
 ... 
)
+
+

add int object to json object

+

Parameters

+
    +
  • j_obj : the json object will join in int json object
  • +
  • count : input parameter number
  • +
  • ... : parameter list
  • +
+

Return

+

None

+ +

Definition at line 154 of file hs-helper.cpp.

+
155 {
156  va_list args;
157  va_start(args, count);
158  for(int i = 0; i < count; ++i )
159  {
160  char *key = va_arg(args, char*);
161  int value = va_arg(args, int);
162  json_object_object_add(j_obj, key, json_object_new_int((int32_t)value));
163  ++i;
164  }
165  va_end(args);
166 }
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void hs_add_object_to_json_object_func (struct json_object * j_obj,
const char * verb_name,
int count,
 ... 
)
+
+

add new json object to json object

+

Parameters

+
    +
  • j_obj : the json object will join in new json object
  • +
  • verb_name : new json object's verb value
  • +
  • count : input parameter number
  • +
  • ... : parameter list
  • +
+

Return

+

None

+ +

Definition at line 207 of file hs-helper.cpp.

+
208 {
209  va_list args;
210  va_start(args, count);
211 
212  json_object_object_add(j_obj,"verb", json_object_new_string(verb_name));
213 
214  for(int i = 0; i < count; ++i )
215  {
216  char *key = va_arg(args, char*);
217  int value = va_arg(args, int);
218  json_object_object_add(j_obj, key, json_object_new_int((int32_t)value));
219  ++i;
220  }
221  va_end(args);
222 }
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
void hs_add_object_to_json_object_str (struct json_object * j_obj,
int count,
 ... 
)
+
+

add string object to json object

+

Parameters

+
    +
  • j_obj : the json object will join in string json object
  • +
  • count : input parameter number
  • +
  • ... : parameter list
  • +
+

Return

+

None

+ +

Definition at line 180 of file hs-helper.cpp.

+
181 {
182  va_list args;
183  va_start(args, count);
184  for(int i = 0; i < count; ++i )
185  {
186  char *key = va_arg(args, char*);
187  char *value = va_arg(args, char*);
188  json_object_object_add(j_obj, key, json_object_new_string(value));
189  ++i;
190  }
191  va_end(args);
192 }
+
+
+ +
+
+ + + + + + + + +
int hs_search_event_name_index (const char * value)
+
+

search event position in event list

+

Parameters

+
    +
  • value : searched event name
  • +
+

Return

+

event's index in event list

+ +

Definition at line 234 of file hs-helper.cpp.

+
235 {
236  size_t buf_size = 50;
237  size_t size = sizeof evlist / sizeof *evlist;
238  int ret = -1;
239  for(size_t i = 0 ; i < size ; ++i)
240  {
241  if(!strncmp(value, evlist[i], buf_size))
242  {
243  ret = i;
244  break;
245  }
246  }
247  return ret;
248 }
const char * evlist[]
Definition: hs-helper.cpp:22
+
+
+
+

Variable Documentation

+ +
+
+ + + + +
const char* evlist[]
+
+Initial value:
= {
"tap_shortcut",
"on_screen_message",
"on_screen_reply",
"showWindow",
"hideWindow",
"replyShowWindow",
"showNotification",
"showInformation",
"reserved"
}
+

Definition at line 22 of file hs-helper.cpp.

+ +
+
+
+ + + +