Modify args
[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 = new string[args.Length + 1];
97             argsClone[0] = string.Empty;
98             args.CopyTo(argsClone, 1);
99             _backend.Run(argsClone);
100         }
101
102         /// <summary>
103         /// Exits the main loop of the application. 
104         /// </summary>
105         public override void Exit()
106         {
107             _backend.Exit();
108         }
109
110         /// <summary>
111         /// Overrides this method if want to handle behavior when the application is launched.
112         /// If base.OnCreated() is not called, the event 'Created' will not be emitted.
113         /// </summary>
114         protected virtual void OnCreate()
115         {
116             Created?.Invoke(this, EventArgs.Empty);
117         }
118
119         /// <summary>
120         /// Overrides this method if want to handle behavior when the application is terminated.
121         /// If base.OnTerminate() is not called, the event 'Terminated' will not be emitted.
122         /// </summary>
123         protected virtual void OnTerminate()
124         {
125             Terminated?.Invoke(this, EventArgs.Empty);
126         }
127
128         /// <summary>
129         /// Overrides this method if want to handle behavior when the application receives the appcontrol message.
130         /// If base.OnAppControlReceived() is not called, the event 'AppControlReceived' will not be emitted.
131         /// </summary>
132         /// <param name="e"></param>
133         protected virtual void OnAppControlReceived(AppControlReceivedEventArgs e)
134         {
135             AppControlReceived?.Invoke(this, e);
136         }
137
138         /// <summary>
139         /// Overrides this method if want to handle behavior when the system memory is low.
140         /// If base.OnLowMemory() is not called, the event 'LowMemory' will not be emitted.
141         /// </summary>
142         protected virtual void OnLowMemory(LowMemoryEventArgs e)
143         {
144             LowMemory?.Invoke(this, e);
145             System.GC.Collect();
146         }
147
148         /// <summary>
149         /// Overrides this method if want to handle behavior when the system battery is low.
150         /// If base.OnLowBattery() is not called, the event 'LowBattery' will not be emitted.
151         /// </summary>
152         protected virtual void OnLowBattery(LowBatteryEventArgs e)
153         {
154             LowBattery?.Invoke(this, e);
155         }
156
157         /// <summary>
158         /// Overrides this method if want to handle behavior when the system language is changed.
159         /// If base.OnLocaleChanged() is not called, the event 'LocaleChanged' will not be emitted.
160         /// </summary>
161         protected virtual void OnLocaleChanged(LocaleChangedEventArgs e)
162         {
163             LocaleChanged?.Invoke(this, e);
164         }
165
166         /// <summary>
167         /// Overrides this method if want to handle behavior when the region format is changed.
168         /// If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.
169         /// </summary>
170         protected virtual void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
171         {
172             RegionFormatChanged?.Invoke(this, e);
173         }
174
175         /// <summary>
176         /// Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
177         /// </summary>
178         /// <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>
179         protected override void Dispose(bool disposing)
180         {
181             if (!_disposedValue)
182             {
183                 if (disposing)
184                 {
185                     _backend.Dispose();
186                 }
187
188                 _disposedValue = true;
189             }
190             base.Dispose(disposing);
191         }
192     }
193 }