[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Get the caller of a class

Mario Ruiz

8/1/2008 10:08:00 AM

I have something like:

Class MyClass
def doit

caller= How can I do it

puts 'I was called from: ' + caller.class
puts 'the value of the @variab is: ' + caller.variab.to_s()
end
end

Class MyCaller
attr_reader: :variab
attr_writer: :variab

def callit
@variab="example"
result=MyClass.doit
end
end


Is there any way to do it??

Thank you
--
Posted via http://www.ruby-....

8 Answers

Mario Ruiz

8/1/2008 11:44:00 AM

0

Sorry the code was wrong, it should be:

class MyClass
def MyClass.doit

caller= How can I do it

puts 'I was called from: ' + caller.class.to_s()
puts 'the value of the @variab is: ' + caller.variab.to_s()
end
end

class MyCaller
attr_reader :variab
attr_writer :variab

def initialize
puts 'starts'
end
def callit
@variab="example"
result=MyClass.doit
end
end

MyCaller.new().callit
--
Posted via http://www.ruby-....

Robert Klemme

8/1/2008 1:20:00 PM

0

2008/8/1 Mario Ruiz <mario@betware.com>:

There is no such thing as the "caller of a class": a class can be used
by many clients and only methods are actually "called". "caller" is
actually already defined. See whether this helps:

15:19:02 bas$ irb
Ruby version 1.8.7
irb(main):001:0> def a(n) b(n) end
=> nil
irb(main):002:0> def b(n) caller(n) end
=> nil
irb(main):003:0> 3.times {|i| puts i, a(i), "----"}
0
(irb):2:in `b'
(irb):1:in `a'
(irb):4:in `irb_binding'
(irb):4:in `times'
(irb):4:in `irb_binding'
/usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
/usr/lib/ruby/1.8/irb/workspace.rb:52
----
1
(irb):1:in `a'
(irb):4:in `irb_binding'
(irb):4:in `times'
(irb):4:in `irb_binding'
/usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
/usr/lib/ruby/1.8/irb/workspace.rb:52
----
2
(irb):4:in `irb_binding'
(irb):4:in `times'
(irb):4:in `irb_binding'
/usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
/usr/lib/ruby/1.8/irb/workspace.rb:52
----
=> 3


Kind regards

robert


--
use.inject do |as, often| as.you_can - without end

Shadowfirebird

8/1/2008 1:49:00 PM

0

This is profoundly unhelpful, I know: but perhaps you should consider
redesigning your method so that it doesn't care where it was called
from? That would be more in line with Object Oriented design.

You might find that it belongs on another class, for example the
parent class of all the classes that you are currently considering
calling it from.

Or you could leave it where it is and pass some sort of mode string, instead:

def doit(mode)
case mode
when :full then ...
when :quick then ...
end
end


On 8/1/08, Robert Klemme <shortcutter@googlemail.com> wrote:
> 2008/8/1 Mario Ruiz <mario@betware.com>:
>
> There is no such thing as the "caller of a class": a class can be used
> by many clients and only methods are actually "called". "caller" is
> actually already defined. See whether this helps:
>
> 15:19:02 bas$ irb
> Ruby version 1.8.7
> irb(main):001:0> def a(n) b(n) end
> => nil
> irb(main):002:0> def b(n) caller(n) end
> => nil
> irb(main):003:0> 3.times {|i| puts i, a(i), "----"}
> 0
> (irb):2:in `b'
> (irb):1:in `a'
> (irb):4:in `irb_binding'
> (irb):4:in `times'
> (irb):4:in `irb_binding'
> /usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
> /usr/lib/ruby/1.8/irb/workspace.rb:52
> ----
> 1
> (irb):1:in `a'
> (irb):4:in `irb_binding'
> (irb):4:in `times'
> (irb):4:in `irb_binding'
> /usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
> /usr/lib/ruby/1.8/irb/workspace.rb:52
> ----
> 2
> (irb):4:in `irb_binding'
> (irb):4:in `times'
> (irb):4:in `irb_binding'
> /usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
> /usr/lib/ruby/1.8/irb/workspace.rb:52
> ----
> => 3
>
>
> Kind regards
>
> robert
>
>
> --
> use.inject do |as, often| as.you_can - without end
>
>


--
Me, I imagine places that I have never seen / The colored lights in
fountains, blue and green / And I imagine places that I will never go
/ Behind these clouds that hang here dark and low
But it's there when I'm holding you / There when I'm sleeping too /
There when there's nothing left of me / Hanging out behind the
burned-out factories / Out of reach but leading me / Into the
beautiful sea

Robert Klemme

8/1/2008 2:15:00 PM

0

2008/8/1 <shadowfirebird@gmail.com>:
> This is profoundly unhelpful, I know: but perhaps you should consider
> redesigning your method so that it doesn't care where it was called
> from? That would be more in line with Object Oriented design.

Good point! After rereading the original posting I would suggest the
same. Just pass on the calling instance or the bit of data that the
method needs. That's what method arguments are for.

Kind regards

robert

--
use.inject do |as, often| as.you_can - without end

Mario Ruiz

8/1/2008 2:25:00 PM

0

I know that way.... but I would like to know if it is possible to do it
without passing the argument to the method. :)
--
Posted via http://www.ruby-....

botp

8/1/2008 4:05:00 PM

0

On Fri, Aug 1, 2008 at 10:25 PM, Mario Ruiz <mario@betware.com> wrote:
> I know that way.... but I would like to know if it is possible to do it
> without passing the argument to the method. :)

try #caller

botp@jedi-hopeful:~$ qri caller
---------------------------------------------------------- Kernel#caller
caller(start=1) => array
------------------------------------------------------------------------
Returns the current execution stack---an array containing strings
in the form ``file:line'' or ``file:line: in `method'''. The
optional start parameter determines the number of initial stack
entries to omit from the result.

def a(skip)
caller(skip)
end
def b(skip)
a(skip)
end
def c(skip)
b(skip)
end
c(0) #=> ["prog:2:in `a'", "prog:5:in `b'", "prog:8:in `c'",
"prog:10"]
c(1) #=> ["prog:5:in `b'", "prog:8:in `c'", "prog:11"]
c(2) #=> ["prog:8:in `c'", "prog:12"]
c(3) #=> ["prog:13"]

hth.
kind regards -botp

Pit Capitain

8/2/2008 7:05:00 AM

0

Mario, there once was a library called binding_of_caller, which I
think could do what you wanted, but I think it doesn't work anymore
with recent Ruby versions.

Regards,
Pit

Mario Ruiz

8/5/2008 10:30:00 AM

0

Thanks to everybody.

I thought it could be an easier way to do it so I'll just pass a 'self'
parameter.

Thanks.
--
Posted via http://www.ruby-....