1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
|
// ObjectValue.cs
//
// Authors: Lluis Sanchez Gual <lluis@novell.com>
// Jeffrey Stedfast <jeff@xamarin.com>
//
// Copyright (c) 2008 Novell, Inc (http://www.novell.com)
// Copyright (c) 2012 Xamarin Inc. (http://www.xamarin.com)
//
// 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.
//
//
using System;
using System.Text;
using Mono.Debugging.Backend;
using System.Collections.Generic;
using System.Threading;
namespace Mono.Debugging.Client
{
[Serializable]
public class ObjectValue
{
ObjectPath path;
int arrayCount = -1;
bool isNull;
string name;
string value;
string typeName;
string displayValue;
string childSelector;
ObjectValueFlags flags;
IObjectValueSource source;
IObjectValueUpdater updater;
List<ObjectValue> children;
ManualResetEvent evaluatedEvent;
[NonSerialized]
UpdateCallback updateCallback;
[NonSerialized]
EventHandler valueChanged;
[NonSerialized]
StackFrame parentFrame;
static ObjectValue Create (IObjectValueSource source, ObjectPath path, string typeName)
{
ObjectValue ob = new ObjectValue ();
ob.source = source;
ob.path = path;
ob.typeName = typeName;
return ob;
}
public static ObjectValue CreateObject (IObjectValueSource source, ObjectPath path, string typeName, string value, ObjectValueFlags flags, ObjectValue[] children)
{
return CreateObject (source, path, typeName, new EvaluationResult (value), flags, children);
}
public static ObjectValue CreateObject (IObjectValueSource source, ObjectPath path, string typeName, EvaluationResult value, ObjectValueFlags flags, ObjectValue[] children)
{
ObjectValue ob = Create (source, path, typeName);
ob.path = path;
ob.flags = flags | ObjectValueFlags.Object;
ob.value = value.Value;
ob.displayValue = value.DisplayValue;
if (children != null) {
ob.children = new List<ObjectValue> ();
ob.children.AddRange (children);
}
return ob;
}
public static ObjectValue CreateNullObject (IObjectValueSource source, string name, string typeName, ObjectValueFlags flags)
{
return CreateNullObject (source, new ObjectPath (name), typeName, flags);
}
public static ObjectValue CreateNullObject (IObjectValueSource source, ObjectPath path, string typeName, ObjectValueFlags flags)
{
ObjectValue ob = Create (source, path, typeName);
ob.flags = flags | ObjectValueFlags.Object;
ob.value = "(null)";
ob.isNull = true;
return ob;
}
public static ObjectValue CreatePrimitive (IObjectValueSource source, ObjectPath path, string typeName, EvaluationResult value, ObjectValueFlags flags)
{
ObjectValue ob = Create (source, path, typeName);
ob.flags = flags | ObjectValueFlags.Primitive;
ob.value = value.Value;
ob.displayValue = value.DisplayValue;
return ob;
}
public static ObjectValue CreateArray (IObjectValueSource source, ObjectPath path, string typeName, int arrayCount, ObjectValueFlags flags, ObjectValue[] children)
{
ObjectValue ob = Create (source, path, typeName);
ob.arrayCount = arrayCount;
ob.flags = flags | ObjectValueFlags.Array;
ob.value = "[" + arrayCount + "]";
if (children != null && children.Length > 0) {
ob.children = new List<ObjectValue> ();
ob.children.AddRange (children);
}
return ob;
}
public static ObjectValue CreateUnknown (IObjectValueSource source, ObjectPath path, string typeName)
{
ObjectValue ob = Create (source, path, typeName);
ob.flags = ObjectValueFlags.Unknown | ObjectValueFlags.ReadOnly;
return ob;
}
public static ObjectValue CreateUnknown (string name)
{
return CreateUnknown (null, new ObjectPath (name), "");
}
public static ObjectValue CreateError (IObjectValueSource source, ObjectPath path, string typeName, string value, ObjectValueFlags flags)
{
ObjectValue ob = Create (source, path, typeName);
ob.flags = flags | ObjectValueFlags.Error;
ob.value = value;
return ob;
}
public static ObjectValue CreateImplicitNotSupported (IObjectValueSource source, ObjectPath path, string typeName, ObjectValueFlags flags)
{
return CreateNotSupported (source, path, typeName, "Implicit evaluation is disabled", flags);
}
public static ObjectValue CreateNotSupported (IObjectValueSource source, ObjectPath path, string typeName, string message, ObjectValueFlags flags)
{
ObjectValue ob = Create (source, path, typeName);
ob.flags = flags | ObjectValueFlags.NotSupported;
ob.value = message;
return ob;
}
public static ObjectValue CreateFatalError (string name, string message, ObjectValueFlags flags)
{
ObjectValue ob = new ObjectValue ();
ob.flags = flags | ObjectValueFlags.Error;
ob.value = message;
ob.name = name;
return ob;
}
public static ObjectValue CreateEvaluating (IObjectValueUpdater updater, ObjectPath path, ObjectValueFlags flags)
{
ObjectValue ob = Create (null, path, null);
ob.updater = updater;
ob.path = path;
ob.flags = flags | ObjectValueFlags.Evaluating;
return ob;
}
/// <summary>
/// Gets the flags of the value
/// </summary>
public ObjectValueFlags Flags {
get { return flags; }
}
/// <summary>
/// Name of the value (for example, the property name)
/// </summary>
public string Name {
get {
if (name == null)
return path [path.Length - 1];
return name;
}
set {
name = value;
}
}
/// <summary>
/// Gets or sets the value of the object
/// </summary>
/// <value>
/// The value.
/// </value>
/// <exception cref='InvalidOperationException'>
/// Is thrown when trying to set a value on a read-only ObjectValue
/// </exception>
/// <remarks>
/// This value is a string representation of the ObjectValue. The content depends on several evaluation
/// options. For example, if ToString calls are enabled, this value will be the result of calling
/// ToString.
/// If the object is a primitive type, in general the Value will be an expression that represents the
/// value in the target language. For example, when debugging C#, if the property is an string, the value
/// will include the quotation marks and chars like '\' will be properly escaped.
/// If you need to get the real CLR value of the object, use GetRawValue.
/// </remarks>
public virtual string Value {
get {
return value;
}
set {
if (IsReadOnly || source == null)
throw new InvalidOperationException ("Value is not editable");
EvaluationResult res = source.SetValue (path, value, null);
if (res != null) {
this.value = res.Value;
displayValue = res.DisplayValue;
isNull = value == null;
}
}
}
/// <summary>
/// Gets or sets the display value of this object
/// </summary>
/// <remarks>
/// This method returns a string to be used when showing the value of this object.
/// In most cases, the Value and DisplayValue properties return the same text, but there are some cases
/// in which DisplayValue may return a more convenient textual representation of the value, which
/// may not be a valid target language expression.
/// For example in C#, an enum Value includes the full enum type name (e.g. "Gtk.ResponseType.OK"),
/// while DisplayValue only has the enum value name ("OK").
/// </remarks>
public string DisplayValue {
get { return displayValue ?? Value; }
set { displayValue = value; }
}
/// <summary>
/// Sets the value of this object, using the default evaluation options
/// </summary>
public void SetValue (string value)
{
SetValue (value, parentFrame.DebuggerSession.EvaluationOptions);
}
/// <summary>
/// Sets the value of this object, using the specified evaluation options
/// </summary>
/// <param name='value'>
/// The value
/// </param>
/// <param name='options'>
/// The options
/// </param>
/// <exception cref='InvalidOperationException'>
/// Is thrown if the value is read-only
/// </exception>
public void SetValue (string value, EvaluationOptions options)
{
if (IsReadOnly || source == null)
throw new InvalidOperationException ("Value is not editable");
EvaluationResult res = source.SetValue (path, value, options);
if (res != null) {
this.value = res.Value;
displayValue = res.DisplayValue;
}
}
/// <summary>
/// Gets the raw value of this object
/// </summary>
/// <returns>
/// The raw value.
/// </returns>
/// <remarks>
/// This method can be used to get the CLR value of the object. For example, if this ObjectValue is
/// a property of type String, this method will return the System.String value of the property.
/// If this ObjectValue refers to an object instead of a primitive value, then a RawValue object
/// will be returned. RawValue can be used to get and set members of an object, and to call methods.
/// If this ObjectValue refers to an array, then a RawValueArray object will be returned.
/// </remarks>
public object GetRawValue ()
{
EvaluationOptions ops = parentFrame.DebuggerSession.EvaluationOptions.Clone ();
ops.EllipsizeStrings = false;
return GetRawValue (ops);
}
/// <summary>
/// Gets the raw value of this object
/// </summary>
/// <param name='options'>
/// The evaluation options
/// </param>
/// <returns>
/// The raw value.
/// </returns>
/// <remarks>
/// This method can be used to get the CLR value of the object. For example, if this ObjectValue is
/// a property of type String, this method will return the System.String value of the property.
/// If this ObjectValue refers to an object instead of a primitive value, then a RawValue object
/// will be returned. RawValue can be used to get and set members of an object, and to call methods.
/// If this ObjectValue refers to an array, then a RawValueArray object will be returned.
/// </remarks>
public object GetRawValue (EvaluationOptions options)
{
object res = source.GetRawValue (path, options);
IRawObject val = res as IRawObject;
if (val != null)
val.Connect (parentFrame.DebuggerSession, options);
return res;
}
/// <summary>
/// Sets the raw value of this object
/// </summary>
/// <param name='value'>
/// The value
/// </param>
/// <remarks>
/// The provided value can be a primitive type, a RawValue object or a RawValueArray object.
/// </remarks>
public void SetRawValue (object value)
{
SetRawValue (value, parentFrame.DebuggerSession.EvaluationOptions);
}
/// <summary>
/// Sets the raw value of this object
/// </summary>
/// <param name='value'>
/// The value
/// </param>
/// <param name='options'>
/// The evaluation options
/// </param>
/// <remarks>
/// The provided value can be a primitive type, a RawValue object or a RawValueArray object.
/// </remarks>
public void SetRawValue (object value, EvaluationOptions options)
{
source.SetRawValue (path, value, options);
}
/// <summary>
/// Full name of the type of the object
/// </summary>
public string TypeName {
get { return typeName; }
set { typeName = value; }
}
/// <summary>
/// Gets or sets the child selector.
/// </summary>
/// <remarks>
/// The child selector is an expression which can be concatenated to a parent expression to get this child.
/// For example, if this object is a reference to a field named 'foo' of an object, the child
/// selector is '.foo'.
/// </remarks>
public string ChildSelector {
get {
if (childSelector != null)
return childSelector;
if ((flags & ObjectValueFlags.ArrayElement) != 0)
return Name;
return "." + Name;
}
set { childSelector = value; }
}
/// <summary>
/// Gets a value indicating whether this object has children.
/// </summary>
/// <value>
/// <c>true</c> if this instance has children; otherwise, <c>false</c>.
/// </value>
public bool HasChildren {
get {
if (isNull)
return false;
if (IsEvaluating)
return false;
if (children != null)
return children.Count > 0;
if (source == null)
return false;
if (IsArray)
return arrayCount > 0;
if (IsObject)
return true;
return false;
}
}
/// <summary>
/// Gets a child value
/// </summary>
/// <returns>
/// The child.
/// </returns>
/// <param name='name'>
/// Name of the member
/// </param>
/// <remarks>
/// This method can be used to get a member of an object (such as a field or property)
/// </remarks>
public ObjectValue GetChild (string name)
{
return GetChild (name, parentFrame.DebuggerSession.EvaluationOptions);
}
/// <summary>
/// Gets a child value
/// </summary>
/// <returns>
/// The child.
/// </returns>
/// <param name='name'>
/// Name of the member
/// </param>
/// <param name='options'>
/// Options to be used to evaluate the child
/// </param>
/// <remarks>
/// This method can be used to get a member of an object (such as a field or property)
/// </remarks>
public ObjectValue GetChild (string name, EvaluationOptions options)
{
if (IsArray)
throw new InvalidOperationException ("Object is an array.");
if (IsEvaluating)
return null;
if (children == null) {
children = new List<ObjectValue> ();
if (source != null) {
try {
ObjectValue[] cs = source.GetChildren (path, -1, -1, options);
ConnectCallbacks (parentFrame, cs);
children.AddRange (cs);
} catch (Exception ex) {
children = null;
return CreateFatalError ("", ex.Message, ObjectValueFlags.ReadOnly);
}
}
}
foreach (ObjectValue ob in children) {
if (ob.Name == name)
return ob;
}
return null;
}
/// <summary>
/// Gets all children of the object
/// </summary>
/// <returns>
/// An array of all child values
/// </returns>
public ObjectValue[] GetAllChildren ()
{
return GetAllChildren (parentFrame.DebuggerSession.EvaluationOptions);
}
/// <summary>
/// Gets all children of the object
/// </summary>
/// <returns>
/// An array of all child values
/// </returns>
/// <param name='options'>
/// Options to be used to evaluate the children
/// </param>
public ObjectValue[] GetAllChildren (EvaluationOptions options)
{
if (IsEvaluating)
return new ObjectValue[0];
if (IsArray) {
GetArrayItem (arrayCount - 1);
return children.ToArray ();
}
if (children == null) {
children = new List<ObjectValue> ();
if (source != null) {
try {
ObjectValue[] cs = source.GetChildren (path, -1, -1, options);
ConnectCallbacks (parentFrame, cs);
children.AddRange (cs);
} catch (Exception ex) {
if (parentFrame != null)
parentFrame.DebuggerSession.OnDebuggerOutput (true, ex.ToString ());
children.Add (CreateFatalError ("", ex.Message, ObjectValueFlags.ReadOnly));
}
}
}
return children.ToArray ();
}
/// <summary>
/// Gets an item of an array
/// </summary>
/// <returns>
/// The array item.
/// </returns>
/// <param name='index'>
/// Item index
/// </param>
/// <exception cref='InvalidOperationException'>
/// Is thrown if this object is not an array (IsArray returns false)
/// </exception>
public ObjectValue GetArrayItem (int index)
{
return GetArrayItem (index, parentFrame.DebuggerSession.EvaluationOptions);
}
/// <summary>
/// Gets an item of an array
/// </summary>
/// <returns>
/// The array item.
/// </returns>
/// <param name='index'>
/// Item index
/// </param>
/// <param name='options'>
/// Options to be used to evaluate the item
/// </param>
/// <exception cref='InvalidOperationException'>
/// Is thrown if this object is not an array (IsArray returns false)
/// </exception>
public ObjectValue GetArrayItem (int index, EvaluationOptions options)
{
if (!IsArray)
throw new InvalidOperationException ("Object is not an array.");
if (index >= arrayCount || index < 0 || IsEvaluating)
throw new IndexOutOfRangeException ();
if (children == null)
children = new List<ObjectValue> ();
if (index >= children.Count) {
int nc = (index + 50);
if (nc > arrayCount) nc = arrayCount;
nc = nc - children.Count;
try {
ObjectValue[] items = source.GetChildren (path, children.Count, nc, options);
ConnectCallbacks (parentFrame, items);
children.AddRange (items);
} catch (Exception ex) {
return CreateFatalError ("", ex.Message, ObjectValueFlags.ArrayElement | ObjectValueFlags.ReadOnly);
}
}
return children [index];
}
/// <summary>
/// Gets the number of items of an array
/// </summary>
/// <exception cref='InvalidOperationException'>
/// Is thrown if this object is not an array (IsArray returns false)
/// </exception>
public int ArrayCount {
get {
if (!IsArray)
throw new InvalidOperationException ("Object is not an array.");
if (IsEvaluating)
return 0;
return arrayCount;
}
}
public bool IsReadOnly {
get { return HasFlag (ObjectValueFlags.ReadOnly); }
}
public bool IsArray {
get { return HasFlag (ObjectValueFlags.Array); }
}
public bool IsObject {
get { return HasFlag (ObjectValueFlags.Object); }
}
public bool IsPrimitive {
get { return HasFlag (ObjectValueFlags.Primitive); }
}
public bool IsUnknown {
get { return HasFlag (ObjectValueFlags.Unknown); }
}
public bool IsNotSupported {
get { return HasFlag (ObjectValueFlags.NotSupported); }
}
public bool IsError {
get { return HasFlag (ObjectValueFlags.Error); }
}
public bool IsEvaluating {
get { return HasFlag (ObjectValueFlags.Evaluating); }
}
public bool IsEvaluatingGroup {
get { return HasFlag (ObjectValueFlags.EvaluatingGroup); }
}
public bool CanRefresh {
get { return source != null && !HasFlag (ObjectValueFlags.NoRefresh); }
}
public bool HasFlag (ObjectValueFlags flag)
{
return (flags & flag) != 0;
}
public event EventHandler ValueChanged {
add {
lock (this) {
if (IsEvaluating)
valueChanged += value;
else
value (this, EventArgs.Empty);
}
}
remove {
lock (this) {
valueChanged -= value;
}
}
}
/// <summary>
/// Refreshes the value of this object
/// </summary>
/// <remarks>
/// This method can be called to get a more up-to-date value for this object.
/// </remarks>
public void Refresh ()
{
Refresh (parentFrame.DebuggerSession.EvaluationOptions);
}
/// <summary>
/// Refreshes the value of this object
/// </summary>
/// <remarks>
/// This method can be called to get a more up-to-date value for this object.
/// </remarks>
public void Refresh (EvaluationOptions options)
{
if (!CanRefresh)
return;
ObjectValue val = source.GetValue (path, options);
UpdateFrom (val, false);
}
/// <summary>
/// Gets a wait handle which can be used to wait for the evaluation of this object to end
/// </summary>
/// <value>
/// The wait handle.
/// </value>
public WaitHandle WaitHandle {
get {
lock (this) {
if (evaluatedEvent == null)
evaluatedEvent = new ManualResetEvent (!IsEvaluating);
return evaluatedEvent;
}
}
}
internal IObjectValueUpdater Updater {
get { return updater; }
}
internal void UpdateFrom (ObjectValue val, bool notify)
{
lock (this) {
arrayCount = val.arrayCount;
if (val.name != null)
name = val.name;
value = val.value;
displayValue = val.displayValue;
typeName = val.typeName;
flags = val.flags;
source = val.source;
children = val.children;
path = val.path;
updater = val.updater;
ConnectCallbacks (parentFrame, this);
if (evaluatedEvent != null)
evaluatedEvent.Set ();
if (notify && valueChanged != null)
valueChanged (this, EventArgs.Empty);
}
}
internal UpdateCallback GetUpdateCallback ()
{
if (IsEvaluating) {
if (updateCallback == null)
updateCallback = new UpdateCallback (new UpdateCallbackProxy (this), path);
return updateCallback;
}
return null;
}
~ObjectValue ()
{
if (updateCallback != null)
System.Runtime.Remoting.RemotingServices.Disconnect ((UpdateCallbackProxy)updateCallback.Callback);
}
internal static void ConnectCallbacks (StackFrame parentFrame, params ObjectValue[] values)
{
Dictionary<IObjectValueUpdater, List<UpdateCallback>> callbacks = null;
List<ObjectValue> valueList = new List<ObjectValue> (values);
for (int n=0; n<valueList.Count; n++) {
ObjectValue val = valueList [n];
val.source = parentFrame.DebuggerSession.WrapDebuggerObject (val.source);
val.updater = parentFrame.DebuggerSession.WrapDebuggerObject (val.updater);
val.parentFrame = parentFrame;
UpdateCallback cb = val.GetUpdateCallback ();
if (cb != null) {
if (callbacks == null)
callbacks = new Dictionary<IObjectValueUpdater, List<UpdateCallback>> ();
List<UpdateCallback> list;
if (!callbacks.TryGetValue (val.Updater, out list)) {
list = new List<UpdateCallback> ();
callbacks [val.Updater] = list;
}
list.Add (cb);
}
if (val.children != null)
valueList.AddRange (val.children);
}
if (callbacks != null) {
// Do the callback connection in a background thread
ThreadPool.QueueUserWorkItem (delegate {
foreach (KeyValuePair<IObjectValueUpdater, List<UpdateCallback>> cbs in callbacks) {
cbs.Key.RegisterUpdateCallbacks (cbs.Value.ToArray ());
}
});
}
}
}
class UpdateCallbackProxy: MarshalByRefObject, IObjectValueUpdateCallback
{
readonly WeakReference valRef;
public void UpdateValue (ObjectValue newValue)
{
ObjectValue val = valRef.Target as ObjectValue;
if (val != null)
val.UpdateFrom (newValue, true);
}
public UpdateCallbackProxy (ObjectValue val)
{
valRef = new WeakReference (val);
}
}
}
|