default_backend: do not allocate frame whenever each frames
[platform/core/uifw/libpui.git] / backends / notification / default_ani_error.c
1 /*
2  * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25
26 #include "../default_backend.h"
27
28 static default_frame_info_t *ani_frame = NULL;
29
30 static void
31 _ani_backend_error_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
32 {
33         if (!frame) return;
34         if (!r || !g || !b) return;
35         if (led_idx > frame->num_led) return;
36
37         *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
38         *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
39         *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
40 }
41
42 static default_frame_info_t *
43 _ani_backend_error_get_frame(default_ani_info *ani_info)
44 {
45 /* FIXME: ALAMR_FRAME need to changed after we imply animation type, suchas ease function */
46 #define BLINK_FRAME 2
47         default_frame_info_t *key_frame;
48
49         key_frame = &ani_info->frames[0];
50
51         if (ani_info->frame_idx % BLINK_FRAME == 0)
52         {
53                 for (int i = 0; i < key_frame->num_led; i++)
54                 {
55                         ani_frame->leds[i].color = key_frame->leds[i].color;
56                 }
57         }
58         else
59         {
60                 for (int i = 0; i < key_frame->num_led; i++)
61                 {
62                         ani_frame->leds[i].color = 0x000000;
63                 }
64         }
65
66         ani_info->frame_idx++;
67         if (ani_info->frame_idx >= BLINK_FRAME)
68         {
69                 if (ani_info->repeat >= 0)
70                         ani_info->repeat_cur++;
71                 ani_info->frame_idx = 0;
72         }
73
74         return ani_frame;
75 }
76
77
78 static pui_bool
79 _ani_backend_error_frame_cb(void *data, int serial)
80 {
81         pui_int_error e = PUI_INT_ERROR_NONE;
82         pui_ani_t *ani = (pui_ani_t *)data;
83         pui_backend_ani_data *ani_data = NULL;
84         pui_ani_control_buffer *buffer = NULL;
85         default_frame_info_t *frame;
86         unsigned int r = 0x0, g = 0x0, b = 0x0;
87
88         ani_data = pui_backend_ani_get_ani_data(ani);
89         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
90
91         /* TODO : make use of ani_info */
92         //(void) ani_info;
93
94         buffer = pui_backend_ani_get_buffer(ani);
95         if (!buffer) {
96                 pui_err("Failed to get buffer for animation\n");
97                 return (pui_bool)0;
98         }
99
100         frame = _ani_backend_error_get_frame(ani_info);
101         for(int i = 0; i<12; i++)
102         {
103                 _ani_backend_error_get_led_rgb(frame, i, &r, &g, &b);
104                 buffer->ptr[4*i] = 0;
105                 buffer->ptr[4*i + 1] = b; /* BLUE */
106                 buffer->ptr[4*i + 2] = g; /* GREEN */
107                 buffer->ptr[4*i + 3] = r; /* RED */
108         }
109         backend_util_cleanup_frame(frame);
110
111         e = pui_backend_ani_set_buffer(ani, buffer);
112
113         if (e != PUI_INT_ERROR_NONE)
114         {
115                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
116                 return (pui_bool)0;
117         }
118
119         e = pui_backend_ani_update(ani);
120
121         if (e != PUI_INT_ERROR_NONE)
122         {
123                 pui_err("Failed on updating animation !(e=%d)\n", e);
124                 return (pui_bool)0;
125         }
126
127         pui_info("... update (serial=%d), (repeat| cur: %d, want: %d)\n",
128                 serial, ani_info->repeat_cur, ani_info->repeat);
129
130         if (ani_info->repeat >= 0 &&
131                 ani_info->repeat_cur >= ani_info->repeat)
132         {
133                 ani_data->ani_func->ani_stop(ani, EINA_FALSE);
134         }
135
136         return (pui_bool)1;
137 }
138
139 pui_error
140 _ani_error_start(pui_ani_t *ani, int repeat)
141 {
142         pui_bool ret = 0;
143         pui_int_error e = PUI_INT_ERROR_NONE;
144         pui_backend_ani_data *ani_data = NULL;
145
146         ani_data = pui_backend_ani_get_ani_data(ani);
147         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
148
149         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
150
151         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
152         if (repeat == 0) info->repeat = 1;
153         else info->repeat = repeat;
154
155         info->key_frame_cur = 0;
156         info->frame_idx = 0;
157         info->repeat_cur = 0;
158
159         if (!ani_frame)
160                 ani_frame = backend_util_alloc_frame(info);
161         ERROR_CHECK(ani_frame, return PUI_INT_ERROR_INVALID_RESOURCES, "Failed to alloc memory for frame\n");
162
163         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_error_frame_cb, info->interval / 1000.0);
164         if (!ret)
165         {
166                 pui_err("Failed to add frame callback !\n");
167                 e = PUI_INT_ERROR_INVALID_RESOURCES;
168         }
169
170         return e;
171 }
172
173 pui_error
174 _ani_error_stop(pui_ani_t *ani, pui_bool force)
175 {
176         pui_int_error e = PUI_INT_ERROR_NONE;
177         pui_backend_ani_data *ani_data = NULL;
178
179         ani_data = pui_backend_ani_get_ani_data(ani);
180         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
181
182         //TODO
183         (void) info;
184
185         pui_info("... info->id: %s, force=%d\n", info->id, force);
186
187         pui_backend_ani_remove_frame_cb(ani);
188
189         if (force)
190                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
191         else
192                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
193
194         if (ani_frame)
195         {
196                 backend_util_free_frame(ani_frame);
197                 ani_frame = NULL;
198         }
199
200         return e;
201 }
202
203
204 void
205 pui_default_backend_ani_error_func_set(pui_backend_ani_func *func)
206 {
207         if (!func) return;
208
209         func->ani_start = _ani_error_start;
210         func->ani_stop = _ani_error_stop;
211 }
212
213