1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/* java.beans.EventHandler
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package java.beans;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* class EventHandler
*
* EventHandler forms a bridge between dynamically created listeners and
* arbitrary properties and methods. The idea is that a Proxy that implements
* a listener class calls the EventHandler when a listener method is called.
* The Proxy calls invoke(), which dispatches the event to a method, called
* the action, in another object, called the target.
*
* The event passed to the listener method is used to access a prespecified
* property, which in turn is passed to the action method.
*
* Normally, call EventHandler.create(), which constructs an EventHandler and
* a Proxy for the listener interface. When the listenerMethod gets called on
* the proxy, it in turn calls invoke on the attached EventHandler. The
* invoke call extracts the bean property from the event object and passes it
* to the action method of target object.
*
* TODO: Add examples of using this thing.
*
* @author Jerry Quinn (jlquinn@optonline.net)
* @since 1.4
*/
public class EventHandler implements InvocationHandler
{
// The name of the method that will be implemented. If null, any method.
private String listenerMethod;
// The object to call action on.
private Object target;
// The name of the method or property setter in target.
private String action;
// The property to extract from an event passed to listenerMethod.
private String property;
// String class doesn't already have a capitalize routine.
private String capitalize(String s)
{
return s.substring(0, 1).toUpperCase() + s.substring(1);
}
/**
* Creates a new <code>EventHandler</code> instance.
*
* Typical creation is done with the create method, not by newing an
* EventHandler.
*
* This constructs an EventHandler that will connect the method
* listenerMethodName to target.action, extracting eventPropertyName from
* the first argument of listenerMethodName. and sending it to action.
*
*
*
* @param target Object that will perform the action.
* @param action A property or method of the target.
* @param eventPropertyName A readable property of the inbound event.
* @param listenerMethodName The listener method name triggering the action.
*/
public EventHandler(Object target, String action, String eventPropertyName,
String listenerMethodName)
{
this.target = target;
this.action = action; // Turn this into a method or do we wait till
// runtime
property = eventPropertyName;
listenerMethod = listenerMethodName;
}
/**
* Return the event property name.
*/
public String getEventPropertyName()
{
return property;
}
/**
* Return the listener's method name.
*/
public String getListenerMethodName()
{
return listenerMethod;
}
/**
* Return the target object.
*/
public Object getTarget()
{
return target;
}
/**
* Return the action method name.
*/
public String getAction()
{
return action;
}
// Fetch a qualified property like a.b.c from object o. The properties can
// be boolean isProp or object getProp properties.
//
// Returns a length 2 array with the first entry containing the value
// extracted from the property, and the second entry contains the class of
// the method return type.
//
// We play this game because if the method returns a native type, the return
// value will be a wrapper. If we then take the type of the wrapper and use
// it to locate the action method that takes the native type, it won't match.
private Object[] getProperty(Object o, String prop)
throws NoSuchMethodException, IllegalAccessException, InvocationTargetException
{
// Use the event object when the property name to extract is null.
if (prop == null)
return new Object[] {o, o.getClass()};
// Isolate the first property name from a.b.c.
int pos;
String rest = null;
if ((pos = prop.indexOf('.')) != -1)
{
rest = prop.substring(pos + 1);
prop = prop.substring(0, pos);
}
// Find a method named getProp. It could be isProp instead.
Method getter;
try
{
// Look for boolean property getter isProperty
getter = o.getClass().getMethod("is" + capitalize(prop),
null);
}
catch (NoSuchMethodException e)
{
// Look for regular property getter getProperty
getter = o.getClass().getMethod("get" + capitalize(prop),
null);
}
Object val = getter.invoke(o, null);
if (rest != null)
return getProperty(val, rest);
return new Object[] {val, getter.getReturnType()};
}
/**
* Invoke the event handler.
*
* Proxy is the object that was used, method is the method that was invoked
* on object, and arguments is the set of arguments passed to this method.
* We assume that the first argument is the event to extract a property
* from.
*
* Assuming that method matches the listener method specified when creating
* this EventHandler, the desired property is extracted from this argument.
* The property is passed to target.setAction(), if possible. Otherwise
* target.action() is called, where action is the string fed to the
* constructor.
*
* For now we punt on indexed properties. Sun docs are not clear to me
* about this.
*
* @param proxy The proxy object that had method invoked on it.
* @param method The method that was invoked.
* @param arguments Arguments to method.
* @return Result of invoking target.action on the event property
*/
public Object invoke(Object proxy, Method method, Object[] arguments)
throws Exception
{
// Do we actually need the proxy?
if (method == null)
throw new RuntimeException("Invoking null method");
// Listener methods that weren't specified are ignored. If listenerMethod
// is null, then all listener methods are processed.
if (listenerMethod != null && !method.getName().equals(listenerMethod))
return null;
// Extract the first arg from arguments and do getProperty on arg
if (arguments == null || arguments.length == 0)
return null;
Object event = arguments[0]; // We hope :-)
// Obtain the property XXX propertyType keeps showing up null - why?
// because the object inside getProperty changes, but the ref variable
// can't change this way, dolt! need a better way to get both values out
// - need method and object to do the invoke and get return type
Object v[] = getProperty(event, property);
Object val = v[0];
Class propertyType = (Class) v[1];
// Find the actual method of target to invoke. We can't do this in the
// constructor since we don't know the type of the property we extracted
// from the event then.
//
// action can be either a property or a method. Sun's docs seem to imply
// that action should be treated as a property first, and then a method,
// but don't specifically say it.
//
// XXX check what happens with native type wrappers. The better thing to
// do is look at the return type of the method
Method actionMethod;
try
{
// Look for a property setter for action.
actionMethod =
target.getClass().getMethod("set" + capitalize(action),
new Class[] {propertyType});
}
catch (NoSuchMethodException e)
{
// If action as property didn't work, try as method.
try
{
actionMethod =
target.getClass().getMethod(action, new Class[] {propertyType});
}
catch (NoSuchMethodException e1)
{
// When event property is null, we may call action with no args
if (property == null)
{
actionMethod =
target.getClass().getMethod(action, null);
return actionMethod.invoke(target, null);
}
else
throw e1;
}
}
// Invoke target.action(property)
return actionMethod.invoke(target, new Object[] {val});
}
/**
* Construct a new object to dispatch events.
*
* Equivalent to:
* create(listenerInterface, target, action, null, null)
*
* I.e. all listenerInterface methods are mapped to
* target.action(EventObject) or target.action(), if the first doesn't
* exist.
*
* @param listenerInterface Listener interface to implement.
* @param target Object to invoke action on.
* @param action Target property or method to invoke.
* @return A constructed proxy object.
*/
public static Object create(Class listenerInterface, Object target, String action)
{
return create(listenerInterface, target, action, null, null);
}
/**
* Construct a new object to dispatch events.
*
* Equivalent to:
* create(listenerInterface, target, action, eventPropertyName, null)
*
* I.e. all listenerInterface methods are mapped to
* target.action(event.getEventPropertyName)
*
*
* @param listenerInterface Listener interface to implement.
* @param target Object to invoke action on.
* @param action Target property or method to invoke.
* @param eventPropertyName Name of property to extract from event.
* @return A constructed proxy object.
*/
public static Object create(Class listenerInterface, Object target,
String action, String eventPropertyName)
{
return create(listenerInterface, target, action, eventPropertyName, null);
}
/**
* Construct a new object to dispatch events.
*
* This creates an object that acts as a proxy for the method
* listenerMethodName in listenerInterface. When the listener method is
* activated, the object extracts eventPropertyName from the event. Then it
* passes the property to the method target.setAction, or target.action if
* action is not a property with a setter.
*
* For example, EventHandler.create(MouseListener.class, test, "pushed",
* "button", "mouseClicked") generates a proxy object that implements
* MouseListener, at least for the method mouseClicked(). The other methods
* of MouseListener are null operations. When mouseClicked is invoked, the
* generated object extracts the button property from the MouseEvent,
* i.e. event.getButton(), and calls test.setPushed() with the result. So under
* the covers the following happens:
*
* <CODE>
* object.mouseClicked(MouseEvent e) { test.setPushed(e.getButton()); }
* </CODE>
*
* The Sun spec specifies a hierarchical property naming scheme. Generally
* if the property is a.b.c, this corresponds to event.getA().getB().getC()
* or event.getA().getB().isC(). I don't see how you specify an indexed
* property, though. This may be a limitation of the Sun implementation as
* well. The spec doesn't seem to address it.
*
* If eventPropertyName is null, EventHandler instead uses the event object
* in place of a property, i.e. it calls target.action(EventObject). If
* there is no method named action taking an EventObject argument,
* EventHandler looks for a method target.action() taking no arguments.
*
* If listenerMethodName is null, every method in listenerInterface gets
* mapped to target.action, rather than the specified listener method.
*
* @param listenerInterface Listener interface to implement.
* @param target Object to invoke action on.
* @param action Target method name to invoke.
* @param eventPropertyName Name of property to extract from event.
* @param listenerMethodName Listener method to implement.
* @return A constructed proxy object.
*/
public static Object create(Class listenerInterface, Object target,
String action, String eventPropertyName,
String listenerMethodName)
{
// Create EventHandler instance
EventHandler eh = new EventHandler(target, action, eventPropertyName,
listenerMethodName);
// Create proxy object passing in the event handler
Object proxy = Proxy.newProxyInstance(listenerInterface.getClassLoader(),
new Class[] {listenerInterface},
eh);
return proxy;
}
}
|