Search code examples
wpfmvvmweak-referencesicommandrelaycommand

Is Josh Smith's implementation of the RelayCommand flawed?


Consider the reference Josh Smith' article WPF Apps With The Model-View-ViewModel Design Pattern, specifically the example implementation of a RelayCommand (In Figure 3). (No need to read through the entire article for this question.)

In general, I think the implementation is excellent, but I have a question about the delegation of CanExecuteChanged subscriptions to the CommandManager's RequerySuggested event. The documentation for RequerySuggested states:

Since this event is static, it will only hold onto the handler as a weak reference. Objects that listen for this event should keep a strong reference to their event handler to avoid it being garbage collected. This can be accomplished by having a private field and assigning the handler as the value before or after attaching to this event.

Yet the sample implementation of RelayCommand does not maintain any such to the subscribed handler:

public event EventHandler CanExecuteChanged
{
    add { CommandManager.RequerySuggested += value; }
    remove { CommandManager.RequerySuggested -= value; }
}
  1. Does this leak the weak reference up to the RelayCommand's client, requiring that the user of the RelayCommand understand the implementation of CanExecuteChanged and maintain a live reference themselves?
  2. If so, does it make sense to, e.g., modify the implementation of RelayCommand to be something like the following to mitigate the potential premature GC of the CanExecuteChanged subscriber:

    // This event never actually fires.  It's purely lifetime mgm't.
    private event EventHandler canExecChangedRef;
    public event EventHandler CanExecuteChanged
    {
        add 
        { 
            CommandManager.RequerySuggested += value;
            this.canExecChangedRef += value;
        }
        remove 
        {
            this.canExecChangedRef -= value;
            CommandManager.RequerySuggested -= value; 
        }
    }
    

Solution

  • I too believe this implementation is flawed, because it definitely leaks the weak reference to the event handler. This is something actually very bad.
    I am using the MVVM Light toolkit and the RelayCommand implemented therein and it is implemented just as in the article.
    The following code will never invoke OnCanExecuteEditChanged:

    private static void OnCommandEditChanged(DependencyObject d, 
                                             DependencyPropertyChangedEventArgs e)
    {
        var @this = d as MyViewBase;
        if (@this == null)
        {
            return;
        }
    
        var oldCommand = e.OldValue as ICommand;
        if (oldCommand != null)
        {
            oldCommand.CanExecuteChanged -= @this.OnCanExecuteEditChanged;
        }
        var newCommand = e.NewValue as ICommand;
        if (newCommand != null)
        {
            newCommand.CanExecuteChanged += @this.OnCanExecuteEditChanged;
        }
    }
    

    However, if I change it like this, it will work:

    private static EventHandler _eventHandler;
    
    private static void OnCommandEditChanged(DependencyObject d,
                                             DependencyPropertyChangedEventArgs e)
    {
        var @this = d as MyViewBase;
        if (@this == null)
        {
            return;
        }
        if (_eventHandler == null)
            _eventHandler = new EventHandler(@this.OnCanExecuteEditChanged);
    
        var oldCommand = e.OldValue as ICommand;
        if (oldCommand != null)
        {
            oldCommand.CanExecuteChanged -= _eventHandler;
        }
        var newCommand = e.NewValue as ICommand;
        if (newCommand != null)
        {
            newCommand.CanExecuteChanged += _eventHandler;
        }
    }
    

    The only difference? Just as indicated in the documentation of CommandManager.RequerySuggested I am saving the event handler in a field.