active questions tagged metaprogramming - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T07:01:38Z http://stackoverflow.com/feeds/tag/metaprogramming http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837622/any-sane-way-to-do-mocking-in-grails 0 any sane way to do mocking in Grails? Don 2009-12-03T04:22:45Z 2009-12-03T04:22:45Z <p>Hi,</p> <p>I have a Groovy class <code>Test</code> and I want to mock <code>foo()</code> such that (for all instances) it returns <code>bar() + 1</code></p> <pre><code>class Test { void def foo() {1} void def bar() {1} void def baz() {1} } </code></pre> <p>The normal Groovy way to do this would be</p> <pre><code>Test.metaClass.foo = {-&gt; delegate.bar() + 1} </code></pre> <p>But <a href="http://stackoverflow.com/questions/1836778/groovy-metaprogramming-causes-stackoverflowerror">I've discovered</a> that this doesn't work in Grails. I suspect it probably works in most cases, but at least in some cases (e.g. when the class is a domain class and the mocking closure uses <code>delegate</code>) it causes a StackOverflowError.</p> <p>One alternative is to use the Groovy <code>MockFor</code> or <code>StubFor</code> classes. However the problem with these methods is that they require you to either</p> <ul> <li>Provide mock closures for all the methods of the class that are invoked. This is inconvenient when you only want to mock one method</li> <li>Indicate how many times you expect each mock closure to be invoked. This is inconvenient when I don't know/care how many times this will happen (though I think this only applies to MockFor)</li> </ul> <p>Another alternative is to use the <code>mockFor</code> method provided by GrailsUnitTestCase. However, it seems that this mainly supports generating instance-specific mocks, rather than class-wide mocks.</p> <p>Is there any simple way to mock just a single method on a class in Grails? I'd be particularly keen to see an example where the class being mocked is a domain class and the mock closure uses <code>delegate</code>.</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1836778/groovy-metaprogramming-causes-stackoverflowerror 0 Groovy metaprogramming causes StackOverflowError Don 2009-12-03T00:02:36Z 2009-12-03T00:58:21Z <p>Hi,</p> <p>I have a groovy class Foo that has a <code>getName()</code> method. In a subclass of GrailsUnitTestCase I'm trying to mock the getName() method of the class with this code</p> <pre><code> def bookletNames = [1: 'foo', 2: 'bar'] Foo.metaClass.getName = {-&gt; bookletNames[delegate.id] } // This line just ensures that Grails resets the meta-class when the test is complete registerMetaClass(Foo) </code></pre> <p>However, this causes a StackOverflowError when I call getName(), any idea why?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1823898/overload-a-method-with-a-function-at-runtime 2 Overload a method with a function at runtime Richo 2009-12-01T03:53:55Z 2009-12-03T00:11:36Z <p>OK, I'll admit upfront this is a mega kludge and that I could definately implement this better. It's only morbid curiosity that's driving me to find out how I could do this.</p> <pre><code>class SomeClass(object): def __init__(self): def __(self, arg): self.doStuff(arg) self.overLoaded = __ def doStuff(self, string): print string SomeClass().overLoaded("test string") </code></pre> <p>This returns a parameter error because I'm only supplying overLoaded() with one argument instead of two. Is there some magic to tell the interpreter that it's now a method of a class (I tried decorating it with @classmethod, I always understood this to be it's purpose??)</p> http://stackoverflow.com/questions/1829205/python-modify-metaclass-for-whole-program 1 python modify __metaclass__ for whole program Stan 2009-12-01T21:55:05Z 2009-12-02T23:16:19Z <p><strong>EDIT:</strong> Note that this is a REALLY BAD idea to do in production code. This was just an interesting thing for me. Don't do this at home!</p> <p>Is it possible to modify __metaclass__ variable for whole program (interpreter) in Python? </p> <p>This simple example is working:</p> <pre><code>class ChattyType(type): def __init__(cls, name, bases, dct): print "Class init", name super(ChattyType, cls).__init__(name, bases, dct) __metaclass__= ChattyType class Data: pass data = Data() # prints "Class init Data" print data </code></pre> <p>but I would love to be able change of __metaclass__ to work even in submodules. So for example (file m1.py):</p> <pre><code> class A: pass a=A() print a </code></pre> <p>file main.py:</p> <pre><code>class ChattyType(type): def __init__(cls, name, bases, dct): print "Class init", name super(ChattyType, cls).__init__(name, bases, dct) __metaclass__= ChattyType import m1 # and now print "Class init A" class Data: pass data = Data() # print "Class init Data" print data </code></pre> <p>I understand that global __metaclass__ is no longer working in Python 3.X, but that is not my concern (my code if proof of concept). So is there any way to accomplish this in Python-2.x?</p> http://stackoverflow.com/questions/1558147/conditionally-change-c-statements-in-c-source-file 1 Conditionally change C statements in C source file Sid Datta 2009-10-13T04:05:18Z 2009-11-30T19:03:21Z <p>I have a C file in which we are moving the logging infrastructure. So </p> <pre><code>if ( logging_level &gt;= LEVEL_FINE ) printf("Value at %p is %d\n", p, i); </code></pre> <p>becomes</p> <pre><code>do_log2(LEVEL_FINE, "Value at %p is %d\n", _ptr(p), _num(i)); </code></pre> <p>do_log2 means log with 2 arguments.</p> <p>So I need a C parsing and modification infrastructure to do this.</p> <p>Which tool can I use to accomplish this most easily ?</p> <p>Note: the printf can also appear in the file as : </p> <pre><code>if ( logging_level &gt;= LEVEL_FINE ) { printf("Value at %p is %d\n", p, i); } </code></pre> <p>(indented and in a block). So this will be hard to do from simple text parsing in perl.</p> <p>EDIT: This is my final perl code that does what I want</p> <pre><code>#!/usr/bin/perl -W $source=&lt;&lt;'END'; include etc if ( logging_level &gt;= LEVEL_DEBUG ) { printf("1:Value at %p is %d\n", p(1), i(2)); } hello(); if ( logging_level &gt;= LEVEL_FINE ) { printf("2:Value is %d\n", i); printf("3:Value is %d\n", i); } if ( logging_level &gt;= LEVEL_FINE ) { printf("2:Value is %d\n" "and other info", i); } other(); if(logging_level&gt;=LEVEL_INFO){printf("4:Value at %p is %d %d\n",p(x),i,j);} if(logging_level&gt;=LEVEL_FINE) printf("5:Just sayin\"\n"); printf("not logging statement\n"). END while( $source =~ m/\G(.*?\n)\s* if \s* \( \s* logging_level \s* &gt;= \s* ([A-Z_0-9]+) \s* \) \s*(\{?)/sgxc ) { my $othercode = $1; my $loglevel=$2; my $inblock = $3; print("$othercode"); while($source =~ m/\G\s*printf \( ([^;]*) \) \;/sgxc ) { my $insideprint = $1; unless ($insideprint =~ /((\"([^\"\\]|\\.)*\")(\s*(\"([^\"\\]|\\.)*\"))*)/g) #fixing stackoverflow quote problem " { die "First arg not string literal"; } my $formatstr = $1; my $remain = substr($insideprint, pos($insideprint)); $remain =~ tr/\n \t//d; my @args = split(",", $remain); shift @args; my $numargs = @args; print "do_log${numargs}($loglevel, $formatstr"; for (my $i=0; $i &lt; $numargs; $i++) { unless ($formatstr =~ /%([a-z]+)/g) { die "Not enough format for args : $formatstr, args = ", join(",", @args), "\n"; } my $lastchar = substr($1, length($1) -1); my $wrapper = ""; if ($lastchar eq "u" || $lastchar eq "d") { $wrapper = "_numeric";} elsif($lastchar eq "p"){ $wrapper = "_ptr";} elsif($lastchar eq "s"){ $wrapper = "_str";} else { die "Unknown format char %$lastchar in $formatstr"; } print ", ${wrapper}($args[$i])"; } print ");"; last unless ($inblock); } # eat trailing } if ($inblock) { if ($source =~ m/\G \s* \} /sgxc) { } else { } } } #whatever is left print substr($source, pos($source)); </code></pre> <p>output:</p> <pre><code>include etc do_log2(LEVEL_DEBUG, "1:Value at %p is %d\n", _ptr(p(1)), _numeric(i(2))); hello(); do_log1(LEVEL_FINE, "2:Value is %d\n", _numeric(i)); do_log1(LEVEL_FINE, "3:Value is %d\n", _numeric(i)); do_log1(LEVEL_FINE, "2:Value is %d\n" "and other info", _numeric(i)); other(); do_log3(LEVEL_INFO, "4:Value at %p is %d %d\n", _ptr(p(x)), _numeric(i), _numeric(j)); do_log0(LEVEL_FINE, "5:Just sayin\"\n"); printf("not logging statement\n"). </code></pre> <p>Woohoo! Now to apply to actual source code.</p> http://stackoverflow.com/questions/1794179/python-on-rails -2 Python on Rails? Juanjo Conti 2009-11-25T01:56:10Z 2009-11-25T02:21:22Z <p>Would it be possible to translate the Ruby on Rails code base to Python?</p> <p>I think many people like Python more than Ruby, but find Ruby on Rails features better (as a whole) than the ones in Python web frameworks.</p> <p>So that, would it be possible? Or does Ruby on Rails utilize language-specific features that would be difficult to translate to Python?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1788967/is-implementing-soap-clients-in-perl-using-meta-programming-sensible 2 Is implementing SOAP clients in Perl using meta-programming sensible? rassie 2009-11-24T09:34:52Z 2009-11-24T19:40:43Z <p>I'm currently dealing with a code base which contains several dozens of classes generated with SOAP::WSDL. However, having worked with Moose I now think that generating those classes at runtime at meta level (i.e. not to files on disk but directly to objects) might be a better idea (completely excluding performance reasons at this point).</p> <ol> <li><p>Is this approach sensible? The idea is to avoid changes to generated code and also to avoid re-generating it once in a while.</p></li> <li><p>If so, are there any ready-to-use Perl modules that create classes from a WSDL?</p></li> </ol> http://stackoverflow.com/questions/1788440/how-do-i-add-a-method-to-a-ruby-gem-without-editing-the-gem-source 0 How do I add a method to a ruby gem without editing the gem source? rswolff 2009-11-24T07:26:59Z 2009-11-24T10:57:41Z <p>I am using the <code>acts_as_taggable_on</code> gem and would like to add a method to one of the gem source files (<code>tag.rb</code>), but I do not want to change the gem source in any way.</p> <p>I have tried creating my own tag.rb file to in the <code>/app/models</code> directory or in the <code>/lib</code> directory, and then adding the desired method to that file expecting that ruby will merge the two tag.rb files</p> <p>But when I do I get a <code>NoMethodError: undefined method</code> ...</p> <p>What am I missing?</p> http://stackoverflow.com/questions/1781137/c-preprocessor-metaprogramming-obtaining-an-unique-value 1 C++ Preprocessor metaprogramming: obtaining an unique value? Koper 2009-11-23T04:43:36Z 2009-11-23T05:10:29Z <p>Hi, I'm exploiting the behavior of the constructors of C++ global variables to run code at startup in a simple manner. It's a very easy concept but a little difficult to explain so let me just paste the code:</p> <pre><code>struct _LuaVariableRegistration { template&lt;class T&gt; _LuaVariableRegistration(const char* lua_name, const T&amp; c_name) { /* ... This code will be ran at startup; it temporarily saves lua_name and c_name in a std::map and when Lua is loaded it will register all temporarily global variables in Lua. */ } }; </code></pre> <p>However manually instantiating that super ugly class every time one wants to register a Lua global variable is cumbersome; that's why I created the following macro:</p> <pre><code>#define LUA_GLOBAL(lua_name, c_name) static Snow::_LuaVariableRegistration _____LuaGlobal ## c_name (lua_name, c_name); </code></pre> <p>So all you have to do is put that in the global scope of a cpp file and everything works perfectly:</p> <pre><code>LUA_GLOBAL("LuaIsCool", true); </code></pre> <p>There you go! Now in Lua <code>LuaIsCool</code> will be a variable initialized to true!</p> <p>But, here is the problem:</p> <pre><code>LUA_GLOBAL("ACCESS_NONE", Access::None); </code></pre> <p>Which becomes:</p> <pre><code>static Snow::_LuaVariableRegistration _____LuaGlobalAccess::None ("ACCESS_NONE", &amp;Access::None); </code></pre> <p>:(( I need to concatenate <code>c_name</code> in the macro or it will complain about two variables with the same name; I tried replacing it with <code>__LINE__</code> but it actually becomes <code>_____LuaGlobalAccess__LINE__</code> (ie it doesn't get replaced).</p> <p>So, is there a way to somehow obtain an unique string, or any other workaround?</p> <p>Thanks!</p> <p>PS: yes I know names that begin with _ are reserved; I use them anyway for purposes like this being careful to pick names that the standard library is extremely unlikely to ever use. Additionally they are in a namespace.</p> http://stackoverflow.com/questions/1779766/using-polymorphic-code-for-legitimate-purposes 3 Using Polymorphic Code for Legitimate Purposes? MagicAndi 2009-11-22T19:51:40Z 2009-11-22T20:51:24Z <p>Hi,</p> <p>I recently came across the term <a href="http://en.wikipedia.org/wiki/Polymorphic%5Fcode" rel="nofollow">Polymorphic Code</a>, and was wondering if anyone could suggest a <strong>legitimate</strong> (i.e. in legal and business appropriate software) reason to use it in a computer program? Links to real world examples would be appreciated!</p> <p>Before someone answers, telling us all about the benefits of polymorphism in object oriented programming, please read the following definition for polymorphic code (taken from <a href="http://en.wikipedia.org/wiki/Polymorphic%5Fcode" rel="nofollow">Wikipedia</a>):</p> <p>"<em>Polymorphic code is code that uses a polymorphic engine to mutate while keeping the original algorithm intact. That is, the code changes itself each time it runs, but the function of the code in whole will not change at all.</em>"</p> <p>Thanks, MagicAndi.</p> <p><strong>Update</strong></p> <p>Summary of answers so far:</p> <ul> <li>Runtime optimization of the original code</li> <li>Assigning a "DNA fingerprint" to each individual copy of an application</li> <li>Obfuscate a program to prevent reverse-engineering</li> </ul> <p>I was also introduced to the term '<a href="http://en.wikipedia.org/wiki/Metamorphic%5Fcode" rel="nofollow">metamorphic code</a>'.</p> http://stackoverflow.com/questions/1778846/populating-values-in-module-namespace 1 Populating values in module namespace uswaretech 2009-11-22T14:30:08Z 2009-11-22T19:39:04Z <p>I have a python module.</p> <p>I want to populate some values to it at runtime, how do I do it.</p> <p>Eg. I have a list,</p> <p>['A', 'B', 'C']</p> <p>I am creating there classes with these names, and want them to available as if I created them normally</p> <pre><code>for el in ['A', 'B', 'C']: type(el, (object,), {}) </code></pre> http://stackoverflow.com/questions/1764680/can-i-extract-c-template-arguments-out-of-a-template-class 0 Can I extract C++ template arguments out of a template class? drpepper 2009-11-19T16:38:07Z 2009-11-19T17:10:21Z <p>Basically, given a template class like this:</p> <pre><code>template&lt; class Value &gt; class Holder { }; </code></pre> <p>I would like to be able to discover the type <code>Value</code> for a given <code>Holder</code> class. I thought that I would be able to make a simple metafunction that takes a template template argument, like this: </p> <pre><code>template&lt; template&lt; class Value &gt; class Holder &gt; class GetValue { typedef Value Value; }; </code></pre> <p>And then extract out the <code>Value</code> type like this:</p> <pre><code>GetValue&lt; Holder&lt; int &gt; &gt;::Value value; </code></pre> <p>But instead I just get an error message pointing to the metafunction declaration:</p> <pre><code>error: ‘Value’ does not name a type </code></pre> <p>Is there any way to accomplish this kind of thing? Thanks.</p> <p>[EDIT] I also get the error messages:</p> <pre><code>error: type/value mismatch at argument 1 in template parameter list for ‘template&lt;template&lt;class Value&gt; class Holder&gt; class GetValue’ error: expected a class template, got ‘Holder&lt;int&gt;’ </code></pre> <p>Which leads me to conclude that Phil Nash is right, you can't pass a class as a template template argument.</p> http://stackoverflow.com/questions/1741840/c-implicit-template-instantiation 6 C++ implicit template instantiation Victor Liu 2009-11-16T12:19:05Z 2009-11-19T09:08:58Z <p>I currently have a class hierarchy like</p> <pre><code>MatrixBase -&gt; DenseMatrix -&gt; (other types of matrices) -&gt; MatrixView -&gt; TransposeView -&gt; DiagonalView -&gt; (other specialized views of matrices) </code></pre> <p><code>MatrixBase</code> is an abstract class which forces implementers to define operator()(int,int) and such things; it represents 2 dimensional arrays of numbers. <code>MatrixView</code> represents a (possibly mutable) way of looking at a matrix, like transposing it or taking a submatrix. The point of <code>MatrixView</code> is to be able to say something like</p> <pre><code>Scale(Diagonal(A), 2.0) </code></pre> <p>where <code>Diagonal</code> returns a <code>DiagonalView</code> object which is a kind of lightweight adapter.</p> <p>Now here's the question(s). I will use a very simple matrix operation as an example. I want to define a function like</p> <pre><code>template &lt;class T&gt; void Scale(MatrixBase&lt;T&gt; &amp;A, const T &amp;scale_factor); </code></pre> <p>which does the obvious thing the name suggests. I want to be able to pass in either an honest-to-goodness non-view matrix, or an instance of a subclass of <code>MatrixView</code>. The prototype as written above does not work for statements such as</p> <pre><code>Scale(Diagonal(A), 2.0); </code></pre> <p>because the <code>DiagonalView</code> object returned by <code>Diagonal</code> is a temporary, and <code>Scale</code> takes a non-const reference, which cannot accept a temporary. Is there any way to make this work? I tried to use SFINAE, but I don't understand it all that well, and I'm not sure if that would solve the problem. It is important to me that these templated functions can be called without providing an explicit template argument list (I want implicit instantiation). Ideally the statement above could work as written.</p> <p><hr></p> <p><strong>Edit: (followup question)</strong></p> <p>As sbi responded below about rvalue references and temporaries, Is there a way to define two versions of Scale, one which takes a non-const rvalue reference for non-views, and one which takes a pass-by-value view? The problem is to differentiate between these two at compile time in a way such that implicit instantiation will work.</p> <p><hr></p> <p><strong>Update</strong></p> <p>I've changed the class hierarchy to</p> <pre><code>ReadableMatrix WritableMatrix : public ReadableMatrix WritableMatrixView DenseMatrix : public WritableMatrix DiagonalView : public WritableMatrixView </code></pre> <p>The reason <code>WritableMatrixView</code> is distinct from <code>WritableMatrix</code> is that the view must be passed around by const reference, while the matrices themselves must be passed around by non-const ref, so the accessor member functions have different const-ness. Now functions like Scale can be defined as</p> <pre><code>template &lt;class T&gt; void Scale(const WritableMatrixView&lt;T&gt; &amp;A, const T &amp;scale_factor); template &lt;class T&gt; void Scale(WritableMatrix&lt;T&gt; &amp;A, const T &amp;scale_factor){ Scale(WritableMatrixViewAdapter&lt;T&gt;(A), scale_factor); } </code></pre> <p>Note that there are two versions, one for a const view, and a non-const version for actual matrices. This means for functions like <code>Mult(A, B, C)</code>, I will need 8 overloads, but at least it works. What doesn't work, however is using these functions within other functions. You see, each <code>View</code>-like class contains a member <code>View</code> of what it's looking at; for example in the expression <code>Diagonal(SubMatrix(A))</code>, the <code>Diagonal</code> function returns an object of type <code>DiagonalView&lt;SubMatrixView&lt;T&gt; &gt;</code>, which needs to know the fully derived type of <code>A</code>. Now, suppose within <code>Scale</code> I call some other function like it, which takes either a base view or matrix reference. That would fail because the construction of the needed <code>View</code>'s require the derived type of the argument of Scale; information it does not have. Still working on find a solution to this.</p> <p><hr></p> <p><strong>Update</strong></p> <p>I have used what is effectively a home-grown version of Boost's enable_if to select between two different versions of a function like <code>Scale</code>. It boils down to labeling all my matrix and view classes with extra typedef tags indicating if they are readable and writable and view or non-view. In the end, I still need 2^N overloads, but now N is only the number of non-const arguments. For the final result, see the <a href="http://github.com/victorliu/Templated-Numerics/tree/master/LinearAlgebra/" rel="nofollow">here</a> (it's unlikely to get seriously revamped again).</p> http://stackoverflow.com/questions/1036924/generate-mplvector-from-fusionvector 1 generate mpl::vector from fusion::vector Andreo 2009-06-24T07:40:48Z 2009-11-19T02:51:41Z <p>How to generate <code>fusion::vector</code> from <code>mpl::vector</code>? How to generate <code>mpl::vector</code> from <code>fusion::vector</code>?</p> <pre><code>BOOST_MPL_ASSERT((is_same&lt; fusion::vector&lt;int, char&gt;, generate_fusion_vector&lt;mpl::vector&lt;int, char&gt; &gt;::type &gt;)); BOOST_MPL_ASSERT((is_same&lt; mpl::vector&lt;int, char&gt;, generate_mpl_vector&lt;fusion::vector&lt;int, char&gt; &gt;::type &gt;)); </code></pre> <p>I need <code>generate_fusion_vector</code> and <code>generate_mpl_vector</code> metafunctions. I can write my own metafunctions, but i suspect that they already exist.</p> <p>I had an experience of generating <code>fusion::map</code> with help <code>result_of::as_map</code> before, but in current boost(trunk, 1.39 also) such error occur:</p> <pre><code>D:\Libraries\boost_trunk\boost/fusion/sequence/intrinsic/size.hpp(56) : error C2903: 'apply' : symbol is neither a class template nor a function template D:\Libraries\boost_trunk\boost/fusion/container/vector/convert.hpp(23) : see reference to class template instantiation 'boost::fusion::result_of::size' being compiled with [ Sequence=boost::mpl::vector ] temp.cpp(71) : see reference to class template instantiation 'boost::fusion::result_of::as_vector' being compiled </code></pre> <p>I don't understand what is going on?</p> http://stackoverflow.com/questions/1738279/how-can-i-get-this-snippet-to-work 0 How can I get this snippet to work? Geo 2009-11-15T18:04:15Z 2009-11-16T19:57:08Z <p>I'd like to port a little piece of code from Ruby to Groovy, and I'm stuck at this:</p> <pre><code>def given(array,closure) { closure.delegate = array closure() } given([1,2,3,4]) { findAll { it &gt; 4} } </code></pre> <p>Right now it dies with this message:</p> <p><code>Exception thrown: Cannot compare ConsoleScript0$_run_closure1 with value 'ConsoleScript0$_run_closure1@1e6743e' and java.lang.Integer with value '4'</code>.</p> <p>I tried to set the closure's delegate to be the array, but it seems that in the <code>findAll</code> method, it represents a closure, instead of an actual item from the array. I also tried to run the closure like this:</p> <pre><code>array.with { closure(array) } </code></pre> <p>but I still wasn't able to make it work. Any thoughts on what could work? Ruby's equivalent would be to <code>instance_eval</code> the closure in the array's context.</p> <p>EDIT: Running Mykola's code produced this output:</p> <pre><code>given [1, 2, 3, 4] class Demo$_main_closure1 2 Exception thrown: Cannot compare Demo$_main_closure1 with value 'Demo$_main_closure1@fe53cf' and java.lang.Integer with value '2' groovy.lang.GroovyRuntimeException: Cannot compare Demo$_main_closure1 with value 'Demo$_main_closure1@fe53cf' and java.lang.Integer with value '2' at Demo$_main_closure1_closure2.doCall(ConsoleScript3:15) at Demo$_main_closure1.doCall(ConsoleScript3:15) at Demo$_main_closure1.doCall(ConsoleScript3) at Demo.given(ConsoleScript3:28) at Demo$given.callStatic(Unknown Source) at Demo.main(ConsoleScript3:12) </code></pre> <p>I'm running Groovy 1.6.5.</p> http://stackoverflow.com/questions/1734984/why-cant-i-use-attraccessor-inside-initialize 2 Why can't I use attr_accessor inside initialize? Geo 2009-11-14T17:43:00Z 2009-11-14T17:47:56Z <p>I'm trying to do an <code>instance_eval</code> followed by a <code>attr_accessor</code> inside <code>initialize</code>, and I keep getting this: <code>`initialize': undefined method 'attr_accessor'</code>. Why isn't this working?</p> <p>The code looks kind of like this:</p> <pre><code>class MyClass def initialize(*args) instance_eval "attr_accessor :#{sym}" end end </code></pre> http://stackoverflow.com/questions/1707830/using-groovy-metaclass-to-mock-out-shiro-securityutils-in-bootstrap 0 Using groovy metaClass to mock out Shiro SecurityUtils in bootstrap Matt Lachman 2009-11-10T13:06:12Z 2009-11-12T19:06:37Z <p>For further background, see <a href="http://grails.markmail.org/message/62w2xpbgneapmhpd" rel="nofollow">http://grails.markmail.org/message/62w2xpbgneapmhpd</a></p> <p>I'm trying to mock out the Shiro SecurityUtils.getSubject() method in my BootStrap.groovy. I decided on this approach because the Subject builder in the latest Shiro version isn't available in the current version of the Nimble plugin (which I'm using). I decided to try playing with the SecurityUtils.metaClass but I have a feeling I'm missing something very fundamental about how metaClasses work. For reference, here's my Trackable class:</p> <pre><code> abstract class Trackable { User createdBy Date dateCreated User lastUpdatedBy Date lastUpdated static constraints = { lastUpdated(nullable:true) lastUpdatedBy(nullable:true) createdBy(nullable:true) } def beforeInsert = { def subject try { subject = SecurityUtils.subject } catch (Exception e) { log.error "Error obtaining the subject. Message is [${e.message}]" } createdBy = (subject ? User.get( subject.principal ) : User.findByUsername("admin")) } def beforeUpdate = { def subject try { subject = SecurityUtils.subject } catch (Exception e) { log.error "Error obtaining the subject. Message is [${e.message}]" } lastUpdatedBy = (subject ? User.get( subject.principal ) : User.findByUsername("admin")) } } </code></pre> <p>In my BootStrap.groovy, I have this:</p> <pre><code> def suMetaClass = new ExpandoMetaClass(SecurityUtils) suMetaClass.'static'.getSubject = {[getPrincipal:{2}, toString:{"Canned Subject"}] as Subject} suMetaClass.initialize() SecurityUtils.metaClass = suMetaClass </code></pre> <p>And that works... sort of. If I print out the subject from BootStrap.groovy I get "Canned Subject". If I try to create and save instances of subclasses of Trackable, I get:</p> <blockquote> <pre><code>No SecurityManager accessible to this method, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. See the org.apache.shiro.SecurityUtils.getSubject() method JavaDoc for an explanation of expected environment configuration. </code></pre> </blockquote> <p>Am I missing something integral about how metaClasses work?</p> http://stackoverflow.com/questions/1708458/template-metaprogram-converting-type-to-unique-number 1 Template metaprogram converting type to unique number daramarak 2009-11-10T14:43:09Z 2009-11-10T19:02:30Z <p>I just started playing with metaprogramming and I am working on different tasks just to explore the domain. One of these was to generate a unique integer and map it to type, like below:</p> <pre><code>int myInt = TypeInt&lt;AClass&gt;::value; </code></pre> <p>I want to know if this is at all possible, and in that case how. Because although I have learned much about exploring this subject I still have failed to come up with an answer.</p> <p>(P.S. A yes/no answer is much more gratifying than a c++ solution that doesn't use metaprogramming, as this is the domain that I am exploring)</p> http://stackoverflow.com/questions/1706346/file-macro-manipulation-handling-at-compile-time 2 __FILE__ macro manipulation handling at compile time. ScaryAardvark 2009-11-10T08:19:45Z 2009-11-10T08:39:13Z <p>One of the issues I have had in porting some stuff from Solaris to Linux is that the Solaris compiler expands the macro <code>__FILE__</code> during preprocessing to the file name (e.g. MyFile.cpp) whereas gcc on Linux expandeds out to the full path (e.g. /home/user/MyFile.cpp). This can be reasonably easily resolved using basename() but....if you're using it a lot, then all those calls to basename() have got to add up, right? </p> <p>Here's the question. Is there a way using templates and static metaprogramming, to run basename() or similar at compile time? Since <code>__FILE__</code> is constant and known at compile time this might make it easier. What do you think? Can it be done?</p> http://stackoverflow.com/questions/1697710/detecting-that-a-method-was-not-overridden 3 Detecting that a method was not overridden Sergei Kozlov 2009-11-08T19:56:16Z 2009-11-09T17:15:04Z <p>Say, I have the following 2 classes:</p> <pre><code>class A def a_method end end class B &lt; A end </code></pre> <p>Is it possible to detect from within (an instance of) class B that method <code>a_method</code> is <em>only</em> defined in the superclass, thus not being overridden in B?</p> <p><strong>Update: the solution</strong></p> <p>While I have marked the answer of Chuck as "accepted", later Paolo Perrota made me realize that the solution can apparently be simpler, and it will probably work with earlier versions of Ruby, too.</p> <p>Detecting if "a_method" is overridden in B:</p> <pre><code>B.instance_methods(false).include?("a_method") </code></pre> <p>And for class methods we use <code>singleton_methods</code> similarly:</p> <pre><code>B.singleton_methods(false).include?("a_class_method") </code></pre> http://stackoverflow.com/questions/1485068/ruby-how-to-evalulate-multiple-methods-per-send-command 4 Ruby: How to evalulate multiple methods per send command? Dourian 2009-09-28T01:49:56Z 2009-11-05T06:10:08Z <p>Let's say I have an XML::Element...I want to do something like:</p> <p>my_xml_element.send("parent.next_sibling.next_sibling")</p> http://stackoverflow.com/questions/1671297/how-do-i-invoke-a-non-default-constructor-for-each-inherited-type-from-a-type-lis 3 How do I invoke a non-default constructor for each inherited type from a type list? Steve Guidi 2009-11-04T01:56:35Z 2009-11-04T15:02:32Z <p>I'm using a boost typelist to implement the policy pattern in the following manner.</p> <pre><code>using namespace boost::mpl; template &lt;typename PolicyTypeList = boost::mpl::vector&lt;&gt; &gt; class Host : public inherit_linearly&lt;PolicyTypeList, inherit&lt;_1, _2&gt; &gt;::type { public: Host() : m_expensiveType(/* ... */) { } private: const ExpensiveType m_expensiveType; }; </code></pre> <p>The <code>Host</code> class knows how to create an instance of <code>ExpensiveType</code>, which is a costly operation, and each policy class exposes functionality to use it. A policy class will always minimally have the constructor defined in the following sample policy.</p> <pre><code>struct SamplePolicy { SamplePolicy(const ExpensiveType&amp; expensiveType) : m_expensiveType(expensiveType) { } void DoSomething() { m_expensiveType.f(); // ... } private: const ExpensiveType&amp; m_expensiveType; }; </code></pre> <p>Is it possible to define the constructor of <code>Host</code> in such a way to call the constructor of each given policy? If the type list was not involved, this is very easy since the type of each policy is explicitly known.</p> <pre><code>template &lt;typename PolicyA, typename PolicyB&gt; class Host : public PolicyA, public PolicyB { public: Host() : m_expensiveType(/* ... */), PolicyA(m_expensiveType), PolicyB(m_expensiveType) { } private: const ExpensiveType m_expensiveType; }; </code></pre> <p>The <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/mpl/doc/refmanual/for-each.html" rel="nofollow">boost::mpl::for_each</a> algorithm looks promising, but I can't wrap my head around how to use it to solve this problem.</p> http://stackoverflow.com/questions/1663444/template-specialization-problem 0 Template specialization problem Brenton 2009-11-02T20:20:19Z 2009-11-02T23:40:26Z <p>Hi, I'm trying really hard to made this work, but I'm having no luck. I'm sure there is a work around, but I haven't run across it yet. Alright, let's see if I can describe the problem and the needs simply enough:</p> <p>I have a RGB template class that can take typenames as one of its template parameters. It takes the typename and sends it into another template that creates a classification of its basic type. For example:</p> <pre><code>struct float_type {}; struct bit_type {}; struct fixed_pt_type {}; template &lt;typename T&gt; struct type_specification { typedef float_type type; }; template &lt;&gt; struct type_specification&lt;char&gt; { typedef bit_type type; }; template &lt;&gt; struct type_specification&lt;short&gt; { typedef bit_type type; }; template &lt;&gt; struct type_specification&lt;int&gt; { typedef bit_type type; }; template &lt;&gt; struct type_specification&lt;long&gt; { typedef bit_type type; }; template &lt;&gt; struct type_specification&lt;long long&gt; { typedef bit_type type; }; </code></pre> <p>Then with this, I have a template that calculates Max Values for each of the RGB values based on its bit count:</p> <pre><code>template &lt;int Bits, typename T&gt; struct Max_Values { enum { MaxValue = (1 &lt;&lt; Bits) - 1; }; }; template &lt;int Bits&gt; struct MaxValues&lt;float_type&gt; { enum { MaxValue = 1.0; }; }; </code></pre> <p>Then in the actual RGB template class, I have:</p> <pre><code>enum { RMax = Max_Values&lt;RBits, type_specification&lt;T&gt;::type&gt;::MaxValue; GMax = Max_Values&lt;GBits, type_specification&lt;T&gt;::type&gt;::MaxValue; BMax = Max_Values&lt;BBits, type_specification&lt;T&gt;::type&gt;::MaxValue; }; </code></pre> <p>This works really well for me, until I got into the fixed-pt needs. The max value is a bit different and I don't know how to create a type-specification specialization to isolate it out. The only work around I have is the process of elimination and creating specializations for float and double and assuming the general case will be fixed-pt. But there has to be a better way to do this. Here is what I want to do with incorrect code:</p> <pre><code>template &lt;&gt; struct type_specification&lt;fixed_pt_t&gt; { typedef fixed_pt_type type; }; </code></pre> <p>However, fixed-pt-t is a template class that looks like:</p> <pre><code>template &lt;int N, typename T, template &lt;class&gt; class Policy&gt; struct fixed_pt_t </code></pre> <p>So the compiler does not like the specialization without template parameters.<br /> Is there a way to specialize my type-specification class to work with fixed-pt-t?<br /> It works fine for the general case, just can't isolate it.</p> http://stackoverflow.com/questions/1656258/a-guide-to-boos-metaprogramming-and-extensibility-features 0 A guide to Boo's metaprogramming and extensibility features? Mike K 2009-11-01T02:51:09Z 2009-11-01T04:53:18Z <p>I'm interested in learning about Boo's more powerful features such as syntactic macros, parser support (Ometa?), compiler pipeline, etc. My impression is that these areas have been in flux and somewhat under-documented. Are there any good resources for learning about these things other than studying the source code?</p> http://stackoverflow.com/questions/1643292/how-to-add-a-new-closure-to-a-class-in-groovy 0 How to add a new closure to a class in groovy. jjchiw 2009-10-29T12:13:32Z 2009-10-29T15:52:10Z <p>From <a href="http://snipplr.com/view/11958/groovy-delegate-owner-this-references/" rel="nofollow">Snipplr</a></p> <p>Ok here is the script code, in the comments is the question and the exception thrown</p> <pre><code>class Class1 { def closure = { println this.class.name println delegate.class.name def nestedClos = { println owner.class.name } nestedClos() } } def clos = new Class1().closure clos.delegate = this clos() //Now I want to add a new closure to Class1 def newClosure = { println "new Closure" println this.class.name println delegate.class.name def nestedClos = { println owner.class.name } nestedClos() } //getAbc to create a property, not a method Class1.metaClass.getAbc = newClosure //What happens here is that the property abc is not used as a closure per se, it's used //as a property and when I execute it just run the closure and when I want to change //the delegate, a null pointer is thrown clos = new Class1().abc //abc executed instead of passing the reference closure clos.delegate = this //Exception!!!! clos() </code></pre> http://stackoverflow.com/questions/1635271/how-can-i-find-the-names-of-argument-variables-passed-to-a-block 3 How can I find the names of argument variables passed to a block Corban Brook 2009-10-28T04:55:28Z 2009-10-28T13:37:58Z <p>Im trying to do some metaprogramming and would like to know the names of the variables passed as block arguments:</p> <pre><code>z = 1 # this variable is still local to the block Proc.new { |x, y| local_variables }.call # =&gt; ['_', 'z', x', 'y'] </code></pre> <p>I am not quite sure how to differentiate between the variables defined outside the block and the block arguments in this list. Is there any other way to reflect this?</p> http://stackoverflow.com/questions/1612569/how-do-i-undo-meta-class-changes-after-executing-groovyshell 3 How do I undo meta class changes after executing GroovyShell? cretzel 2009-10-23T10:25:38Z 2009-10-28T09:53:02Z <p>For example, if I execute a Groovy script, which modifies the String meta class, adding a method foo()</p> <pre><code>GroovyShell shell1 = new GroovyShell(); shell1.evaluate("String.metaClass.foo = {-&gt; delegate.toUpperCase()}"); </code></pre> <p>when I create a new shell after that and execute it, the changes are still there</p> <pre><code>GroovyShell shell2 = new GroovyShell(); Object result = shell2.evaluate("'a'.foo()"); </code></pre> <p>Is there a way to undo all meta class changes after executing the GroovyShell? I tried</p> <pre><code>shell1.getClassLoader().clearCache(); </code></pre> <p>and</p> <pre><code>shell1.resetLoadedClasses(); </code></pre> <p>but that did not make a change.</p> http://stackoverflow.com/questions/1621350/dynamically-adding-functions-to-a-python-module 0 dynamically adding functions to a Python module AnC 2009-10-25T16:40:50Z 2009-10-25T17:04:57Z <p>Our framework requires wrapping certain functions in some ugly boilerplate code:</p> <pre><code>def prefix_myname_suffix(obj): def actual(): print 'hello world' obj.register(actual) return obj </code></pre> <p>I figured this might be simplified with a decorator:</p> <pre><code>@register def myname(): print 'hello world' </code></pre> <p>However, that turned out to be rather tricky, mainly because the framework looks for a certain pattern of function names at module level.</p> <p>I've tried the following within the decorator, to no avail:</p> <pre><code>current_module = __import__(__name__) new_name = prefix + func.__name__ + suffix # method A current_module[new_name] = func # method B func.__name__ = new_name current_module += func </code></pre> <p>Any help would be appreciated!</p> http://stackoverflow.com/questions/1614798/groovy-adding-methods-to-instances-and-classes-with-metaclass-doesnt-work 0 Groovy: adding methods to instances and classes with metaClass doesn't work? awyatt 2009-10-23T17:15:16Z 2009-10-25T14:55:44Z <p>See the code below. Old instances of a class created before a method is added to the class using metaClass should not understand the method right? The assert statement below the 'PROBLEMATIC LINE' comment is executed when I think it should not be, as the old parentDir instance should not understand the blech() message.</p> <pre><code>// derived from http://ssscripting.wordpress.com/2009/10/20/adding-methods-to-singular-objects-in-groovy/ // Adding a method to a single instance of a class def thisDir = new File('.') def parentDir = new File('..') thisDir.metaClass.bla = { -&gt; "bla: ${File.separator}" } assert thisDir.bla() == "bla: ${File.separator}" : 'thisDir should understand how to respond to bla() message' try { parentDir.bla() assert false : 'parentDir should NOT understand bla() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } // Adding a method to all instances of a class File.metaClass.blech = { -&gt; "blech: ${File.separator}" } try { thisDir.blech() assert false : 'old instance thisDir should NOT understand blech() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } try { parentDir.blech() // PROBLEMATIC LINE BELOW - THE LINE IS EXECUTED WHEN // I THINK AN EXCEPTION SHOULD HAVE BEEN THROWN assert false : 'old instance parentDir should NOT understand blech() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } thisDir = new File('.') parentDir = new File('..') try { thisDir.bla() assert false : 'new instance thisDir should NOT understand bla() message' } catch (MissingMethodException mmex) { // do nothing : this is expected } assert "blech: ${File.separator}" == thisDir.blech() : 'new instance thisDir should understand blech() message' assert "blech: ${File.separator}" == parentDir.blech() : 'new instance parentDir should understand blech() message' </code></pre> http://stackoverflow.com/questions/1609024/can-ruby-operators-be-aliased 0 Can Ruby operators be aliased? Geo 2009-10-22T18:11:33Z 2009-10-23T23:18:55Z <p>I'm interested in how one would go in getting this to work :</p> <pre><code>me = "this is a string" class &lt;&lt; me alias :old&lt;&lt; :&lt;&lt; def &lt;&lt;(text) old&lt;&lt;(text) puts "appended #{text}" end end </code></pre> <p>I'd like that when something gets appended to the <code>me</code> variable, the object will use the redefined method.</p> <p>If I try to run this, I get <code>syntax error, unexpected ':', expecting kEND</code> at <code>:&lt;&lt;</code>.</p>