Skip to content
Snippets Groups Projects
Commit 1e5e0d4e authored by brinn's avatar brinn
Browse files

add new method check() for checking the NOT NULL constraints of arbitrary objects

SVN: 558
parent 9cfb2d95
No related branches found
No related tags found
No related merge requests found
...@@ -243,16 +243,7 @@ public class DBRestrictions ...@@ -243,16 +243,7 @@ public class DBRestrictions
final DBTableRestrictions restrictions = tableMap.get(tableName); final DBTableRestrictions restrictions = tableMap.get(tableName);
assert restrictions != null : "Illegal table " + tableName; assert restrictions != null : "Illegal table " + tableName;
final int maxLength = restrictions.getLength(columnName); final int maxLength = restrictions.getLength(columnName);
if (value == null) checkNotNullConstraint(tableName, columnName, value, restrictions);
{
if (restrictions.hasNotNullConstraint(columnName))
{
final String msg = String.format("Value 'NULL' not allowed for column %s.%s.", tableName, columnName);
operationLog.warn("Violation of database constraints detected: " + msg);
throw new UserFailureException(msg);
}
return;
}
final Set<String> checkedConstraint = restrictions.getCheckedConstaint(columnName); final Set<String> checkedConstraint = restrictions.getCheckedConstaint(columnName);
if (checkedConstraint != null && checkedConstraint.contains(value) == false) if (checkedConstraint != null && checkedConstraint.contains(value) == false)
{ {
...@@ -272,6 +263,35 @@ public class DBRestrictions ...@@ -272,6 +263,35 @@ public class DBRestrictions
} }
} }
/**
* Check <var>value</var> against the restrictions (maximal length and possible check constraints) of column
* <var>columnName</var> of table <var>tableName</var>.
*
* @throws UserFailureException If the <var>value</var> violates the constraints.
*/
public void check(String tableName, String columnName, Object value) throws UserFailureException
{
final DBTableRestrictions restrictions = tableMap.get(tableName);
assert restrictions != null : "Illegal table " + tableName;
checkNotNullConstraint(tableName, columnName, value, restrictions);
}
private void checkNotNullConstraint(String tableName, String columnName, Object value, DBTableRestrictions restrictions)
throws UserFailureException
{
assert restrictions != null;
if (value == null)
{
if (restrictions.hasNotNullConstraint(columnName))
{
final String msg = String.format("Value 'NULL' not allowed for column %s.%s.", tableName, columnName);
operationLog.warn("Violation of database constraints detected: " + msg);
throw new UserFailureException(msg);
}
return;
}
}
private String toString(Set<String> alternatives) private String toString(Set<String> alternatives)
{ {
final StringBuilder builder = new StringBuilder(); final StringBuilder builder = new StringBuilder();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment