オブジェクトのキャッシングのために、J2SE と Android プラットフォームの両方に移植可能なユーティリティ コードを開発しようとしています。計画では、動作するようになったら抽象クラスを抽出する予定ですが、今のところ、最終クラスの実装の一部です。
キャッシュしたいオブジェクトはインスタンス化さstore(Object, Object)
れ、最終バージョンの抽象クラスの一部になるメソッドに渡されたので、イントロスペクションを使用して、渡されたデータを格納する方法を決定する必要があります。
アルゴリズムはそれほど複雑ではありません。
1)。オブジェクトのメソッドをスキャンして属性を探し、@Id
見つかった場合はそれを使用してオブジェクトのキーをフェッチします。
2)。store() メソッドを実装するフィールドの独自のクラスをスキャンし、put(key.getClass(), value.getClass())
それを使用してオブジェクトをキャッシュします。
パート (1) は問題なく動作しますが、パート (2) は動作しません。私は得る:
DEBUG c.n.v.ui.cache.Cache Not found: operativesMap.put(String, OperativeEntity)
WARN c.n.v.ui.cache.Cache Object Joe Bloogs, with key cac57510-c9c6-11df-8000-b56f1ffcb182 not cached!
INFO c.n.v.ui.cache.Cache Object Joe Bloggs, with key cac57510-c9c6-11df-8000-b56f1ffcb182 cached.
イントロスペクション コードが put メソッドを見つけられず、ダブル チェック ロジックに陥ったことを示すログが記録されます (そのメソッドを抽象クラスに移動するときに削除する必要があります)。
いつもご親切にありがとうございます。
スティーブ
public void store(Object key,
Object value) {
if (log.isInfoEnabled())
log.info("Storing: " + key + " => " + value);
for (Field field: getClass().getDeclaredFields())
if (store(field, key, value))
return;
log.warn("Object " + value + ", with key " + key + " not cached!");
if (value instanceof OperativeEntity) {
operativesMap.put(key.toString(), (OperativeEntity) value);
log.info("Object " + value + ", with key " + key + " cached.");
// How did I get here, and I do - the loop above should have found
// operativesMap, it's put method and stored the value
}
}
public boolean store(Field field,
Object key,
Object value) {
try {
Method method = field.getClass().getMethod("put", key.getClass(), value.getClass());
if (null != method)
return store(field.get(this), method, key, value);
else
return false;
} catch (NoSuchMethodException cause) {
if (log.isDebugEnabled())
log.debug("Not found: " + field.getName() + ".put(" + key.getClass().getSimpleName()
+ ", " + value.getClass().getSimpleName() + ")");
return false;
} catch (Exception cause) {
log.error("Stroing " + key + "=>" + value + " mapping", cause);
return false;
}
}
public boolean store(Object obj,
Method method,
Object key,
Object value) {
try {
method.invoke(obj, key, value);
if (log.isInfoEnabled())
log.info(">>>>>> Cached " + key + "=>" + value);
return true;
} catch (Exception cause) {
log.error("Stroing " + key + "=>" + value + " mapping", cause);
return false;
}
}
更新:
将来これを読む人のために、動作する put メソッドを見つけるためのコードを以下に示します。
public boolean store(Field field,
Object key,
Object value) {
try {
Object obj = field.get(this);
Method method = obj.getClass().getMethod("put", Object.class, Object.class);
if (null != method) {
Class[] params = method.getParameterTypes();
if (log.isDebugEnabled())
log.debug(" Found: put(" + params[0].getSimpleName() + ", " + params[1].getSimpleName() + ")");
if (params[0].isAssignableFrom(key.getClass())
&& params[1].isAssignableFrom(value.getClass()))
return store(obj, method, key, value);
else
return false;
} else
return false;
} catch (NoSuchMethodException cause) {
if (log.isDebugEnabled())
log.debug("Not found: " + field.getName() + ".put(Object, Object)");
return false;
} catch (Exception cause) {
log.error("Storing " + key + "=>" + value + " mapping", cause);
return false;
}
}