kbwelker
unread,Feb 11, 2012, 3:22:10 AM2/11/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Funcito
I thought I'd start using our group to discuss pros/cons/options of an
idea before making it an Issue on the main site.
Anyway, I was considering the option to wrap constructor calls as an
Object. The no-arg case is the simplest, and in Guava this would be a
form of a Supplier, and in Jedi it would be a form of a Functor0 (that
"0" at the end is not a typo).
I was considering something like:
Supplier<X> xS1 = supplierFor( ctor(X.class) );
Functor0<X> xS2 = functor0For( ctor(X.class) );
I'm trying to keep it terse so I chose "ctor", but perhaps that's not
as widely used as I believe and "constructor" would be better.
The above seems fairly easy and intuitive, but I need to think ahead
on how this syntax might be helpful or hurtful to expanding Funcito
capabilities in the future. For instance, do I want to support other
than no-arg ctors? I could put a varargs parameter in the ctor()
method to represent the ordered classes of the arguments. But would
the result be something folks would want to use?...
Supplier<X> xS1 =supplierFor( ctor(X.class, ArgType1.class,
ArgType2.class) );
// not too bad above, but a little smelly. But how would one use it?
X x = xS1.get()
// ! oh no, no we are not passing any values for arg1, arg2
So instead of passing arg types into ctor(), we could pass the actual
bind values:
Supplier<X> xS1 = supplierFor( ctor(X.class, 327.5, "My dog has
fleas") );
and now the xS1.get() works. But it might be a lot of trouble to
properly write all of the rules for type-coercion to ensure that we
are picking up the intended constructor. So then the question is:
would multi-args ctors be worth it, who would use it, how often, and
would the complexity outweigh the benefit?
Another perhaps simpler implementation would keep the first form I
showed, but behind the scenes I could just use Objenesis at runtime
since it's already in the jar. So Objenesis uses the no-arg ctor if
it exists, but falls back on other strategies otherwise. The
disadvantages: the user does not know what the state of the object
will be since they do no have any say in the constructor or other
technique that is used behind the scenes. Also, Objenesis is going to
make invocation of the Supplier.get() (or Functor0.execute() ) more
expensive than simply Contructor.newInstance().
So thoughts, ruminations, opinions?