use of jp.ossc.nimbus.service.codemaster.CodeMasterNotifyBean in project nimbus by nimbus-org.
the class CodeMasterNotifyActionService method execute.
/**
* {@link jp.ossc.nimbus.service.codemaster.CodeMasterFinder CodeMasterFinder}に更新通知を送信する。<p>
* リソースのフォーマットは、以下。<br>
* <pre>
* masterName
* dateId
* dataId
* dataAndDataBindScript
* </pre>
* masterNameは、更新通知の対象となるマスタ名を指定する。<br>
* dateIdは、{@link CodeMasterNotifyBean}に設定する更新日時のDateオブジェクトを設定するもので、同一テストケース中に、このTestActionより前に、更新日時のDateオブジェクトを戻すテストアクションが存在する場合は、そのアクションIDを指定する。また、同一シナリオ中に、このTestActionより前に、更新日時のDateオブジェクトを戻すテストアクションが存在する場合は、テストケースIDとアクションIDをカンマ区切りで指定する。空行を指定した場合は、更新日時のDateオブジェクトをTestActionの結果から取得しない。<br>
* dataIdは、{@link CodeMasterNotifyBean}に設定する更新引数のオブジェクトを設定するもので、同一テストケース中に、このTestActionより前に、更新引数のオブジェクトを戻すテストアクションが存在する場合は、そのアクションIDを指定する。また、同一シナリオ中に、このTestActionより前に、更新引数のオブジェクトを戻すテストアクションが存在する場合は、テストケースIDとアクションIDをカンマ区切りで指定する。空行を指定した場合は、更新引数のオブジェクトをTestActionの結果から取得しない。<br>
* dataAndDataBindScriptは、{@link CodeMasterNotifyBean}に設定する更新日時と更新引数を設定するスクリプトを指定する。スクリプトは、{@link Interpreter#evaluate(String,Map)}で評価され、引数の変数マップには、"context"で{@link TestContext}、"notifyBean"で{@link CodeMasterNotifyBean}が渡される。<br>
*
* @param context コンテキスト
* @param actionId アクションID
* @param resource リソース
* @return 送信に使用した{@link CodeMasterNotifyBean}
*/
public Object execute(TestContext context, String actionId, Reader resource) throws Exception {
BufferedReader br = new BufferedReader(resource);
CodeMasterNotifyBean notifyBean = new CodeMasterNotifyBean();
TopicSession session = null;
if (jndiFinder != null && jmsTopicSessionFactory != null) {
notifyBean.setJndiFinder(jndiFinder);
session = (TopicSession) jmsTopicSessionFactory.getSession();
notifyBean.setResource(session);
notifyBean.setTopicName(topicName);
} else {
ServerConnectionFactory scf = serverConnectionFactory;
if (serverConnectionFactory == null && serverConnectionFactoryServiceName != null) {
scf = (ServerConnectionFactory) ServiceManagerFactory.getServiceObject(serverConnectionFactoryServiceName);
}
notifyBean.setServerConnection(scf.getServerConnection());
notifyBean.setSubject(subject);
}
try {
String masterName = br.readLine();
if (masterName == null || masterName.length() == 0) {
throw new Exception("Unexpected EOF on masterName");
}
notifyBean.setMasterFlowKey(masterName);
final String dateId = br.readLine();
if (dateId != null && dateId.length() != 0) {
Object actionResult = null;
if (dateId.indexOf(",") == -1) {
actionResult = context.getTestActionResult(dateId);
} else {
String[] ids = dateId.split(",");
if (ids.length != 2) {
throw new Exception("Illegal dateId format. id=" + dateId);
}
actionResult = context.getTestActionResult(ids[0], ids[1]);
}
if (actionResult == null) {
throw new Exception("TestActionResult not found. id=" + dateId);
}
if (!(actionResult instanceof Date)) {
throw new Exception("TestActionResult is not instance of Date. type=" + actionResult.getClass());
}
notifyBean.setDate((Date) actionResult);
}
final String dataId = br.readLine();
if (dataId != null && dataId.length() != 0) {
Object actionResult = null;
if (dataId.indexOf(",") == -1) {
actionResult = context.getTestActionResult(dataId);
} else {
String[] ids = dataId.split(",");
if (ids.length != 2) {
throw new Exception("Illegal dataId format. id=" + dataId);
}
actionResult = context.getTestActionResult(ids[0], ids[1]);
}
if (actionResult == null) {
throw new Exception("TestActionResult not found. id=" + dataId);
}
notifyBean.setData(actionResult);
}
String dataAndDataBindScript = null;
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
try {
String line = null;
while ((line = br.readLine()) != null) {
pw.println(line);
}
pw.flush();
dataAndDataBindScript = sw.toString();
if (dataAndDataBindScript.length() == 0) {
dataAndDataBindScript = null;
}
} finally {
sw.close();
pw.close();
}
if (dataAndDataBindScript != null) {
if (interpreter == null) {
throw new UnsupportedOperationException("Interpreter is null.");
}
final Map params = new HashMap();
params.put("context", context);
params.put("notifyBean", notifyBean);
interpreter.evaluate(dataAndDataBindScript, params);
}
notifyBean.addMessageAndSend();
} finally {
br.close();
br = null;
if (session != null) {
session.close();
}
}
return notifyBean;
}
Aggregations