Release 4.0.0-preview1-00309
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / NUICoreBackend.cs
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (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://www.apache.org/licenses/LICENSE-2.0
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
18 using System;
19 using System.Collections.Generic;
20
21 using Tizen.Applications.CoreBackend;
22 using Tizen.Applications;
23
24 namespace Tizen.NUI
25 {
26     class NUICoreBackend : ICoreBackend
27     {
28         /// <summary>
29         /// The Application instance to connect event.
30         /// </summary>
31         protected Application _application;
32         private string _stylesheet = "";
33         private NUIApplication.WindowMode _windowMode = NUIApplication.WindowMode.Opaque;
34
35         /// <summary>
36         /// The Dictionary to contain each type of event callback.
37         /// </summary>
38         protected IDictionary<EventType, object> Handlers = new Dictionary<EventType, object>();
39
40         /// <summary>
41         /// The default Constructor.
42         /// </summary>
43         public NUICoreBackend()
44         {
45         }
46
47         /// <summary>
48         /// The constructor with stylesheet.
49         /// </summary>
50         public NUICoreBackend(string stylesheet)
51         {
52             _stylesheet = stylesheet;
53         }
54
55         /// <summary>
56         /// The constructor with stylesheet and window mode.
57         /// </summary>
58         public NUICoreBackend(string stylesheet, NUIApplication.WindowMode windowMode)
59         {
60             _stylesheet = stylesheet;
61             _windowMode = windowMode;
62         }
63
64         /// <summary>
65         /// Adds NUIApplication event to Application.
66         /// Puts each type of event callback in Dictionary.
67         /// </summary>
68         /// <param name="evType">The type of event.</param>
69         /// <param name="handler">The event callback.</param>
70         public void AddEventHandler(EventType evType, Action handler)
71         {
72             Handlers.Add(evType, handler);
73         }
74
75         /// <summary>
76         /// Adds NUIApplication event to Application.
77         /// Puts each type of event callback in Dictionary.
78         /// </summary>
79         /// <typeparam name="TEventArgs">The argument type for the event.</typeparam>
80         /// <param name="evType">The type of event.</param>
81         /// <param name="handler">The event callback.</param>
82         public void AddEventHandler<TEventArgs>(EventType evType, Action<TEventArgs> handler) where TEventArgs : EventArgs
83         {
84             Handlers.Add(evType, handler);
85         }
86
87
88         /// <summary>
89         /// The Dispose function.
90         /// </summary>
91         public void Dispose()
92         {
93             if(_application != null)
94             {
95                 _application.Dispose();
96             }
97         }
98
99         /// <summary>
100         /// The Exit application.
101         /// </summary>
102         public void Exit()
103         {
104             if(_application != null)
105             {
106                 _application.Quit();
107             }
108         }
109
110         /// <summary>
111         /// Ensures that the function passed in is called from the main loop when it is idle.
112         /// </summary>
113         /// <param name="func">The function to call</param>
114         /// <returns>true if added successfully, false otherwise</returns>
115         public bool AddIdle(System.Delegate func)
116         {
117             return _application.AddIdle(func);
118         }
119
120         /// <summary>
121         /// The Run application.
122         /// </summary>
123         /// <param name="args">The arguments from commandline.</param>
124         public void Run(string[] args)
125         {
126             TizenSynchronizationContext.Initialize();
127
128             args[0] = Tizen.Applications.Application.Current.ApplicationInfo.ExecutablePath;
129             if (args.Length == 1)
130             {
131                 _application = Application.NewApplication();
132             }
133             else if (args.Length > 1)
134             {
135                 _application = Application.NewApplication(args, _stylesheet, (Application.WindowMode)_windowMode);
136             }
137
138             _application.BatteryLow += OnBatteryLow;
139             _application.LanguageChanged += OnLanguageChanged;
140             _application.MemoryLow += OnMemoryLow;
141             _application.RegionChanged += OnRegionChanged;
142
143             _application.Initialized += OnInitialized;
144             _application.Resumed += OnResumed;
145             _application.Terminating += OnTerminated;
146             _application.Paused += OnPaused;
147             _application.AppControl += OnAppControl;
148
149             _application.MainLoop();
150         }
151
152         /// <summary>
153         /// The Region changed event callback function.
154         /// </summary>
155         /// <param name="source">The application instance.</param>
156         /// <param name="e">The event argument for RegionChanged.</param>
157         private void OnRegionChanged(object source, NUIApplicationRegionChangedEventArgs e)
158         {
159             Log.Info("NUI", "NUICorebackend OnRegionChanged Called");
160             var handler = Handlers[EventType.RegionFormatChanged] as Action<RegionFormatChangedEventArgs>;
161             handler?.Invoke( new RegionFormatChangedEventArgs(e.Application.GetRegion()));
162         }
163
164         /// <summary>
165         /// The Memory Low event callback function.
166         /// </summary>
167         /// <param name="source">The application instance.</param>
168         /// <param name="e">The event argument for MemoryLow.</param>
169         private void OnMemoryLow(object source, NUIApplicationMemoryLowEventArgs e)
170         {
171             Log.Info("NUI", "NUICorebackend OnMemoryLow Called");
172             var handler = Handlers[EventType.LowMemory] as Action<LowMemoryEventArgs>;
173
174             switch ( e.MemoryStatus )
175             {
176                 case Application.MemoryStatus.Normal:
177                 {
178                     handler?.Invoke( new LowMemoryEventArgs(LowMemoryStatus.None));
179                     break;
180                 }
181                 case Application.MemoryStatus.Low:
182                 {
183                     handler?.Invoke(new LowMemoryEventArgs(LowMemoryStatus.SoftWarning));
184                     break;
185                 }
186                 case Application.MemoryStatus.CriticallyLow:
187                 {
188                     handler?.Invoke(new LowMemoryEventArgs(LowMemoryStatus.HardWarning));
189                     break;
190                 }
191             }
192         }
193
194         /// <summary>
195         /// The Language changed event callback function.
196         /// </summary>
197         /// <param name="source">The application instance.</param>
198         /// <param name="e">The event argument for LanguageChanged.</param>
199         private void OnLanguageChanged(object source, NUIApplicationLanguageChangedEventArgs e)
200         {
201             Log.Info("NUI", "NUICorebackend OnLanguageChanged Called");
202             var handler = Handlers[EventType.LocaleChanged] as Action<LocaleChangedEventArgs>;
203             handler?.Invoke( new LocaleChangedEventArgs(e.Application.GetLanguage()));
204         }
205
206         /// <summary>
207         /// The Battery Low event callback function.
208         /// </summary>
209         /// <param name="source">The application instance.</param>
210         /// <param name="e">The event argument for BatteryLow.</param>
211         private void OnBatteryLow(object source, NUIApplicationBatteryLowEventArgs e)
212         {
213             Log.Info("NUI", "NUICorebackend OnBatteryLow Called");
214             var handler = Handlers[EventType.LowBattery] as Action<LowBatteryEventArgs>;
215             switch( e.BatteryStatus )
216             {
217                 case Application.BatteryStatus.Normal:
218                 {
219                     handler?.Invoke(new LowBatteryEventArgs(LowBatteryStatus.None));
220                     break;
221                 }
222                 case Application.BatteryStatus.CriticallyLow:
223                 {
224                     handler?.Invoke(new LowBatteryEventArgs(LowBatteryStatus.CriticalLow));
225                     break;
226                 }
227                 case Application.BatteryStatus.PowerOff:
228                 {
229                     handler?.Invoke(new LowBatteryEventArgs(LowBatteryStatus.PowerOff));
230                     break;
231                 }
232             }
233         }
234
235         /// <summary>
236         /// The Initialized event callback function.
237         /// </summary>
238         /// <param name="source">The application instance.</param>
239         /// <param name="e">The event argument for Initialized.</param>
240         private void OnInitialized(object source, NUIApplicationInitEventArgs e)
241         {
242             Log.Info("NUI", "NUICorebackend OnPreCreated Called");
243             var preCreateHandler = Handlers[EventType.PreCreated] as Action;
244             preCreateHandler?.Invoke();
245
246             Log.Info("NUI", "NUICorebackend OnCreate Called");
247             var createHandler = Handlers[EventType.Created] as Action;
248             createHandler?.Invoke();
249         }
250
251         /// <summary>
252         /// The Terminated event callback function.
253         /// </summary>
254         /// <param name="source">The application instance.</param>
255         /// <param name="e">The event argument for Terminated.</param>
256         private void OnTerminated(object source, NUIApplicationTerminatingEventArgs e)
257         {
258             Log.Info("NUI", "NUICorebackend OnTerminated Called");
259             var handler = Handlers[EventType.Terminated] as Action;
260             handler?.Invoke();
261         }
262
263         /// <summary>
264         /// The Resumed event callback function.
265         /// </summary>
266         /// <param name="source">The application instance.</param>
267         /// <param name="e">The event argument for Resumed.</param>
268         private void OnResumed(object source, NUIApplicationResumedEventArgs e)
269         {
270             Log.Info("NUI", "NUICorebackend OnResumed Called");
271             var handler = Handlers[EventType.Resumed] as Action;
272             handler?.Invoke();
273         }
274
275         /// <summary>
276         /// The App control event callback function.
277         /// </summary>
278         /// <param name="source">The application instance.</param>
279         /// <param name="e">The event argument for AppControl.</param>
280         private void OnAppControl(object source, NUIApplicationAppControlEventArgs e)
281         {
282             Log.Info("NUI", "NUICorebackend OnAppControl Called");
283             var handler = Handlers[EventType.AppControlReceived] as Action<AppControlReceivedEventArgs>;
284             SafeAppControlHandle handle = new SafeAppControlHandle(e.VoidP,false);
285             handler?.Invoke( new AppControlReceivedEventArgs(new ReceivedAppControl(handle)) );
286         }
287
288         /// <summary>
289         /// The Paused event callback function.
290         /// </summary>
291         /// <param name="source">The application instance.</param>
292         /// <param name="e">The event argument for Paused.</param>
293         private void OnPaused(object source, NUIApplicationPausedEventArgs e)
294         {
295             Log.Info("NUI", "NUICorebackend OnPaused Called");
296             var handler = Handlers[EventType.Paused] as Action;
297             handler?.Invoke();
298         }
299
300
301         internal Application ApplicationHandle
302         {
303                 get
304                 {
305                         return _application;
306                 }
307         }
308
309     }
310 }