#region License /* Copyright (c) 2010-2014 Danko Kozar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #endregion License using System; using eDriven.Core.Caching; using UnityEngine; namespace eDriven.Core.Reflection { /// /// To speed things up, we use caching
/// This is a global cache holding member types
/// This way we should reflect only once per class/member in the application lifetime (assuming that member types don't change)
/// Some operations like tweening use this cache
/// The cache could be cleared manually anytime ///
public class GlobalMemberCache : MemberCache { #if DEBUG // ReSharper disable UnassignedField.Global /// /// Debug mode /// public static bool DebugMode; // ReSharper restore UnassignedField.Global #endif #region Singleton private static GlobalMemberCache _instance; /// /// Singleton class for handling focus /// private GlobalMemberCache() { // Constructor is protected } /// /// Singleton instance /// public static GlobalMemberCache Instance { get { if (_instance == null) { #if DEBUG if (DebugMode) Debug.Log(string.Format("Instantiating GlobalMemberCache instance")); #endif _instance = new GlobalMemberCache(); Initialize(); } return _instance; } } #endregion /// /// Initializes the Singleton instance /// private static void Initialize() { } } }