PageRenderTime 41ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/IronPython_Main/Runtime/Microsoft.Dynamic/Utils/WeakHandle.cs

#
C# | 58 lines | 33 code | 9 blank | 16 comment | 5 complexity | 7950e8b3d2868e16f79f7ce83bb73e22 MD5 | raw file
Possible License(s): GPL-2.0, MPL-2.0-no-copyleft-exception, CPL-1.0, CC-BY-SA-3.0, BSD-3-Clause, ISC, AGPL-3.0, LGPL-2.1, Apache-2.0
  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using System;
  16. using System.Runtime.InteropServices;
  17. namespace Microsoft.Scripting.Utils {
  18. #if SILVERLIGHT
  19. // TODO: finalizers in user types aren't supported in Silverlight
  20. // we need to come up with another solution for Python's _weakref library
  21. public struct WeakHandle {
  22. private WeakReference _weakRef;
  23. public WeakHandle(object target, bool trackResurrection) {
  24. _weakRef = new WeakReference(target, trackResurrection);
  25. GC.SuppressFinalize(this._weakRef);
  26. }
  27. public bool IsAlive { get { return _weakRef != null && _weakRef.IsAlive; } }
  28. public object Target { get { return _weakRef != null ? _weakRef.Target : null; } }
  29. public void Free() {
  30. if (_weakRef != null) {
  31. GC.ReRegisterForFinalize(_weakRef);
  32. _weakRef.Target = null;
  33. _weakRef = null;
  34. }
  35. }
  36. }
  37. #else
  38. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1815:OverrideEqualsAndOperatorEqualsOnValueTypes")] // TODO: fix
  39. public struct WeakHandle {
  40. private GCHandle weakRef;
  41. public WeakHandle(object target, bool trackResurrection) {
  42. this.weakRef = GCHandle.Alloc(target, trackResurrection ? GCHandleType.WeakTrackResurrection : GCHandleType.Weak);
  43. }
  44. public bool IsAlive { get { return weakRef.IsAllocated; } }
  45. public object Target { get { return weakRef.Target; } }
  46. public void Free() { weakRef.Free(); }
  47. }
  48. #endif
  49. }