f37b310d7511b3506a8375580fedc6f0d1dbea9c
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications / CoreApplication.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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 using System;
18
19 using Tizen.Applications.CoreBackend;
20
21 namespace Tizen.Applications
22 {
23     /// <summary>
24     /// Class that represents an application controlled lifecycles by the backend system.
25     /// </summary>
26     public class CoreApplication : Application
27     {
28         private readonly ICoreBackend _backend;
29         private bool _disposedValue = false;
30
31         /// <summary>
32         /// Initializes the CoreApplication class.
33         /// </summary>
34         /// <param name="backend">The backend instance implementing ICoreBacked interface.</param>
35         public CoreApplication(ICoreBackend backend)
36         {
37             _backend = backend;
38         }
39
40         /// <summary>
41         /// Occurs when the application is launched.
42         /// </summary>
43         public event EventHandler Created;
44
45         /// <summary>
46         /// Occurs when the application is about to shutdown.
47         /// </summary>
48         public event EventHandler Terminated;
49
50         /// <summary>
51         /// Occurs whenever the application receives the appcontrol message.
52         /// </summary>
53         public event EventHandler<AppControlReceivedEventArgs> AppControlReceived;
54
55         /// <summary>
56         /// Occurs when the system memory is low.
57         /// </summary>
58         public event EventHandler<LowMemoryEventArgs> LowMemory;
59
60         /// <summary>
61         /// Occurs when the system battery is low.
62         /// </summary>
63         public event EventHandler<LowBatteryEventArgs> LowBattery;
64
65         /// <summary>
66         /// Occurs when the system language is chagned.
67         /// </summary>
68         public event EventHandler<LocaleChangedEventArgs> LocaleChanged;
69
70         /// <summary>
71         /// Occurs when the region format is changed.
72         /// </summary>
73         public event EventHandler<RegionFormatChangedEventArgs> RegionFormatChanged;
74
75         /// <summary>
76         /// The backend instance.
77         /// </summary>
78         protected ICoreBackend Backend { get { return _backend; } }
79
80         /// <summary>
81         /// Runs the application's main loop.
82         /// </summary>
83         /// <param name="args">Arguments from commandline.</param>
84         public override void Run(string[] args)
85         {
86             base.Run(args);
87
88             _backend.AddEventHandler(EventType.Created, OnCreate);
89             _backend.AddEventHandler(EventType.Terminated, OnTerminate);
90             _backend.AddEventHandler<AppControlReceivedEventArgs>(EventType.AppControlReceived, OnAppControlReceived);
91             _backend.AddEventHandler<LowMemoryEventArgs>(EventType.LowMemory, OnLowMemory);
92             _backend.AddEventHandler<LowBatteryEventArgs>(EventType.LowBattery, OnLowBattery);
93             _backend.AddEventHandler<LocaleChangedEventArgs>(EventType.LocaleChanged, OnLocaleChanged);
94             _backend.AddEventHandler<RegionFormatChangedEventArgs>(EventType.RegionFormatChanged, OnRegionFormatChanged);
95
96             string[] argsClone = null;
97
98             if (args == null)
99             {
100                 argsClone = new string[1];
101             }
102             else
103             {
104                 argsClone = new string[args.Length + 1];
105                 args.CopyTo(argsClone, 1);
106             }
107             argsClone[0] = string.Empty;
108             _backend.Run(argsClone);
109         }
110
111         /// <summary>
112         /// Exits the main loop of the application.
113         /// </summary>
114         public override void Exit()
115         {
116             _backend.Exit();
117         }
118
119         /// <summary>
120         /// Overrides this method if want to handle behavior when the application is launched.
121         /// If base.OnCreated() is not called, the event 'Created' will not be emitted.
122         /// </summary>
123         protected virtual void OnCreate()
124         {
125             Created?.Invoke(this, EventArgs.Empty);
126         }
127
128         /// <summary>
129         /// Overrides this method if want to handle behavior when the application is terminated.
130         /// If base.OnTerminate() is not called, the event 'Terminated' will not be emitted.
131         /// </summary>
132         protected virtual void OnTerminate()
133         {
134             Terminated?.Invoke(this, EventArgs.Empty);
135         }
136
137         /// <summary>
138         /// Overrides this method if want to handle behavior when the application receives the appcontrol message.
139         /// If base.OnAppControlReceived() is not called, the event 'AppControlReceived' will not be emitted.
140         /// </summary>
141         /// <param name="e"></param>
142         protected virtual void OnAppControlReceived(AppControlReceivedEventArgs e)
143         {
144             AppControlReceived?.Invoke(this, e);
145         }
146
147         /// <summary>
148         /// Overrides this method if want to handle behavior when the system memory is low.
149         /// If base.OnLowMemory() is not called, the event 'LowMemory' will not be emitted.
150         /// </summary>
151         protected virtual void OnLowMemory(LowMemoryEventArgs e)
152         {
153             LowMemory?.Invoke(this, e);
154             System.GC.Collect();
155         }
156
157         /// <summary>
158         /// Overrides this method if want to handle behavior when the system battery is low.
159         /// If base.OnLowBattery() is not called, the event 'LowBattery' will not be emitted.
160         /// </summary>
161         protected virtual void OnLowBattery(LowBatteryEventArgs e)
162         {
163             LowBattery?.Invoke(this, e);
164         }
165
166         /// <summary>
167         /// Overrides this method if want to handle behavior when the system language is changed.
168         /// If base.OnLocaleChanged() is not called, the event 'LocaleChanged' will not be emitted.
169         /// </summary>
170         protected virtual void OnLocaleChanged(LocaleChangedEventArgs e)
171         {
172             LocaleChanged?.Invoke(this, e);
173         }
174
175         /// <summary>
176         /// Overrides this method if want to handle behavior when the region format is changed.
177         /// If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.
178         /// </summary>
179         protected virtual void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
180         {
181             RegionFormatChanged?.Invoke(this, e);
182         }
183
184         /// <summary>
185         /// Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
186         /// </summary>
187         /// <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>
188         protected override void Dispose(bool disposing)
189         {
190             if (!_disposedValue)
191             {
192                 if (disposing)
193                 {
194                     _backend.Dispose();
195                 }
196
197                 _disposedValue = true;
198             }
199             base.Dispose(disposing);
200         }
201     }
202 }