2 * Copyright 2012 Samsung Electronics Co., Ltd
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
8 * http://floralicense.org/license/
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.
20 #include <runtime_info.h>
22 #include <unicode/udat.h>
23 #include <unicode/udatpg.h>
24 #include <unicode/ustring.h>
27 #include "indicator.h"
28 #include "indicator_ui.h"
29 #include "indicator_gui.h"
30 #include "indicator_icon_util.h"
31 #include "indicator_util.h"
34 #define SYSTEM_RESUME "system_wakeup"
36 #define TIME_FONT_SIZE_24 34
37 #define TIME_FONT_SIZE_12 30
38 #define TIME_FONT_SIZE_BATTERY 32
39 #define TIME_FONT_COLOR 243, 243, 243, 255
41 #define AMPM_FONT_SIZE 24
42 #define AMPM_FONT_COLOR 243, 243, 243, 255
43 #define LABEL_STRING "<font_size=%d>%s" \
46 #define BATTERY_TIMER_INTERVAL 3
47 #define BATTERY_TIMER_INTERVAL_CHARGING 30
49 #define CLOCK_STR_LEN 256
52 INDICATOR_CLOCK_MODE_12H = 0,
53 INDICATOR_CLOCK_MODE_24H,
54 INDICATOR_CLOCK_MODE_MAX
58 static int clock_mode = INDICATOR_CLOCK_MODE_12H;
59 static int apm_length = 0;
60 static int apm_position = 0;
61 static Ecore_Timer *timer = NULL;
62 static Ecore_Timer *battery_timer = NULL;
63 static Ecore_Timer *battery_charging_timer = NULL;
64 static int battery_charging = 0;
66 static int register_clock_module(void *data);
67 static int unregister_clock_module(void);
68 static int language_changed_cb(void *data);
69 static int region_changed_cb(void *data);
70 static int wake_up_cb(void *data);
72 #define ICON_PRIORITY INDICATOR_PRIORITY_FIXED6
73 #define MODULE_NAME "clock"
75 static void indicator_get_time_by_region(char* output, void* data);
76 static void ICU_set_timezone(const char *timezone);
77 static void indicator_clock_display_battery_percentage(void *data,int win_type );
79 Indicator_Icon_Object sysclock[INDICATOR_WIN_MAX] = {
81 .win_type = INDICATOR_WIN_PORT,
82 .type = INDICATOR_TXT_ICON,
84 .priority = ICON_PRIORITY,
85 .always_top = EINA_FALSE,
88 .obj_exist = EINA_FALSE,
89 .exist_in_view = EINA_FALSE,
90 .init = register_clock_module,
91 .fini = unregister_clock_module,
93 .region_changed = region_changed_cb,
94 .lang_changed = language_changed_cb,
98 .win_type = INDICATOR_WIN_LAND,
99 .type = INDICATOR_TXT_ICON,
101 .priority = ICON_PRIORITY,
102 .always_top = EINA_FALSE,
105 .obj_exist = EINA_FALSE,
106 .exist_in_view = EINA_FALSE,
107 .init = register_clock_module,
108 .fini = unregister_clock_module,
109 .lang_changed = NULL,
110 .region_changed = region_changed_cb,
111 .lang_changed = language_changed_cb,
112 .wake_up = wake_up_cb
116 static void set_app_state(void* data)
120 for (i=0 ; i<INDICATOR_WIN_MAX ; i++)
122 sysclock[i].ad = data;
126 static void indicator_clock_changed_cb(void *data)
129 char time_buf[128], ampm_buf[128];
130 char buf[CLOCK_STR_LEN];
131 char icu_apm[CLOCK_STR_LEN] = {0,};
133 struct tm *ts = NULL;
138 retif(data == NULL, , "Invalid parameter!");
140 if(indicator_util_get_update_flag()==0)
142 DBG("need to update");
146 if (battery_timer != NULL || battery_charging_timer != NULL)
148 DBG("battery is displaying. ignore clock callback");
153 ts = localtime(&ctime);
158 ecore_timer_del(timer);
162 memset(time_str, 0x00, sizeof(time_str));
163 memset(time_buf, 0x00, sizeof(time_buf));
164 memset(ampm_buf, 0x00, sizeof(ampm_buf));
165 memset(buf, 0x00, sizeof(buf));
168 ecore_timer_add(60 - ts->tm_sec, (void *)indicator_clock_changed_cb,
171 indicator_get_time_by_region(icu_apm,data);
173 if (clock_mode == INDICATOR_CLOCK_MODE_12H) {
174 char bf1[32] = { 0, };
177 if(apm_length>0 && apm_length<=4)
179 snprintf(ampm_buf, sizeof(ampm_buf),LABEL_STRING, AMPM_FONT_SIZE,icu_apm);
183 if (ts->tm_hour >= 0 && ts->tm_hour < 12)
184 snprintf(ampm_buf, sizeof(ampm_buf),
185 LABEL_STRING, AMPM_FONT_SIZE,
188 snprintf(ampm_buf, sizeof(ampm_buf),
189 LABEL_STRING, AMPM_FONT_SIZE,
193 strftime(bf1, sizeof(bf1), "%l", ts);
195 strftime(bf1, sizeof(bf1), ":%M", ts);
197 snprintf(time_str, sizeof(time_str), "%d%s", hour, bf1);
198 font_size = TIME_FONT_SIZE_12;
199 indicator_signal_emit(data,"indicator.clock.ampm","indicator.prog");
202 font_size = TIME_FONT_SIZE_24;
203 strftime(time_str, sizeof(time_str), "%H:%M", ts);
204 indicator_signal_emit(data,"indicator.clock.default","indicator.prog");
207 snprintf(time_buf, sizeof(time_buf), LABEL_STRING, font_size, time_str);
209 if(apm_position == 0)
210 len = snprintf(buf, sizeof(buf), "%s%s", ampm_buf, time_buf);
212 len = snprintf(buf, sizeof(buf), "%s%s", time_buf, ampm_buf);
215 ERR("Unexpected ERROR!");
219 INFO("[CLOCK MODULE] Timer Status : %d Time: %s", timer, buf);
221 indicator_part_text_emit(data,"elm.text.clock", buf);
226 static void indicator_clock_format_changed_cb(keynode_t *node, void *data)
228 retif(data == NULL, , "Invalid parameter!");
232 bool is_24hour_enabled = false;
234 INFO("[Enter] indicator_clock_format_changed_cb");
236 r = runtime_info_get_value_bool(
237 RUNTIME_INFO_KEY_24HOUR_CLOCK_FORMAT_ENABLED, &is_24hour_enabled);
239 if( r==RUNTIME_INFO_ERROR_NONE&&is_24hour_enabled==true)
241 clock_mode = INDICATOR_CLOCK_MODE_24H;
245 clock_mode = INDICATOR_CLOCK_MODE_12H;
248 char *timezone = vconf_get_str(VCONFKEY_SETAPPL_TIMEZONE_ID);
249 ICU_set_timezone(timezone);
250 indicator_clock_changed_cb(data);
254 static void indicator_clock_pm_state_change_cb(keynode_t *node, void *data)
258 retif(data == NULL, , "Invalid parameter!");
260 vconf_get_int(VCONFKEY_PM_STATE, &status);
264 case VCONFKEY_PM_STATE_LCDOFF:
266 ecore_timer_del(timer);
270 if (battery_timer != NULL) {
271 ecore_timer_del(battery_timer);
272 battery_timer = NULL;
275 if (battery_charging_timer != NULL) {
276 ecore_timer_del(battery_charging_timer);
277 battery_charging_timer = NULL;
286 static void indicator_clock_battery_display_cb(void *data)
288 INFO("indicator_clock_battery_display_cb");
290 if (battery_timer != NULL) {
291 ecore_timer_del(battery_timer);
292 battery_timer = NULL;
295 indicator_clock_changed_cb(data);
298 static void indicator_clock_battery_disp_changed_cb(keynode_t *node, void *data)
302 vconf_get_int(VCONFKEY_BATTERY_DISP_STATE,&status);
304 DBG("indicator_clock_battery_disp_changed_cb(%d)",status);
306 if(battery_charging_timer!=NULL)
308 ERR("30s timer alive");
311 if (battery_timer != NULL) {
312 ecore_timer_del(battery_timer);
313 battery_timer = NULL;
316 battery_timer = ecore_timer_add(BATTERY_TIMER_INTERVAL, (void *)indicator_clock_battery_display_cb,data);
320 indicator_clock_display_battery_percentage(data,0);
321 indicator_clock_display_battery_percentage(data,1);
325 indicator_clock_display_battery_percentage(data,status);
329 static void indicator_clock_battery_charging_stop_cb(void *data)
332 INFO("indicator_clock_battery_charging_stop_cb");
334 if (battery_charging_timer != NULL) {
335 ecore_timer_del(battery_charging_timer);
336 battery_charging_timer = NULL;
339 indicator_clock_changed_cb(data);
342 static void indicator_clock_charging_now_cb(keynode_t *node, void *data)
347 retif(data == NULL, , "Invalid parameter!");
349 vconf_get_int(VCONFKEY_IDLE_LOCK_STATE, &lock_state);
351 vconf_get_int(VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW, &status);
353 battery_charging = status;
355 DBG("indicator_clock_charging_now_cb(%d)",status);
357 if(lock_state==VCONFKEY_IDLE_LOCK)
359 DBG("indicator_clock_charging_now_cb:lock_state(%d)",lock_state);
365 if (battery_charging_timer != NULL)
367 ecore_timer_del(battery_charging_timer);
368 battery_charging_timer = NULL;
370 battery_charging_timer = ecore_timer_add(BATTERY_TIMER_INTERVAL_CHARGING, (void *)indicator_clock_battery_charging_stop_cb,data);
372 indicator_clock_display_battery_percentage(data,0);
376 indicator_clock_battery_charging_stop_cb(data);
381 static void indicator_clock_battery_capacity_cb(keynode_t *node, void *data)
383 retif(data == NULL, , "Invalid parameter!");
385 if(battery_charging_timer!=NULL||battery_timer!=NULL)
387 DBG("indicator_clock_battery_capacity_cb:battery_charging(%d)",battery_charging);
388 indicator_clock_display_battery_percentage(data,0);
393 static void indicator_clock_usb_cb(keynode_t *node, void *data)
397 retif(data == NULL, , "Invalid parameter!");
399 vconf_get_int(VCONFKEY_SYSMAN_USB_STATUS, &status);
401 DBG("indicator_clock_usb_cb(%d)",status);
403 if(status==VCONFKEY_SYSMAN_USB_DISCONNECTED)
405 if (battery_charging_timer != NULL)
407 ecore_timer_del(battery_charging_timer);
408 battery_charging_timer = NULL;
410 indicator_clock_changed_cb(data);
414 static void indicator_clock_lock_state_cb(keynode_t *node, void *data)
418 retif(data == NULL, , "Invalid parameter!");
420 vconf_get_int(VCONFKEY_IDLE_LOCK_STATE, &status);
422 DBG("indicator_clock_lock_state_cb(%d)",status);
424 if(status==VCONFKEY_IDLE_UNLOCK && battery_charging==1)
426 indicator_clock_display_battery_percentage(data,0);
430 static void indicator_clock_battery_precentage_setting_cb(keynode_t *node, void *data)
435 retif(data == NULL, , "Invalid parameter!");
437 ret = vconf_get_bool(VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL, &status);
440 ERR("Fail to get [%s: %d]",VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL, ret);
445 if (battery_charging_timer != NULL) {
446 ecore_timer_del(battery_charging_timer);
447 battery_charging_timer = NULL;
449 if (battery_timer != NULL) {
450 ecore_timer_del(battery_timer);
451 battery_timer = NULL;
453 indicator_clock_changed_cb(data);
457 static void indicator_clock_display_battery_percentage(void *data,int win_type )
461 int battery_capa = 0;
462 char buf[256] = {0,};
463 char temp[256] = {0,};
464 struct appdata *ad = (struct appdata *)data;
466 ret = vconf_get_bool(VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL, &status);
468 ERR("Fail to get [%s: %d]",
469 VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL, ret);
473 ret = vconf_get_int(VCONFKEY_SYSMAN_BATTERY_CAPACITY, &battery_capa);
476 ERR("Fail to get [VCONFKEY_SYSMAN_BATTERY_CAPACITY:%d]", ret);
479 if (battery_capa < 0)
481 INFO("Invalid Battery Capacity: %d", battery_capa);
485 INFO("Battery Capacity: %d", battery_capa);
487 if (battery_capa > 100)
490 snprintf(temp, sizeof(temp), "%d%%",battery_capa);
492 snprintf(buf, sizeof(buf), LABEL_STRING, TIME_FONT_SIZE_BATTERY, temp);
494 INFO("indicator_clock_display_battery_percentage %s", buf);
496 indicator_part_text_emit_by_win(&(ad->win[win_type]),"elm.text.clock", buf);
503 static int language_changed_cb(void *data)
505 DBG("language_changed_cb");
506 indicator_clock_changed_cb(data);
510 static int region_changed_cb(void *data)
512 DBG("region_changed_cb");
513 indicator_clock_format_changed_cb(NULL, data);
517 static int wake_up_cb(void *data)
522 INFO("CLOCK wake_up_cb");
524 retif(data == NULL, FAIL, "Invalid parameter!");
526 vconf_get_int(VCONFKEY_IDLE_LOCK_STATE, &lock_type);
528 vconf_get_bool(VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL, &status);
530 DBG("wake_up_cb(%d,%d)",lock_type,status);
534 if(lock_type == VCONFKEY_IDLE_UNLOCK && battery_charging==1)
536 indicator_clock_display_battery_percentage(data,0);
541 indicator_clock_changed_cb(data);
546 static int register_clock_module(void *data)
550 retif(data == NULL, FAIL, "Invalid parameter!");
554 ret = vconf_notify_key_changed(VCONFKEY_SYSTEM_TIME_CHANGED,
555 indicator_clock_format_changed_cb, data);
557 ERR("Fail: register VCONFKEY_SYSTEM_TIME_CHANGED");
561 ret = vconf_notify_key_changed(VCONFKEY_REGIONFORMAT_TIME1224,
562 indicator_clock_format_changed_cb, data);
564 ERR("Fail: register VCONFKEY_REGIONFORMAT_TIME1224");
568 ret = vconf_notify_key_changed(VCONFKEY_SETAPPL_TIMEZONE_INT,
569 indicator_clock_format_changed_cb, data);
571 ERR("Fail: register VCONFKEY_SETAPPL_TIMEZONE_INT");
575 ret = vconf_notify_key_changed(VCONFKEY_PM_STATE, indicator_clock_pm_state_change_cb, (void *)data);
578 ERR("Fail: register VCONFKEY_PM_STATE");
582 ret = vconf_notify_key_changed(VCONFKEY_BATTERY_DISP_STATE,
583 indicator_clock_battery_disp_changed_cb, data);
585 ERR("Fail: register VCONFKEY_SETAPPL_TIMEZONE_INT");
589 ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_BATTERY_CAPACITY,
590 indicator_clock_battery_capacity_cb, data);
592 ERR("Failed to register callback!");
596 ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW,
597 indicator_clock_charging_now_cb, data);
599 ERR("Failed to register callback!");
603 ret = vconf_notify_key_changed(VCONFKEY_SYSMAN_USB_STATUS,
604 indicator_clock_usb_cb, data);
606 ERR("Failed to register callback!");
611 ret = vconf_notify_key_changed(VCONFKEY_IDLE_LOCK_STATE,
612 indicator_clock_lock_state_cb, data);
614 ERR("Failed to register callback!");
618 ret = vconf_notify_key_changed(VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL,
619 indicator_clock_battery_precentage_setting_cb, data);
621 ERR("Failed to register callback!");
625 indicator_clock_format_changed_cb(NULL, data);
630 static int unregister_clock_module(void)
634 ret = vconf_ignore_key_changed(VCONFKEY_SYSTEM_TIME_CHANGED,
635 indicator_clock_format_changed_cb);
637 ERR("Fail: unregister VCONFKEY_SYSTEM_TIME_CHANGED");
639 ret = vconf_ignore_key_changed(VCONFKEY_REGIONFORMAT_TIME1224,
640 indicator_clock_format_changed_cb);
642 ERR("Fail: unregister VCONFKEY_REGIONFORMAT_TIME1224");
644 ret = vconf_ignore_key_changed(VCONFKEY_SETAPPL_TIMEZONE_INT,
645 indicator_clock_format_changed_cb);
647 ERR("Fail: unregister VCONFKEY_SETAPPL_TIMEZONE_INT");
649 ret = vconf_ignore_key_changed(VCONFKEY_PM_STATE,
650 indicator_clock_pm_state_change_cb);
652 ERR("Fail: unregister VCONFKEY_PM_STATE");
654 ret = vconf_ignore_key_changed(VCONFKEY_BATTERY_DISP_STATE,
655 indicator_clock_battery_disp_changed_cb);
657 ERR("Fail: unregister VCONFKEY_BATTERY_DISP_STATE");
659 ret = vconf_ignore_key_changed(VCONFKEY_SYSMAN_BATTERY_CAPACITY,
660 indicator_clock_battery_capacity_cb);
662 ERR("Fail: unregister VCONFKEY_SYSMAN_BATTERY_CAPACITY");
664 ret = vconf_ignore_key_changed(VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW,
665 indicator_clock_charging_now_cb);
667 ERR("Fail: unregister VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW");
669 ret = vconf_ignore_key_changed(VCONFKEY_SYSMAN_USB_STATUS,
670 indicator_clock_usb_cb);
672 ERR("Fail: unregister VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW");
675 ret = vconf_ignore_key_changed(VCONFKEY_IDLE_LOCK_STATE,
676 indicator_clock_lock_state_cb);
678 ERR("Fail: unregister VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW");
680 ret = vconf_ignore_key_changed(VCONFKEY_SETAPPL_BATTERY_PERCENTAGE_BOOL,
681 indicator_clock_battery_precentage_setting_cb);
683 ERR("Fail: unregister VCONFKEY_SYSMAN_BATTERY_CHARGE_NOW");
686 ecore_timer_del(timer);
690 if (battery_timer != NULL) {
691 ecore_timer_del(battery_timer);
692 battery_timer = NULL;
695 if (battery_charging_timer != NULL) {
696 ecore_timer_del(battery_charging_timer);
697 battery_charging_timer = NULL;
703 void indicator_get_time_by_region(char* output,void *data)
705 retif(data == NULL, , "Data parameter is NULL");
706 retif(output == NULL, , "output parameter is NULL");
709 UChar customSkeleton[CLOCK_STR_LEN] = { 0, };
710 UErrorCode status = U_ZERO_ERROR;
711 UDateFormat *formatter = NULL;
713 UChar bestPattern[CLOCK_STR_LEN] = { 0, };
714 UChar formatted[CLOCK_STR_LEN] = { 0, };
716 char bestPatternString[CLOCK_STR_LEN] = { 0, };
717 char formattedString[CLOCK_STR_LEN] = { 0, };
719 UDateTimePatternGenerator *pattern_generator = NULL;
721 char *time_skeleton = "hhmm";
723 char *locale = vconf_get_str(VCONFKEY_REGIONFORMAT);
724 if (locale == NULL) {
725 DBG("[Error] get value of VCONFKEY_REGIONFORMAT fail.");
728 u_uastrncpy(customSkeleton, time_skeleton, strlen(time_skeleton));
730 pattern_generator = udatpg_open(locale, &status);
732 int32_t bestPatternCapacity = (int32_t) (sizeof(bestPattern) / sizeof((bestPattern)[0]));
733 (void)udatpg_getBestPattern(pattern_generator, customSkeleton,
734 u_strlen(customSkeleton), bestPattern,
735 bestPatternCapacity, &status);
737 u_austrcpy(bestPatternString, bestPattern);
738 u_uastrcpy(bestPattern,"a");
740 if(bestPatternString[0] == 'a')
749 UDate date = ucal_getNow();
750 formatter = udat_open(UDAT_IGNORE, UDAT_IGNORE, locale, NULL, -1, bestPattern, -1, &status);
751 int32_t formattedCapacity = (int32_t) (sizeof(formatted) / sizeof((formatted)[0]));
752 (void)udat_format(formatter, date, formatted, formattedCapacity, NULL, &status);
753 u_austrcpy(formattedString, formatted);
755 DBG("DATE & TIME is %s %s %d %s", locale, formattedString, u_strlen(formatted), bestPatternString);
757 apm_length = u_strlen(formatted);
759 udatpg_close(pattern_generator);
761 udat_close(formatter);
763 if(strlen(formattedString)<CLOCK_STR_LEN)
765 strncpy(output,formattedString,strlen(formattedString));
769 strncpy(output,formattedString,CLOCK_STR_LEN-1);
775 static UChar *uastrcpy(const char *chars)
780 str = (UChar *) malloc(sizeof(UChar) *(len + 1));
783 u_uastrcpy(str, chars);
787 static void ICU_set_timezone(const char *timezone)
791 ERR("TIMEZONE is NULL");
795 DBG("ICU_set_timezone = %s ", timezone);
796 UErrorCode ec = U_ZERO_ERROR;
797 UChar *str = uastrcpy(timezone);
799 ucal_setDefaultTimeZone(str, &ec);
801 DBG("ucal_setDefaultTimeZone() SUCCESS ");
803 DBG("ucal_setDefaultTimeZone() FAILED : %s ",