Bundles / src / view /

view_source.c

  1. /*
  2. * Copyright (c) 2016 Samsung Electronics Co., Ltd
  3. *
  4. * Licensed under the Flora License, Version 1.1 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://floralicense.org/license/
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16.  
  17. #include <app.h>
  18. #include <efl_extension.h>
  19. #include "$(appName).h"
  20. #include "view/view_source.h"
  21. #include "view/view_common.h"
  22. #include "view/view_sink.h"
  23. #include "view/view_list.h"
  24. #include "view_defines.h"
  25. #include "data.h"
  26.  
  27. #define ENTRY_FORMAT "DEFAULT='font=BreezeSans:style=Light color=#000000 font_size=26 wrap=mixed align=center'"
  28. #define FORMAT(type) "%s: "type"<br><type>Type: %s</type>"
  29.  
  30. static struct view_info {
  31. Evas_Object *layout;
  32. Elm_Entry_Filter_Accept_Set accept_set;
  33. Evas_Object *list;
  34. Elm_Genlist_Item_Class *itc_item;
  35. Elm_Genlist_Item_Class *itc_header_data;
  36. Elm_Genlist_Item_Class *itc_header;
  37. Elm_Object_Item *header;
  38. Elm_Object_Item *header_data;
  39. bool is_byte;
  40. bool include_header;
  41. } s_info = {
  42. .layout = NULL,
  43. .is_byte = true,
  44. .include_header = false,
  45. .list = NULL,
  46. .itc_item = NULL,
  47. .itc_header_data = NULL,
  48. .itc_header = NULL,
  49. .header = NULL,
  50. .header_data = NULL,
  51. .accept_set = {
  52. .accepted = "0123456789",
  53. .rejected = NULL,
  54. }
  55. };
  56.  
  57. static bool _create_entry(char *part_name);
  58. static void _add_button_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source);
  59. static void _send_button_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source);
  60. static void _data_type_selected_cb(void *data, Evas_Object *obj, const char *emission, const char *source);
  61. static void _header_include_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source);
  62. static void _number_only(void);
  63. static Evas_Object *_item_content_get_cb(void *data, Evas_Object *obj, const char *part);
  64. static Evas_Object *_header_content_get_cb(void *data, Evas_Object *obj, const char *part);
  65. static Evas_Object *_header_data_content_get_cb(void *data, Evas_Object *obj, const char *part);
  66. static bool _create_list(void);
  67. static void _tree_item_expanded(void *data, Evas_Object *obj, void *event_info);
  68. static void _set_header_state(bool header_state);
  69. static void _entry_text_changed_cb(void *data, Evas_Object *obj, void *event_info);
  70. static void _list_item_selected_cb(void *data, Evas_Object *obj, void *event_info);
  71.  
  72. /**
  73. * @brief Function which creates the source view.
  74. * @return The function returns 'EINA_TRUE' if the main layout was created successfully,
  75. * otherwise 'EINA_FALSE' is returned.
  76. */
  77. bool view_source_create(Evas_Object *parent)
  78. {
  79. s_info.layout = view_create_layout(parent, EDJ_SOURCE_FILE_NAME, GROUP_SOURCE);
  80. if (!s_info.layout) {
  81. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] s_info.layout == NULL", __FILE__, __LINE__);
  82. return false;
  83. }
  84.  
  85. if (!_create_entry(PART_SOURCE_KEY)) {
  86. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] _create_entry() failed. Part: %s", __FILE__, __LINE__, PART_SOURCE_KEY);
  87. return false;
  88. }
  89.  
  90. if (!_create_entry(PART_SOURCE_VALUE)) {
  91. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] _create_entry() failed. Part: %s", __FILE__, __LINE__, PART_SOURCE_VALUE);
  92. return false;
  93. }
  94.  
  95. if (!_create_list()) {
  96. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] _create_list() == NULL", __FILE__, __LINE__);
  97. return false;
  98. }
  99.  
  100. elm_layout_signal_callback_add(s_info.layout, SIGNAL_SOURCE_ADD, "", _add_button_clicked_cb, NULL);
  101. elm_layout_signal_callback_add(s_info.layout, SIGNAL_SOURCE_SEND, "", _send_button_clicked_cb, NULL);
  102.  
  103. elm_layout_signal_callback_add(s_info.layout, SIGNAL_SOURCE_BYTE_SELECTED, "", _data_type_selected_cb, (void *)true);
  104. elm_layout_signal_callback_add(s_info.layout, SIGNAL_SOURCE_STRING_SELECTED, "", _data_type_selected_cb, (void *)false);
  105.  
  106. elm_layout_signal_callback_add(s_info.layout, SIGNAL_SOURCE_INCLUDE_CHECKED, "", _header_include_clicked_cb, (void*)true);
  107. elm_layout_signal_callback_add(s_info.layout, SIGNAL_SOURCE_INCLUDE_UNCHECKED, "", _header_include_clicked_cb, (void*)false);
  108.  
  109. evas_object_size_hint_weight_set(s_info.layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
  110.  
  111. _number_only();
  112.  
  113. return true;
  114. }
  115.  
  116. /**
  117. * @brief Function called when the source view is going to be destroyed.
  118. */
  119. void view_source_finalize(void)
  120. {
  121. elm_genlist_item_class_free(s_info.itc_item);
  122. }
  123.  
  124. /**
  125. * @brief Returns a pointer to the source view's layout.
  126. * @return The layout object.
  127. */
  128. Evas_Object *view_source_get(void)
  129. {
  130. return s_info.layout;
  131. }
  132.  
  133. /**
  134. * @brief Internal functions creates a genlist and class items used by it.
  135. * @return true on success or false on fail.
  136. */
  137. static bool _create_list(void)
  138. {
  139. s_info.list = view_list_create(s_info.layout);
  140. if (!s_info.list) {
  141. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] s_info.list == NULL", __FILE__, __LINE__);
  142. return false;
  143. }
  144.  
  145. s_info.itc_item = view_list_add_itc(_item_content_get_cb, NULL);
  146. if (!s_info.itc_item) {
  147. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] s_info.itc == NULL", __FILE__, __LINE__);
  148. return false;
  149. }
  150.  
  151. s_info.itc_header_data = view_list_add_itc(_header_data_content_get_cb, NULL);
  152. if (!s_info.itc_header_data) {
  153. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] s_info.itc_sub == NULL", __FILE__, __LINE__);
  154. return false;
  155. }
  156.  
  157. s_info.itc_header = view_list_add_itc(_header_content_get_cb, NULL);
  158. if (!s_info.itc_header) {
  159. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] s_info.itc_tree == NULL", __FILE__, __LINE__);
  160. return false;
  161. }
  162.  
  163. view_list_add_tree_callbacks(s_info.list, s_info.itc_header, s_info.itc_header_data, _tree_item_expanded, view_common_tree_item_contracted_cb);
  164.  
  165. if (!elm_layout_content_set(s_info.layout, PART_LIST, s_info.list)) {
  166. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] Failed to set entry as a swallow %s", __FILE__, __LINE__, PART_LIST);
  167. return false;
  168. }
  169.  
  170. return true;
  171. }
  172.  
  173. /**
  174. * @brief Internal function that creates an entry widget and ads it to the layout.
  175. * @param[in] part_name The part where the entry will be added.
  176. * @return true on success or false on fail.
  177. */
  178. static bool _create_entry(char *part_name)
  179. {
  180. Evas_Object *entry = elm_entry_add(s_info.layout);
  181. if (!entry) {
  182. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] entry == NULL", __FILE__, __LINE__);
  183. return false;
  184. }
  185.  
  186. elm_entry_text_style_user_push(entry, ENTRY_FORMAT);
  187. elm_entry_single_line_set(entry, EINA_TRUE);
  188. evas_object_size_hint_weight_set(entry, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
  189.  
  190. if (!elm_layout_content_set(s_info.layout, part_name, entry)) {
  191. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] Failed to set entry as a swallow %s", __FILE__, __LINE__, part_name);
  192. return false;
  193. }
  194.  
  195. evas_object_smart_callback_add(entry, "changed", _entry_text_changed_cb, NULL);
  196.  
  197. return true;
  198. }
  199.  
  200. /**
  201. * @brief Internal function that filters the keyboard input based on the type of the data value used.
  202. */
  203. static void _number_only(void)
  204. {
  205. Evas_Object *entry = elm_layout_content_get(s_info.layout, PART_SOURCE_VALUE);
  206. Elm_Input_Panel_Layout panel_layout = ELM_INPUT_PANEL_LAYOUT_NORMAL;
  207.  
  208. elm_entry_markup_filter_remove(entry, elm_entry_filter_accept_set, &s_info.accept_set);
  209.  
  210. if (s_info.is_byte) {
  211. s_info.accept_set.accepted = "0123456789";
  212. panel_layout = ELM_INPUT_PANEL_LAYOUT_NUMBER;
  213. } else {
  214. s_info.accept_set.accepted = NULL;
  215. panel_layout = ELM_INPUT_PANEL_LAYOUT_NORMAL;
  216. }
  217.  
  218. elm_entry_input_panel_layout_set(entry, panel_layout);
  219. elm_entry_markup_filter_append(entry, elm_entry_filter_accept_set, &s_info.accept_set);
  220. }
  221.  
  222. /**
  223. * @brief Internal callback function invoked when the add button is clicked.
  224. * @param[in] data The user data.
  225. * @param[in] obj The layout object.
  226. * @param[in] emission The emitted signal.
  227. * @param[in] source The signal's source.
  228. */
  229. static void _add_button_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
  230. {
  231. const char *key = elm_object_text_get(elm_layout_content_get(s_info.layout, PART_SOURCE_KEY));
  232. const char *val = elm_object_text_get(elm_layout_content_get(s_info.layout, PART_SOURCE_VALUE));
  233. Evas_Object *entry_1 = elm_layout_content_get(s_info.layout, PART_SOURCE_KEY);
  234. Evas_Object *entry_2 = elm_layout_content_get(s_info.layout, PART_SOURCE_VALUE);
  235. bool ret = false;
  236. bool exists = data_key_exists(-1, key);
  237.  
  238.  
  239. if (elm_entry_is_empty(entry_1) || elm_entry_is_empty(entry_2))
  240. return;
  241.  
  242. if (s_info.is_byte)
  243. data_add_byte(key, atoi(val));
  244. else
  245. data_add_string(key, val);
  246.  
  247. if (!exists)
  248. view_list_add_item(s_info.list, s_info.itc_item, ELM_GENLIST_ITEM_NONE, NULL, (void*)strdup(key), false, ELM_OBJECT_SELECT_MODE_DEFAULT, _list_item_selected_cb, NULL);
  249. else
  250. view_list_update(s_info.list);
  251.  
  252. if (s_info.include_header) {
  253. if (data_add_header())
  254. view_list_item_update(s_info.header);
  255.  
  256. if (elm_genlist_item_expanded_get(s_info.header)) {
  257. elm_genlist_item_expanded_set(s_info.header, EINA_FALSE);
  258. elm_genlist_item_expanded_set(s_info.header, EINA_TRUE);
  259. }
  260. }
  261.  
  262. elm_layout_signal_emit(s_info.layout, SIGNAL_SEND_ON, "");
  263. dlog_print(DLOG_INFO, LOG_TAG, "[%s:%d] %s [%s=%s] %d", __FILE__, __LINE__, emission, key, val, ret);
  264. }
  265.  
  266. /**
  267. * @brief Internal callback function invoked when the send button is clicked. It is used to send data stored in the bundle object using the message system.
  268. * @param[in] data The user data.
  269. * @param[in] obj The layout object.
  270. * @param[in] emission The emitted signal.
  271. * @param[in] source The signal's source.
  272. */
  273. static void _send_button_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
  274. {
  275. dlog_print(DLOG_INFO, LOG_TAG, "[%s:%d] %s", __FILE__, __LINE__, emission);
  276.  
  277. if (data_get_count(-1) == 0 || (data_get_count(-1) == 2 && data_key_exists(-1, BUNDLE_HEADER_KEY)))
  278. return;
  279.  
  280. if (data_send_message())
  281. view_common_create_popup(s_info.layout, "Message sent.");
  282. else
  283. view_common_create_popup(s_info.layout, "Failed to send the message.");
  284.  
  285. _set_header_state(false);
  286. data_clear_bundle();
  287. elm_genlist_clear(s_info.list);
  288. elm_layout_signal_emit(s_info.layout, SIGNAL_HEADER_OFF, "");
  289. elm_layout_signal_emit(s_info.layout, SIGNAL_SEND_OFF, "");
  290. }
  291.  
  292. /**
  293. * @brief Internal callback function invoked when the data type radio changes it's state.
  294. * @param[in] data The user data.
  295. * @param[in] obj The layout object.
  296. * @param[in] emission The emitted signal.
  297. * @param[in] source The signal's source.
  298. */
  299. static void _data_type_selected_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
  300. {
  301. Evas_Object *entry = elm_layout_content_get(s_info.layout, PART_SOURCE_VALUE);
  302. s_info.is_byte = (bool)data;
  303. _number_only();
  304. elm_object_text_set(entry, "");
  305.  
  306. dlog_print(DLOG_INFO, LOG_TAG, "[%s:%d] %s %d", __FILE__, __LINE__, emission, s_info.is_byte);
  307. }
  308.  
  309. /**
  310. * @brief Internal function that adds or remove a header item from the list.
  311. * @param[in] header_state true - add header, false - remove header.
  312. */
  313. static void _set_header_state(bool header_state)
  314. {
  315. s_info.include_header = header_state;
  316.  
  317. if (s_info.include_header) {
  318. if (data_add_header())
  319. s_info.header = view_list_add_item(s_info.list, s_info.itc_header, ELM_GENLIST_ITEM_TREE, NULL, (void*)strdup(BUNDLE_HEADER_KEY), true, ELM_OBJECT_SELECT_MODE_DEFAULT, NULL, NULL);
  320. } else {
  321. data_delete_key(-1, BUNDLE_HEADER_KEY);
  322. data_delete_key(-1, BUNDLE_HEADER_DATA_KEY);
  323.  
  324. view_list_del_item(s_info.list, s_info.header);
  325. }
  326. }
  327.  
  328. /**
  329. * @brief Internal callback function invoked when the add header checkbox changes its state.
  330. * @param[in] data The user data.
  331. * @param[in] obj The layout object.
  332. * @param[in] emission The emitted signal.
  333. * @param[in] source The signal's source.
  334. */
  335. static void _header_include_clicked_cb(void *data, Evas_Object *obj, const char *emission, const char *source)
  336. {
  337. _set_header_state((bool)data);
  338. dlog_print(DLOG_INFO, LOG_TAG, "[%s:%d] %s %d", __FILE__, __LINE__, emission, s_info.include_header);
  339. }
  340.  
  341. /**
  342. * @brief Internal callback function invoked when a data item is realized.
  343. * @param[in] data User data.
  344. * @param[in] obj genlist object.
  345. * @param[in] part The part where the data item's layout will be embedded.
  346. * @return The created layout.
  347. */
  348. static Evas_Object *_item_content_get_cb(void *data, Evas_Object *obj, const char *part)
  349. {
  350. char *key = (char*)data;
  351. char buf[NAME_MAX] = {0,};
  352.  
  353. Evas_Object *item_layout = view_create_layout(obj, EDJ_SOURCE_FILE_NAME, GROUP_SOURCE_ITEM);
  354. if (!item_layout) {
  355. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] item_layout == NULL", __FILE__, __LINE__);
  356. return NULL;
  357. }
  358.  
  359. if (data_is_byte(-1, key)) {
  360. dlog_print(DLOG_INFO, LOG_TAG, "[%s:%d] INT: [%s = %d](%s)", __FILE__, __LINE__, key, data_get_byte(-1, key), data_get_type_text(-1, key));
  361. snprintf(buf, NAME_MAX, FORMAT("%d"), key, data_get_byte(-1, key), data_get_type_text(-1, key));
  362. } else {
  363. dlog_print(DLOG_INFO, LOG_TAG, "[%s:%d] STR: [%s = %s](%s)", __FILE__, __LINE__, key, data_get_string(-1, key), data_get_type_text(-1, key));
  364. snprintf(buf, NAME_MAX, FORMAT("%s"), key, data_get_string(-1, key), data_get_type_text(-1, key));
  365. }
  366.  
  367. elm_layout_text_set(item_layout, PART_ITEM, buf);
  368.  
  369. return item_layout;
  370. }
  371.  
  372. /**
  373. * @brief Internal callback function invoked when a header item is realized.
  374. * @param[in] data User data.
  375. * @param[in] obj genlist object.
  376. * @param[in] part The part where the item's layout will be embedded.
  377. * @return The created layout.
  378. */
  379. static Evas_Object *_header_content_get_cb(void *data, Evas_Object *obj, const char *part)
  380. {
  381. char buf[NAME_MAX] = {0,};
  382. char *text = (char*)data;
  383.  
  384. Evas_Object *item_layout = view_create_layout(obj, EDJ_SOURCE_FILE_NAME, GROUP_SOURCE_HEADER);
  385. if (!item_layout) {
  386. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] item_layout == NULL", __FILE__, __LINE__);
  387. return NULL;
  388. }
  389.  
  390. dlog_print(DLOG_INFO, LOG_TAG, "Header count: %d", data_get_byte(-1, text));
  391. snprintf(buf, NAME_MAX, "Header count: %d", data_get_byte(-1, text));
  392.  
  393. elm_layout_text_set(item_layout, PART_ITEM, buf);
  394. if (elm_genlist_item_expanded_get(s_info.header)) {
  395. elm_layout_signal_emit(item_layout, SIGNAL_ARROW_STATE_CHANGE, "");
  396. }
  397.  
  398. return item_layout;
  399. }
  400.  
  401. /**
  402. * @brief Internal callback function invoked when a header data item is realized.
  403. * @param[in] data User data.
  404. * @param[in] obj genlist object.
  405. * @param[in] part The part where the item's layout will be embedded.
  406. * @return The created layout.
  407. */
  408. static Evas_Object *_header_data_content_get_cb(void *data, Evas_Object *obj, const char *part)
  409. {
  410. char *text = (char*)data;
  411. char **tokens = NULL;
  412. char buf[NAME_MAX] = {0,};
  413.  
  414. Evas_Object *item_layout = view_create_layout(obj, EDJ_SOURCE_FILE_NAME, GROUP_SOURCE_HEADER_DATA);
  415. if (!item_layout) {
  416. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] item_layout == NULL", __FILE__, __LINE__);
  417. return NULL;
  418. }
  419.  
  420. tokens = eina_str_split(text, "\2", 2);
  421. snprintf(buf, NAME_MAX, "<type>%s(%s)</type>", tokens[0], tokens[1]);
  422. elm_layout_text_set(item_layout, PART_ITEM, buf);
  423.  
  424. return item_layout;
  425. }
  426.  
  427. /**
  428. * @brief Internal callback function invoked when a TREE item is expanded.
  429. * @param[in] data User data.
  430. * @param[in] obj genlist object.
  431. * @param[in] event_info The expanded item.
  432. */
  433. static void _tree_item_expanded(void *data, Evas_Object *obj, void *event_info)
  434. {
  435. Elm_Object_Item *it_parent = (Elm_Object_Item*) event_info;
  436. Elm_Genlist_Item_Class *itc = data;
  437. Evas_Object *header = elm_object_item_part_content_get(it_parent, "elm.swallow.content");
  438. int i;
  439. int len;
  440. const char **values = data_get_string_array(-1, BUNDLE_HEADER_DATA_KEY, &len);
  441.  
  442. elm_layout_signal_emit(header, SIGNAL_ARROW_STATE_CHANGE, "");
  443.  
  444. for (i = 0; i < len; i++)
  445. view_list_add_item(obj, itc, ELM_GENLIST_ITEM_NONE, it_parent, (void*)strdup(values[i]), false, ELM_OBJECT_SELECT_MODE_NONE, NULL, NULL);
  446. }
  447.  
  448. /**
  449. * @brief Internal callback function invoked when the text in the key or value entries changes. It is used to check if the entries are empty. If they are, the add button is deactivated.
  450. * @param data User data.
  451. * @param obj The entry object.
  452. * @param event_info The event information.
  453. */
  454. static void _entry_text_changed_cb(void *data, Evas_Object *obj, void *event_info)
  455. {
  456. Evas_Object *entry_1 = elm_layout_content_get(s_info.layout, PART_SOURCE_KEY);
  457. Evas_Object *entry_2 = elm_layout_content_get(s_info.layout, PART_SOURCE_VALUE);
  458. static bool can_add = false;
  459. bool current = false;
  460.  
  461. current = elm_entry_is_empty(entry_1) || elm_entry_is_empty(entry_2);
  462.  
  463. if (current != can_add) {
  464. can_add = current;
  465.  
  466. if (current)
  467. elm_layout_signal_emit(s_info.layout, SIGNAL_ADD_OFF, "");
  468. else
  469. elm_layout_signal_emit(s_info.layout, SIGNAL_ADD_ON, "");
  470. }
  471. }
  472.  
  473. /**
  474. * @brief Callback function ivoked when a list item is selected. This function is used to update the texts in the key and value entries.
  475. * @param data User data.
  476. * @param obj The genlist
  477. * @param event_info The selected item.
  478. */
  479. static void _list_item_selected_cb(void *data, Evas_Object *obj, void *event_info)
  480. {
  481. Elm_Object_Item *item = (Elm_Object_Item *)event_info;
  482. char *key = (char *)elm_object_item_data_get(item);
  483. char buf[NAME_MAX] = {0,};
  484. Evas_Object *entry = elm_layout_content_get(s_info.layout, PART_SOURCE_KEY);
  485.  
  486. elm_object_text_set(entry, key);
  487. entry = elm_layout_content_get(s_info.layout, PART_SOURCE_VALUE);
  488. s_info.is_byte = data_is_byte(-1, key);
  489.  
  490. if (s_info.is_byte) {
  491. snprintf(buf, NAME_MAX, "%d", data_get_byte(-1, key));
  492. elm_object_text_set(entry, buf);
  493. elm_layout_signal_emit(s_info.layout, SIGNAL_SET_BYTE, "");
  494. } else {
  495. elm_object_text_set(entry, data_get_string(-1, key));
  496. elm_layout_signal_emit(s_info.layout, SIGNAL_SET_STRING, "");
  497. }
  498.  
  499. _number_only();
  500. }