// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ==========================================================================

/**

@namespace

Support methods for the Delegate design pattern.

The Delegate design pattern makes it easy to delegate a portion of your
application logic to another object.  This is most often used in views to
delegate various application-logic decisions to controllers in order to
avoid having to bake application-logic directly into the view itself.

The methods provided by this mixin make it easier to implement this pattern
but they are not required to support delegates.

## The Pattern

The delegate design pattern typically means that you provide a property,
usually ending in "delegate", that can be set to another object in the
system.

When events occur or logic decisions need to be made that you would prefer
to delegate, you can call methods on the delegate if it is set.  If the
delegate is not set, you should provide some default functionality instead.

Note that typically delegates are not observable, hence it is not necessary
to use get() to retrieve the value of the delegate.

@since SproutCore 1.0

*/ SC.DelegateSupport = {

/**
  Selects the delegate that implements the specified method name.  Pass one
  or more delegates.  The receiver is automatically included as a default.

  This can be more efficient than using invokeDelegateMethod() which has
  to marshall arguments into a delegate call.

  @param {String} methodName
  @param {Object...} delegate one or more delegate arguments
  @returns {Object} delegate or null
*/
delegateFor: function(methodName) {
  var idx = 1,
      len = arguments.length,
      ret ;

  while(idx<len) {
    ret = arguments[idx];
    if (ret && ret[methodName] !== undefined) return ret ;
    idx++;
  }

  return (this[methodName] !== undefined) ? this : null;
},

/**
  Invokes the named method on the delegate that you pass.  If no delegate
  is defined or if the delegate does not implement the method, then a
  method of the same name on the receiver will be called instead.

  You can pass any arguments you want to pass onto the delegate after the
  delegate and methodName.

  @param {Object} delegate a delegate object.  May be null.
  @param {String} methodName a method name
  @param {Object...} [args...] any additional arguments

  @returns {Object} value returned by delegate
*/
invokeDelegateMethod: function(delegate, methodName) {
  // Fast arguments access.
  // Accessing `arguments.length` is just a Number and doesn't materialize the `arguments` object, which is costly.
  var args = new Array(arguments.length - 2); //  SC.A(arguments).slice(2)
  for (var i = 0, len = args.length; i < len; i++) { args[i] = arguments[i + 2]; }

  if (!delegate || !delegate[methodName]) delegate = this ;

  var method = delegate[methodName];
  return method ? method.apply(delegate, args) : null;
},

/**
  Search the named delegates for the passed property.  If one is found,
  gets the property value and returns it.  If none of the passed delegates
  implement the property, search the receiver for the property as well.

  @param {String} key the property to get.
  @param {Object} delegate one or more delegate
  @returns {Object} property value or undefined
*/
getDelegateProperty: function(key, delegate) {
  var idx = 1,
      len = arguments.length,
      ret ;

  while(idx<len) {
    ret = arguments[idx++];
    if (ret && ret[key] != undefined) {
      return ret.get ? ret.get(key) : ret[key] ;
    }
  }

  return (this[key] != undefined) ? this.get(key) : undefined ;
}

};