use of jp.ossc.nimbus.beans.dataset.RecordList in project nimbus by nimbus-org.
the class DataSetHtmlConverterTest method testConvertToObject.
public void testConvertToObject() {
DataSet inputDataSet = new DataSetHtmlConverterTestDataSet();
DataSetHtmlConverter converter = new DataSetHtmlConverter();
converter.setCharacterEncodingToObject("Windows-31J");
DataSetHtmlConverterTestDataSet dataSet = (DataSetHtmlConverterTestDataSet) converter.convertToObject(createTestData(), inputDataSet);
Header header = dataSet.getHeader();
RecordList recordList = dataSet.getRecordList();
Assert.assertEquals("タイトル", header.get(DataSetHtmlConverterTestDataSet.PROPERTY1));
Assert.assertEquals("テキスト", header.get(DataSetHtmlConverterTestDataSet.PROPERTY2));
for (int i = 0; i < recordList.size(); i++) {
Record record = (Record) recordList.get(i);
Assert.assertEquals("テキスト" + (i + 1) + "-1", record.get(DataSetHtmlConverterTestDataSet.PROPERTY3));
Assert.assertEquals("テキスト" + (i + 1) + "-2", record.get(DataSetHtmlConverterTestDataSet.PROPERTY4));
Assert.assertEquals("テキスト" + (i + 1) + "-3", record.get(DataSetHtmlConverterTestDataSet.PROPERTY5));
}
}
use of jp.ossc.nimbus.beans.dataset.RecordList in project nimbus by nimbus-org.
the class DataSetJournalEditorService method makeRecordListsFormat.
protected StringBuilder makeRecordListsFormat(EditorFinder finder, Object key, DataSet dataSet, StringBuilder buf) {
buf.append(RECORD_LISTS_HEADER);
final String[] names = dataSet.getRecordListNames();
if (names.length == 0) {
buf.append(NULL_STRING);
return buf;
} else {
buf.append(getLineSeparator());
}
final StringBuilder subBuf = new StringBuilder();
for (int i = 0; i < names.length; i++) {
RecordList list = dataSet.getRecordList(names[i]);
if (!enabledRecordListSet.isEmpty() && !enabledRecordListSet.contains(names[i])) {
continue;
}
makeObjectFormat(finder, null, list, subBuf);
if (i != names.length - 1) {
subBuf.append(getLineSeparator());
}
}
addIndent(subBuf);
return buf.append(subBuf);
}
use of jp.ossc.nimbus.beans.dataset.RecordList in project nimbus by nimbus-org.
the class DataSetXpathConverter method createRecord.
private void createRecord(Document document, DataSet dataSet, Object target, RecordSchema recordSchema) {
PropertySchema[] propertySchemata = recordSchema.getPropertySchemata();
for (int i = 0; i < propertySchemata.length; i++) {
if (propertySchemata[i] instanceof XpathPropertySchema) {
// PropertySchemaからXPath取得
XpathPropertySchema xmlBindingPropertySchema = (XpathPropertySchema) propertySchemata[i];
XPathExpression expression = xmlBindingPropertySchema.getXpathExpression();
// XPathによりXML要素を抽出
NodeList nodeList = null;
try {
nodeList = (NodeList) expression.evaluate(document, XPathConstants.NODESET);
} catch (XPathExpressionException e) {
throw new ConvertException("The converter failed to evaluate a XML. ", e);
}
// DataSetへ変換
int length = nodeList.getLength();
if (target instanceof Record) {
if (length > 0) {
Object nodeValue = nodeList.item(0).getNodeValue();
((Record) target).setParseProperty(xmlBindingPropertySchema.getName(), nodeValue);
}
} else if (target instanceof RecordList) {
RecordList targetRecordList = (RecordList) target;
int offset = length - targetRecordList.size();
if (offset > 0) {
for (int j = 0; j < offset; j++) {
Record record = targetRecordList.createRecord();
targetRecordList.addRecord(record);
}
}
for (int j = 0; j < length; j++) {
Object nodeValue = nodeList.item(j).getNodeValue();
Record record = targetRecordList.getRecord(j);
record.setParseProperty(xmlBindingPropertySchema.getName(), nodeValue);
}
}
} else if (propertySchemata[i] instanceof RecordPropertySchema) {
RecordPropertySchema recordPropertySchema = (RecordPropertySchema) propertySchemata[i];
RecordSchema nestedRecordSchema = dataSet.getNestedRecordSchema(recordPropertySchema.getName());
Record nestedRecord = dataSet.createNestedRecord(recordPropertySchema.getRecordName());
createRecord(document, dataSet, target, nestedRecordSchema);
((Record) target).setProperty(recordPropertySchema.getName(), nestedRecord);
} else if (propertySchemata[i] instanceof RecordListPropertySchema) {
RecordListPropertySchema recordListPropertySchema = (RecordListPropertySchema) propertySchemata[i];
RecordSchema nestedRecordSchema = dataSet.getNestedRecordListSchema(recordListPropertySchema.getRecordListName());
RecordList nestedRecordList = dataSet.createNestedRecordList(recordListPropertySchema.getRecordListName());
createRecord(document, dataSet, nestedRecordList, nestedRecordSchema);
((Record) target).setProperty(recordListPropertySchema.getName(), nestedRecordList);
}
}
}
use of jp.ossc.nimbus.beans.dataset.RecordList in project nimbus by nimbus-org.
the class BlockadeInterceptorService method invokeFilter.
/**
* コードマスタの閉塞マスタ及び特権ユーザマスタをチェックして、閉塞状態の場合は例外をthrowする。
* <p>
* サービスが開始されていない場合は、何もせずに次のインターセプタを呼び出す。<br>
*
* @param context 呼び出しのコンテキスト情報
* @param chain 次のインターセプタを呼び出すためのチェーン
* @return 呼び出し結果の戻り値
* @exception Throwable 呼び出し先で例外が発生した場合、またはこのインターセプタで任意の例外が発生した場合。但し、
* 本来呼び出される処理がthrowしないRuntimeException以外の例外をthrowしても
* 、呼び出し元には伝播されない。
*/
public Object invokeFilter(ServletFilterInvocationContext context, InterceptorChain chain) throws Throwable {
if (getState() != STARTED) {
return chain.invokeNext(context);
}
final HttpServletRequest request = (HttpServletRequest) context.getServletRequest();
String reqPath = request.getServletPath();
if (request.getPathInfo() != null) {
reqPath = reqPath + request.getPathInfo();
}
Map codeMasters = null;
if (codeMasterFinder != null) {
codeMasters = codeMasterFinder.getCodeMasters();
} else {
codeMasters = (Map) threadContext.get(ThreadContextKey.CODEMASTER);
}
if (codeMasters == null) {
throw new BlockadeProcessException("CodeMaster is null.");
}
Object blockadeCodeMaster = codeMasters.get(blockadeCodeMasterKey);
if (blockadeCodeMaster == null) {
throw new BlockadeProcessException("BlockadeCodeMaster is null. key=" + blockadeCodeMasterKey);
}
Object specialUserCodeMaster = null;
if (specialUserCodeMasterKey != null) {
specialUserCodeMaster = codeMasters.get(specialUserCodeMasterKey);
}
boolean isSpecialUser = false;
String userKey = null;
if (specialUserCodeMaster != null) {
Object requestObject = request.getAttribute(requestObjectAttributeName);
if (requestObject == null) {
throw new BlockadeProcessException("RequestObject is null.");
}
if (specialUserCodeMaster instanceof RecordList) {
RecordList list = (RecordList) specialUserCodeMaster;
Record primaryKey = list.createRecord();
applySpecialUserMapping(requestObject, primaryKey);
userKey = primaryKey.toString();
isSpecialUser = list.searchByPrimaryKey(primaryKey) != null;
} else if (specialUserCodeMaster instanceof RecordSet) {
RecordSet recset = (RecordSet) specialUserCodeMaster;
RowData primaryKey = recset.createNewRecord();
applySpecialUserMapping(requestObject, primaryKey);
userKey = primaryKey.getKey();
isSpecialUser = recset.get(primaryKey) != null;
} else {
throw new BlockadeProcessException("Unsupported type of SpecialUserCodeMaster. type=" + specialUserCodeMaster.getClass());
}
}
if (pathPatternMap == null) {
initPathPatternMap(blockadeCodeMaster);
}
Map blockadeFilterMap = null;
if (blockadeMapping != null) {
Object requestObject = request.getAttribute(requestObjectAttributeName);
if (requestObject == null) {
throw new BlockadeProcessException("RequestObject is null.");
}
blockadeFilterMap = new HashMap();
Iterator entries = blockadeMapping.entrySet().iterator();
while (entries.hasNext()) {
Map.Entry entry = (Map.Entry) entries.next();
try {
blockadeFilterMap.put(entry.getValue(), propertyAccess.get(requestObject, (String) entry.getKey()));
} catch (IllegalArgumentException e) {
throw new BlockadeProcessException("BlockadeCodeMaster value '" + entry.getKey() + "' cannot acquire from a request.", e);
} catch (NoSuchPropertyException e) {
throw new BlockadeProcessException("BlockadeCodeMaster value '" + entry.getKey() + "' cannot acquire from a request.", e);
} catch (InvocationTargetException e) {
throw new BlockadeProcessException("BlockadeCodeMaster value '" + entry.getKey() + "' cannot acquire from a request.", e.getTargetException());
}
}
}
if (blockadeCodeMaster instanceof List) {
List list = (List) blockadeCodeMaster;
for (int i = 0, imax = list.size(); i < imax; i++) {
Object blockade = list.get(i);
if (blockadeFilterMap != null) {
if (!isMatchBlockadeMapping(blockadeFilterMap, blockade)) {
continue;
}
}
checkBlockade(reqPath, blockade, isSpecialUser, userKey);
}
} else if (blockadeCodeMaster instanceof RecordSet) {
RecordSet recset = (RecordSet) blockadeCodeMaster;
for (int i = 0, imax = recset.size(); i < imax; i++) {
Object blockade = recset.get(i);
if (blockadeFilterMap != null) {
if (!isMatchBlockadeMapping(blockadeFilterMap, blockade)) {
continue;
}
}
checkBlockade(reqPath, blockade, isSpecialUser, userKey);
}
} else {
throw new BlockadeProcessException("Unsupported type of BlockadeCodeMaster. type=" + blockadeCodeMaster.getClass());
}
return chain.invokeNext(context);
}
use of jp.ossc.nimbus.beans.dataset.RecordList in project nimbus by nimbus-org.
the class MasterValidatorService method validate.
/**
* 指定されたオブジェクトがマスタに含まれているかを検証する。<p>
*
* @param obj 検証対象のオブジェクト
* @return 検証結果。検証成功の場合true
* @exception ValidateException 検証に失敗した場合
*/
public boolean validate(Object obj) throws ValidateException {
if (connectionFactory != null) {
if (persistentManager != null) {
Connection con = null;
try {
con = connectionFactory.getConnection();
final List result = (List) persistentManager.loadQuery(con, query, obj, null);
if (result.size() == 0) {
return false;
}
final Collection values = ((Map) result.get(0)).values();
if (values.size() == 0) {
return false;
}
if (values.size() == 1) {
final Object value = values.iterator().next();
if (value instanceof Boolean) {
return ((Boolean) value).booleanValue();
} else if (value instanceof Number) {
return ((Number) value).intValue() != 0;
} else {
return true;
}
} else {
return true;
}
} catch (ConnectionFactoryException e) {
throw new ValidateException(e);
} catch (PersistentException e) {
throw new ValidateException(e);
} finally {
if (con != null) {
try {
con.close();
} catch (SQLException e) {
}
}
}
} else {
final RecordSet recset = templateRecordSet.cloneEmpty();
Connection con = null;
try {
con = connectionFactory.getConnection();
recset.setConnection(con);
recset.setLogger(getLogger());
for (int i = 0, imax = bindDataList.size(); i < imax; i++) {
final Property prop = (Property) bindDataList.get(i);
if (prop == null) {
recset.setBindData(i, obj);
} else {
recset.setBindData(i, prop.getProperty(obj));
}
}
return recset.search() != 0;
} catch (ConnectionFactoryException e) {
throw new ValidateException(e);
} catch (NoSuchPropertyException e) {
throw new ValidateException(e);
} catch (InvocationTargetException e) {
throw new ValidateException(e.getCause());
} catch (SQLException e) {
throw new ValidateException(e);
} finally {
if (con != null) {
try {
con.close();
} catch (SQLException e) {
}
}
}
}
} else {
Map codeMaster = null;
if (threadContext != null) {
codeMaster = (Map) threadContext.get(codeMasterThreadContextKey);
}
if (codeMaster == null && codeMasterFinder != null) {
codeMaster = codeMasterFinder.getCodeMasters();
}
if (codeMaster == null) {
throw new ValidateException("CodeMaster is not found.");
}
final Object master = codeMaster.get(codeMasterName);
if (master == null) {
throw new ValidateException("Master '" + codeMasterName + "' is not found.");
}
if (master instanceof RecordSet) {
final RecordSet recset = (RecordSet) master;
if (searchCondition != null) {
final Map params = new HashMap();
final Iterator entries = bindDataMap.entrySet().iterator();
try {
while (entries.hasNext()) {
final Map.Entry entry = (Map.Entry) entries.next();
final String key = (String) entry.getKey();
final Property prop = (Property) entry.getValue();
if (prop == null) {
params.put(key, obj);
} else {
params.put(key, prop.getProperty(obj));
}
}
} catch (NoSuchPropertyException e) {
throw new ValidateException(e);
} catch (InvocationTargetException e) {
throw new ValidateException(e.getCause());
}
try {
return recset.searchDynamicConditionReal(searchCondition, params).size() != 0;
} catch (Exception e) {
throw new ValidateException(e);
}
} else {
return recset.get(obj == null ? null : obj.toString()) != null;
}
} else if (master instanceof RecordList) {
final RecordList recordList = (RecordList) master;
if (searchCondition != null) {
final Map params = new HashMap();
final Iterator entries = bindDataMap.entrySet().iterator();
try {
while (entries.hasNext()) {
final Map.Entry entry = (Map.Entry) entries.next();
final String key = (String) entry.getKey();
final Property prop = (Property) entry.getValue();
if (prop == null) {
params.put(key, obj);
} else {
params.put(key, prop.getProperty(obj));
}
}
} catch (NoSuchPropertyException e) {
throw new ValidateException(e);
} catch (InvocationTargetException e) {
throw new ValidateException(e.getCause());
}
try {
return recordList.realSearch(searchCondition, params).size() != 0;
} catch (Exception e) {
throw new ValidateException(e);
}
} else {
PropertySchema[] schemata = recordList.getRecordSchema().getPrimaryKeyPropertySchemata();
if (schemata == null || schemata.length != 1) {
throw new ValidateException("Size of primary key property not equal 1.");
}
Record key = recordList.createRecord();
key.setProperty(schemata[0].getName(), obj);
return recordList.searchByPrimaryKey(key) != null;
}
} else {
throw new ValidateException("Master '" + codeMasterName + "' is not supported type. type=" + master.getClass().getName());
}
}
}
Aggregations