I'm fairly certain this isn't possible, but wanted to see if anyone had some ingenious ideas as to how to make it possible.

I want the following code to work:

var x = new foo();
x.a.getThis() === x; // true

In other words, I want x.a.getThis to have a reference to this being x in this case. Make sense?

In order to get this to work one level deep is simple:

function foo(){}
foo.prototype.getThis = function(){ return this; }
var x = new foo();
x.getThis() === x; // true

One thing, I want this to work as a prototype, no "cheating" by manually binding to this:

function foo(){
    this.a = {
        getThis : (function(){ return this; }).bind(this)
    };
}

Although the above is a perfect functional example of what I'm trying to achieve, I just don't want all the extra functions for each instance :)

FYI, the actual use case here is that I'm creating classes to represent Cassandra objects in node and I want to be able to reference a super-column --> column-family --> column via foo.a.b and keep a reference to foo in the deep function.

link|improve this question

You mean you want Function.prototype.getThis = function(){}? – wong2 May 27 '11 at 6:21
no, I want getThis to have it's this reference pointing at the object 2 levels up, in this case x. I'll modify the question to hopefully make it clearer. – cwolves May 27 '11 at 6:23
var that = this; this.a = { getThis : function() { return that } }; no good? – alex May 27 '11 at 6:24
@alex - I don't want to recursively re-define a bunch of functions in the constructor for both code-cleanliness and performance reasons. I'd actually end up re-defining and wrapping a good 70-100 functions if I did that, thus 70-100 extra closures on each instance of the class created. I'm trying to figure out how to get this to work while keeping the function references in the prototype so that I'm not creating thousands of new functions. – cwolves May 27 '11 at 6:28
feedback

4 Answers

up vote 3 down vote accepted

You can't do this without a forced bind of some kind. You say you don't want to "cheat" but this breaks the standard rules about what this is, so you have to cheat. But JS lets you cheat, so it's all good.

BTW, for what it's worth coffee script makes this so trivial.

foo = ->
  @a = getThis: => this

The fat arrow => preserves the context of this for from the scope it was called in. This allows you to easily forward the context to another level.

That code gets compiled to this JS:

var foo;
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
foo = function() {
  return this.a = {
    getThis: __bind(function() {
      return this;
    }, this)
  };
};

Which basically just does what you say you do not want to do.


Or if the value doesn't have to this specifically, you can set the "owner" in the child object.

var A = function(owner) {
  this.owner = owner;
};
A.prototype.getThis = function() {
  return this.owner;
};
var Foo = function() {
  this.a = new A(this);
};

var foo = new Foo();

if (foo.a.getThis() === foo) {
    alert('Happy dance');
} else {
    window.location = 'https://commons.lbl.gov/download/attachments/73468687/sadpanda.png';
}

http://jsfiddle.net/4GQPa/

And the coffee script version of that because I am a passionate and unreasonable zealot for it:

class A
  constructor: (@owner) ->
  getThis: -> @owner

class Foo
  constructor: -> @a = new A(this)

foo = new Foo()
if foo.a.getThis() is foo
  alert 'Happy Dance'
else
  window.location = 'https://commons.lbl.gov/download/attachments/73468687/sadpanda.png'
link|improve this answer
yeah, I'm trying to figure out how to not wrap every single function, which I think I just did :) Writing a test-case now – cwolves May 27 '11 at 6:33
Is it important that the object you want be this or can it be some other local variable shared through closure? – Alex Wayne May 27 '11 at 6:37
It can be whatever, which is what I just realized (your question makes me think we may have the same solution here, but I'd be curious to see what you're thinking), I just don't want to wrap every function prototype – cwolves May 27 '11 at 6:40
answer updated, using a prototype based solution – Alex Wayne May 27 '11 at 6:44
And a jsfiddle :) – Alex Wayne May 27 '11 at 6:48
show 4 more comments
feedback

Impossible to do reliably without binding the value at the start since the value of a function's this is set by the call. You can't know beforehand how it will be called, or which functions need a special or restricted call to "preserve" the this -> this relationship.

The function or caller's this may be any object, there may not be a this -> this at all. Consider:

var x = {
  a : {
    b: function() {return this;}
  }
}

When you call x.a.b(), then b's this is a. But if you do:

var c = x.a.b;
c(); // *this* is the global object

or

x.a.b.call(someOtherObject);

What is the value of this -> this in these cases?

link|improve this answer
feedback

Answering my own question because someone else may find it useful. Not sure if I'll end up going with this or Squeegy's solution. The functions are only ever defined once and then the containing object is cloned and has parent = this injected into it:

function foo(){
    var self = this, nest = this.__nestedObjects__ || [];

    nest.forEach(function(prop){
        self[prop] = extend({ parent : self }, self[prop]);
    });
}

// bound like this so that they're immutable
Object.defineProperties(foo.prototype, {
    bar : {
        enumerable : true,
        value : {
            foobar : function(){
                return this.parent;
            },
            foo : function(){},
            bar : function(){}
        }
    },
    __nestedObjects__ : { value : ['bar'] }
});

var fooInst = new foo();
console.log(fooInst.bar.foobar() == fooInst);

or based on Squeegy's solution:

function foo(){
    for(var cls in this.__inherit__){
        if(!this.__inherit__.hasOwnProperty(cls)){ continue; }

        this[cls] = new (this.__inherit__[cls])(this);
    }
}

var clsA;
// bound like this so that they're immutable
Object.defineProperties(foo.prototype, {
    __inherit__ : { value : {
        bar : clsA = function(parent){
                Object.defineProperty(this, '__parent__', { value : parent });
            }
        }
    }
});

clsA.prototype = {
    foobar : function(){
        return this.__parent__;
    }
};

var fooInst = new foo();
console.log(fooInst.bar.foobar() == fooInst);
link|improve this answer
feedback

Just curious: would this do what you want?

function Foo(bar){
    var justme = this;
    this.a = { fromfoo: {
                foobarme: function(){
                            return '(from [Foo instance].a.fromfoo.foobarme) '+
                             this.root.foobarred();
                         },
                 root: justme
               }
              };
    this.bar = bar || 'foobar';
    this.a.foobar = 'barfoo';
}
Foo.prototype.foobarred = function(){
     return 'hi, I am method foobarred from Foo, '+
            'and this is my instance property \'bar\': '+
             this.bar;
};
var b = new Foo('instance b'),
    c = new Foo('instance c');
alert(b.a.fromfoo.root === b); //=> true
alert(b.a.fromfoo.foobarme()); //=> [(from ... 'bar': ] instance b
alert(c.a.fromfoo.foobarme()); //=> [(from ... 'bar': ] instance c
link|improve this answer
hehe, yes :) but unfortunately you're taking my example too literally. I really need a reference to foo in a function at foo.a.something, not just a reference from foo back to itself :P – cwolves May 27 '11 at 7:17
@cwolves: mmm, literally is how I like to take things. I'm really not sure if I understand what you mean otherwise. I adjusted the constructor, still too literally? – KooiInc May 27 '11 at 8:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.