[NUI] Re-structuring NUI by classifying modules
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Common / BaseHandle.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 using System;
18 using System.ComponentModel;
19 using System.Runtime.CompilerServices;
20 using Tizen.NUI.Binding;
21 using Tizen.NUI.Binding.Internals;
22
23 namespace Tizen.NUI
24 {
25
26     /// <summary>
27     /// BaseHandle is a handle to an internal Dali resource.
28     /// </summary>
29     /// <since_tizen> 3 </since_tizen>
30     public class BaseHandle : Element, global::System.IDisposable
31     {
32         /// <summary>
33         /// swigCMemOwn
34         /// </summary>
35         /// <since_tizen> 3 </since_tizen>
36         protected bool swigCMemOwn;
37
38         /// <summary>
39         /// A flag to check if it is already disposed.
40         /// </summary>
41         /// <since_tizen> 3 </since_tizen>
42         protected bool disposed = false;
43
44         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
45         private global::System.Runtime.InteropServices.HandleRef swigCPtrCopy;
46         private bool registerMe;
47
48         //A Flag to check who called Dispose(). (By User or DisposeQueue)
49         private bool isDisposeQueued = false;
50
51         private bool disposedThis = false;
52
53         /// <summary>
54         /// Create an instance of BaseHandle.
55         /// </summary>
56         /// <since_tizen> 3 </since_tizen>
57         public BaseHandle() : this(Interop.BaseHandle.NewBaseHandle())
58         {
59             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
60         }
61
62         /// <summary>
63         /// Create an instance of BaseHandle.
64         /// </summary>
65         /// <param name="handle">The BaseHandle instance.</param>
66         /// <since_tizen> 3 </since_tizen>
67         public BaseHandle(BaseHandle handle) : this(Interop.BaseHandle.NewBaseHandle(BaseHandle.getCPtr(handle)))
68         {
69             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
70         }
71
72         internal BaseHandle(global::System.IntPtr cPtr, bool cMemoryOwn)
73         {
74             //to catch derived classes dali native exceptions
75             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
76
77             registerMe = swigCMemOwn = cMemoryOwn;
78             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
79             // using copy constructor to create another native handle so Registry.Unregister works fine.
80             swigCPtrCopy = new global::System.Runtime.InteropServices.HandleRef(this, Interop.BaseHandle.NewBaseHandle(swigCPtr));
81             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
82
83             if (registerMe)
84             {
85
86                 // Register this instance of BaseHandle in the registry.
87                 Registry.Register(this);
88             }
89         }
90
91         internal BaseHandle(global::System.IntPtr cPtr)
92         {
93             registerMe = swigCMemOwn = true;
94
95             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
96
97             // using copy constructor to create another native handle so Registry.Unregister works fine.
98             swigCPtrCopy = new global::System.Runtime.InteropServices.HandleRef(this, Interop.BaseHandle.NewBaseHandle(SwigCPtr));
99             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
100
101             if (registerMe)
102             {
103                 // Register this instance of BaseHandle in the registry.
104                 Registry.Register(this);
105             }
106         }
107
108         /// <summary>
109         /// Dispose.
110         /// </summary>
111         /// <since_tizen> 3 </since_tizen>
112         ~BaseHandle() => Dispose(false);
113
114         /// <summary>
115         /// Event when a property is set.
116         /// </summary>
117         /// <since_tizen> 5 </since_tizen>
118         public event PropertyChangedEventHandler PropertySet;
119
120         internal global::System.Runtime.InteropServices.HandleRef GetBaseHandleCPtrHandleRef
121         {
122             get
123             {
124                 return swigCPtrCopy;
125             }
126         }
127
128         /// <summary>
129         /// Returns the bool value true to indicate that an operand is true and returns false otherwise.
130         /// </summary>
131         /// <since_tizen> 3 </since_tizen>
132         public static bool operator true(BaseHandle handle)
133         {
134             // if the C# object is null, return false
135             if (BaseHandle.ReferenceEquals(handle, null))
136             {
137                 return false;
138             }
139             // returns true if the handle has a body, false otherwise
140             return handle.HasBody();
141         }
142
143         /// <summary>
144         /// Returns the bool false  to indicate that an operand is false and returns true otherwise.
145         /// </summary>
146         /// <since_tizen> 3 </since_tizen>
147         public static bool operator false(BaseHandle handle)
148         {
149             // if the C# object is null, return true
150             if (BaseHandle.ReferenceEquals(handle, null))
151             {
152                 return true;
153             }
154             return !handle.HasBody();
155         }
156
157         /// <summary>
158         /// Explicit conversion from Handle to bool.
159         /// </summary>
160         /// <since_tizen> 3 </since_tizen>
161         public static explicit operator bool(BaseHandle handle)
162         {
163             // if the C# object is null, return false
164             if (BaseHandle.ReferenceEquals(handle, null))
165             {
166                 return false;
167             }
168             // returns true if the handle has a body, false otherwise
169             return handle.HasBody();
170         }
171
172         /// <summary>
173         /// Equality operator
174         /// </summary>
175         /// <since_tizen> 3 </since_tizen>
176         public static bool operator ==(BaseHandle x, BaseHandle y)
177         {
178             // if the C# objects are the same return true
179             if (BaseHandle.ReferenceEquals(x, y))
180             {
181                 return true;
182             }
183             if (!BaseHandle.ReferenceEquals(x, null) && !BaseHandle.ReferenceEquals(y, null))
184             {
185                 // drop into native code to see if both handles point to the same body
186                 return x.IsEqual(y);
187             }
188
189             if (BaseHandle.ReferenceEquals(x, null) && !BaseHandle.ReferenceEquals(y, null))
190             {
191                 if (y.HasBody()) return false;
192                 else return true;
193             }
194             if (!BaseHandle.ReferenceEquals(x, null) && BaseHandle.ReferenceEquals(y, null))
195             {
196                 if (x.HasBody()) return false;
197                 else return true;
198             }
199
200             return false;
201         }
202
203         /// <summary>
204         /// Inequality operator. Returns Null if either operand is Null
205         /// </summary>
206         /// <since_tizen> 3 </since_tizen>
207         public static bool operator !=(BaseHandle x, BaseHandle y)
208         {
209             return !(x == y);
210         }
211
212         /// <summary>
213         /// Logical AND operator.<br />
214         /// It's possible when doing a  operator this function (opBitwiseAnd) is never called due to short circuiting.<br />
215         /// </summary>
216         /// <since_tizen> 3 </since_tizen>
217         public static BaseHandle operator &(BaseHandle x, BaseHandle y)
218         {
219             if (x == y)
220             {
221                 return x;
222             }
223             return null;
224         }
225
226         /// <summary>
227         /// Logical OR operator for ||.<br />
228         /// It's possible when doing a || this function (opBitwiseOr) is never called due to short circuiting.<br />
229         /// </summary>
230         /// <since_tizen> 3 </since_tizen>
231         public static BaseHandle operator |(BaseHandle x, BaseHandle y)
232         {
233             if (!BaseHandle.ReferenceEquals(x, null) || !BaseHandle.ReferenceEquals(y, null))
234             {
235                 if (x != null && x.HasBody())
236                 {
237                     return x;
238                 }
239                 if (y != null && y.HasBody())
240                 {
241                     return y;
242                 }
243                 return null;
244             }
245             return null;
246         }
247
248         /// <summary>
249         /// Logical ! operator
250         /// </summary>
251         /// <since_tizen> 3 </since_tizen>
252         public static bool operator !(BaseHandle x)
253         {
254             // if the C# object is null, return true
255             if (BaseHandle.ReferenceEquals(x, null))
256             {
257                 return true;
258             }
259             if (x.HasBody())
260             {
261                 return false;
262             }
263             return true;
264         }
265
266         /// <summary>
267         /// Equals
268         /// </summary>
269         /// <param name="o">The object should be compared.</param>
270         /// <returns>True if equal.</returns>
271         /// <since_tizen> 5 </since_tizen>
272         public override bool Equals(object o)
273         {
274             return base.Equals(o);
275         }
276
277         /// <summary>
278         /// Gets the the hash code of this baseHandle.
279         /// </summary>
280         /// <returns>The hash code.</returns>
281         /// <since_tizen> 5 </since_tizen>
282         public override int GetHashCode()
283         {
284             return base.GetHashCode();
285         }
286
287         /// <summary>
288         /// Dispose.
289         /// </summary>
290         /// <since_tizen> 3 </since_tizen>
291         public void Dispose()
292         {
293             Dispose(true);
294             System.GC.SuppressFinalize(this);
295         }
296
297         /// <summary>
298         /// Hidden API (Inhouse API).
299         /// Dispose. 
300         /// </summary>
301         /// <remarks>
302         /// Following the guide of https://docs.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-dispose.
303         /// This will replace "protected virtual void Dispose(DisposeTypes type)" which is exactly same in functionality.
304         /// </remarks>
305         /// <param name="disposing">true in order to free managed objects</param>
306         // Protected implementation of Dispose pattern.
307         [EditorBrowsable(EditorBrowsableState.Never)]
308         protected virtual void Dispose(bool disposing)
309         {
310             if (disposedThis)
311             {
312                 return;
313             }
314
315             if (disposing)
316             {
317                 // TODO: dispose managed state (managed objects).
318                 // Explicit call. user calls Dispose()
319
320                 //Throw excpetion if Dispose() is called in separate thread.
321                 if (!Window.IsInstalled())
322                 {
323                     throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
324                 }
325
326                 if (isDisposeQueued)
327                 {
328                     Dispose(DisposeTypes.Implicit);
329                 }
330                 else
331                 {
332                     Dispose(DisposeTypes.Explicit);
333                 }
334             }
335             else
336             {
337                 // Implicit call. user doesn't call Dispose(), so this object is added into DisposeQueue to be disposed automatically.
338                 if (!isDisposeQueued)
339                 {
340                     isDisposeQueued = true;
341                     DisposeQueue.Instance.Add(this);
342                 }
343             }
344
345             // TODO: free unmanaged resources (unmanaged objects) and override a finalizer below.
346             // TODO: set large fields to null.
347
348             disposedThis = true;
349         }
350
351
352         /// <summary>
353         /// Performs an action on this object with the given action name and attributes.
354         /// </summary>
355         /// <param name="actionName">The command for the action.</param>
356         /// <param name="attributes">The list of attributes for the action.</param>
357         /// <returns>The action is performed by the object or not.</returns>
358         /// <since_tizen> 3 </since_tizen>
359         public bool DoAction(string actionName, PropertyMap attributes)
360         {
361             bool ret = Interop.BaseHandle.DoAction(swigCPtrCopy, actionName, PropertyMap.getCPtr(attributes));
362             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
363             return ret;
364         }
365
366         /// <summary>
367         /// Returns the type name for the Handle.<br />
368         /// Will return an empty string if the typename does not exist. This will happen for types that
369         /// have not registered with type-registry.
370         /// </summary>
371         /// <returns>The type name. Empty string if the typename does not exist.</returns>
372         /// <since_tizen> 3 </since_tizen>
373         public string GetTypeName()
374         {
375             string ret = Interop.BaseHandle.GetTypeName(swigCPtrCopy);
376             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
377             return ret;
378         }
379
380         /// <summary>
381         /// Returns the type info for the Handle.<br />
382         /// </summary>
383         /// <param name="info">The type information.</param>
384         /// <returns>True If get the type info.</returns>
385         /// <since_tizen> 3 </since_tizen>
386         public bool GetTypeInfo(Tizen.NUI.TypeInfo info)
387         {
388             bool ret = Interop.BaseHandle.GetTypeInfo(swigCPtrCopy, Tizen.NUI.TypeInfo.getCPtr(info));
389             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
390             return ret;
391         }
392
393         /// <summary>
394         /// Resets the handle.
395         /// </summary>
396         /// <since_tizen> 3 </since_tizen>
397         public void Reset()
398         {
399             Interop.BaseHandle.Reset(swigCPtrCopy);
400             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
401         }
402
403         /// <summary>
404         /// To check the BaseHandle instance is equal or not.
405         /// </summary>
406         /// <param name="rhs">The baseHandle instance.</param>
407         /// <returns>True If equal.</returns>
408         /// <since_tizen> 3 </since_tizen>
409         public bool EqualTo(BaseHandle rhs)
410         {
411             bool ret = Interop.BaseHandle.EqualTo(swigCPtrCopy, BaseHandle.getCPtr(rhs));
412             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
413             return ret;
414         }
415
416         /// <summary>
417         /// To check the BaseHandle instance is equal or not.
418         /// </summary>
419         /// <param name="rhs">The baseHandle instance.</param>
420         /// <returns>True If not equal.</returns>
421         /// <since_tizen> 3 </since_tizen>
422         public bool NotEqualTo(BaseHandle rhs)
423         {
424             bool ret = Interop.BaseHandle.NotEqualTo(swigCPtrCopy, BaseHandle.getCPtr(rhs));
425             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
426             return ret;
427         }
428
429         /// <summary>
430         /// To check the BaseHandle instance has body or not.
431         /// </summary>
432         /// <returns>True If the baseHandle instance has body.</returns>
433         /// <since_tizen> 3 </since_tizen>
434         public bool HasBody()
435         {
436             if (swigCPtrCopy.Handle == IntPtr.Zero)
437             {
438                 return false;
439             }
440
441             if (disposed == true)
442             {
443                 return false;
444             }
445             bool ret = Interop.BaseHandle.HasBody(swigCPtrCopy);
446             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
447             return ret;
448         }
449
450         /// <summary>
451         /// To check the BaseHandle instance is equal or not.
452         /// </summary>
453         /// <param name="rhs">The baseHandle instance.</param>
454         /// <returns>True If equal.</returns>
455         /// <since_tizen> 3 </since_tizen>
456         public bool IsEqual(BaseHandle rhs)
457         {
458             if (disposed == true)
459             {
460                 return false;
461             }
462
463             bool ret = Interop.BaseHandle.IsEqual(swigCPtrCopy, BaseHandle.getCPtr(rhs));
464             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
465             return ret;
466         }
467
468         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(BaseHandle obj)
469         {
470             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtrCopy;
471         }
472
473         internal void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
474         {
475             PropertySet?.Invoke(this, new PropertyChangedEventArgs(propertyName));
476         }
477
478         /// <summary>
479         /// Dispose.
480         /// </summary>
481         /// <since_tizen> 3 </since_tizen>
482         protected virtual void Dispose(DisposeTypes type)
483         {
484             if (disposed)
485             {
486                 return;
487             }
488
489             if (type == DisposeTypes.Explicit)
490             {
491                 //Called by User
492                 //Release your own managed resources here.
493                 //You should release all of your own disposable objects here.
494
495             }
496
497             //Release your own unmanaged resources here.
498             //You should not access any managed member here except static instance.
499             //because the execution order of Finalizes is non-deterministic.
500
501             //Unreference this instance from Registry.
502             if (registerMe)
503             {
504                 Registry.Unregister(this);
505             }
506
507             if (SwigCPtr.Handle != IntPtr.Zero)
508             {
509                 if (swigCMemOwn)
510                 {
511                     swigCMemOwn = false;
512                     ReleaseSwigCPtr(SwigCPtr);
513                 }
514                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
515             }
516             if (swigCPtrCopy.Handle != global::System.IntPtr.Zero)
517             {
518                 swigCMemOwn = false;
519                 Interop.BaseHandle.DeleteBaseHandle(swigCPtrCopy);
520                 swigCPtrCopy = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
521             }
522
523             disposed = true;
524         }
525
526         /// <summary>
527         /// Release swigCPtr.
528         /// </summary>
529         /// <since_tizen> 6 </since_tizen>
530         /// This will not be public opened.
531         [EditorBrowsable(EditorBrowsableState.Never)]
532         protected virtual void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
533         {
534         }
535
536         /// <summary>
537         /// Contains event arguments for the FocusChangeRequested event.
538         /// </summary>
539         [Obsolete("Deprecated in API9; Will be removed in API11.")]
540         public class FocusRequestArgs : EventArgs
541         {
542
543             /// <summary>
544             /// Gets or sets a value that indicates the starting focus state of the element for which a focus change is requested.
545             /// </summary>
546             public bool Focus { get; set; }
547
548             /// <summary>
549             /// Gets or sets a value that indicates the ending focus state of the element for which a focus change is requested.
550             /// </summary>
551             public bool Result { get; set; }
552         }
553
554         internal global::System.Runtime.InteropServices.HandleRef SwigCPtr
555         {
556             get => swigCPtr;
557             set
558             {
559                 swigCPtr = value;
560             }
561         }
562
563         /// <summary>
564         /// swigCMemOwn
565         /// </summary>
566         [EditorBrowsable(EditorBrowsableState.Never)]
567         protected internal bool SwigCMemOwn => swigCMemOwn;
568
569         /// <summary>
570         /// A flag to check if it is already disposed.
571         /// </summary>
572         [EditorBrowsable(EditorBrowsableState.Never)]
573         protected internal bool Disposed => disposed;
574     }
575
576 }