cd0a16d92012528ce35cb558be5633e232baac38
[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             _application.Dispose();
151         }
152
153         /// <summary>
154         /// The Region changed event callback function.
155         /// </summary>
156         /// <param name="source">The application instance.</param>
157         /// <param name="e">The event argument for RegionChanged.</param>
158         private void OnRegionChanged(object source, NUIApplicationRegionChangedEventArgs e)
159         {
160             Log.Info("NUI", "NUICorebackend OnRegionChanged Called");
161             var handler = Handlers[EventType.RegionFormatChanged] as Action<RegionFormatChangedEventArgs>;
162             handler?.Invoke( new RegionFormatChangedEventArgs(e.Application.GetRegion()));
163         }
164
165         /// <summary>
166         /// The Memory Low event callback function.
167         /// </summary>
168         /// <param name="source">The application instance.</param>
169         /// <param name="e">The event argument for MemoryLow.</param>
170         private void OnMemoryLow(object source, NUIApplicationMemoryLowEventArgs e)
171         {
172             Log.Info("NUI", "NUICorebackend OnMemoryLow Called");
173             var handler = Handlers[EventType.LowMemory] as Action<LowMemoryEventArgs>;
174
175             switch ( e.MemoryStatus )
176             {
177                 case Application.MemoryStatus.Normal:
178                 {
179                     handler?.Invoke( new LowMemoryEventArgs(LowMemoryStatus.None));
180                     break;
181                 }
182                 case Application.MemoryStatus.Low:
183                 {
184                     handler?.Invoke(new LowMemoryEventArgs(LowMemoryStatus.SoftWarning));
185                     break;
186                 }
187                 case Application.MemoryStatus.CriticallyLow:
188                 {
189                     handler?.Invoke(new LowMemoryEventArgs(LowMemoryStatus.HardWarning));
190                     break;
191                 }
192             }
193         }
194
195         /// <summary>
196         /// The Language changed event callback function.
197         /// </summary>
198         /// <param name="source">The application instance.</param>
199         /// <param name="e">The event argument for LanguageChanged.</param>
200         private void OnLanguageChanged(object source, NUIApplicationLanguageChangedEventArgs e)
201         {
202             Log.Info("NUI", "NUICorebackend OnLanguageChanged Called");
203             var handler = Handlers[EventType.LocaleChanged] as Action<LocaleChangedEventArgs>;
204             handler?.Invoke( new LocaleChangedEventArgs(e.Application.GetLanguage()));
205         }
206
207         /// <summary>
208         /// The Battery Low event callback function.
209         /// </summary>
210         /// <param name="source">The application instance.</param>
211         /// <param name="e">The event argument for BatteryLow.</param>
212         private void OnBatteryLow(object source, NUIApplicationBatteryLowEventArgs e)
213         {
214             Log.Info("NUI", "NUICorebackend OnBatteryLow Called");
215             var handler = Handlers[EventType.LowBattery] as Action<LowBatteryEventArgs>;
216             switch( e.BatteryStatus )
217             {
218                 case Application.BatteryStatus.Normal:
219                 {
220                     handler?.Invoke(new LowBatteryEventArgs(LowBatteryStatus.None));
221                     break;
222                 }
223                 case Application.BatteryStatus.CriticallyLow:
224                 {
225                     handler?.Invoke(new LowBatteryEventArgs(LowBatteryStatus.CriticalLow));
226                     break;
227                 }
228                 case Application.BatteryStatus.PowerOff:
229                 {
230                     handler?.Invoke(new LowBatteryEventArgs(LowBatteryStatus.PowerOff));
231                     break;
232                 }
233             }
234         }
235
236         /// <summary>
237         /// The Initialized event callback function.
238         /// </summary>
239         /// <param name="source">The application instance.</param>
240         /// <param name="e">The event argument for Initialized.</param>
241         private void OnInitialized(object source, NUIApplicationInitEventArgs e)
242         {
243             Log.Info("NUI", "NUICorebackend OnPreCreated Called");
244             var preCreateHandler = Handlers[EventType.PreCreated] as Action;
245             preCreateHandler?.Invoke();
246
247             Log.Info("NUI", "NUICorebackend OnCreate Called");
248             var createHandler = Handlers[EventType.Created] as Action;
249             createHandler?.Invoke();
250         }
251
252         /// <summary>
253         /// The Terminated event callback function.
254         /// </summary>
255         /// <param name="source">The application instance.</param>
256         /// <param name="e">The event argument for Terminated.</param>
257         private void OnTerminated(object source, NUIApplicationTerminatingEventArgs e)
258         {
259             Log.Info("NUI", "NUICorebackend OnTerminated Called");
260             var handler = Handlers[EventType.Terminated] as Action;
261             handler?.Invoke();
262         }
263
264         /// <summary>
265         /// The Resumed event callback function.
266         /// </summary>
267         /// <param name="source">The application instance.</param>
268         /// <param name="e">The event argument for Resumed.</param>
269         private void OnResumed(object source, NUIApplicationResumedEventArgs e)
270         {
271             Log.Info("NUI", "NUICorebackend OnResumed Called");
272             var handler = Handlers[EventType.Resumed] as Action;
273             handler?.Invoke();
274         }
275
276         /// <summary>
277         /// The App control event callback function.
278         /// </summary>
279         /// <param name="source">The application instance.</param>
280         /// <param name="e">The event argument for AppControl.</param>
281         private void OnAppControl(object source, NUIApplicationAppControlEventArgs e)
282         {
283             Log.Info("NUI", "NUICorebackend OnAppControl Called");
284             var handler = Handlers[EventType.AppControlReceived] as Action<AppControlReceivedEventArgs>;
285             SafeAppControlHandle handle = new SafeAppControlHandle(e.VoidP,false);
286             handler?.Invoke( new AppControlReceivedEventArgs(new ReceivedAppControl(handle)) );
287         }
288
289         /// <summary>
290         /// The Paused event callback function.
291         /// </summary>
292         /// <param name="source">The application instance.</param>
293         /// <param name="e">The event argument for Paused.</param>
294         private void OnPaused(object source, NUIApplicationPausedEventArgs e)
295         {
296             Log.Info("NUI", "NUICorebackend OnPaused Called");
297             var handler = Handlers[EventType.Paused] as Action;
298             handler?.Invoke();
299         }
300
301
302         internal Application ApplicationHandle
303         {
304                 get
305                 {
306                         return _application;
307                 }
308         }
309
310     }
311 }