使用 IBM FileNet P8 实现序列号分发器
2009-12-09 00:00:00 来源:WEB开发网FileNet Content Engine (CE) 合作锁
在使用基于 P8 的分发器对象时,获取序列号的方法在本质上是一样的:读取旧值、更新并储存新值,然后将新值返回给调用方。很明显,特定的逻辑实现改变了。Java 或 .NET 同步的所有缺点仍然存在。
CE 服务器和 API 实现一个称为合作锁的特性。这个特性的初衷是为了提供与 RFC-2518 (WebDAV) 兼容的合作锁语义。Folder、Document 和 CustomObject 的 API 类包含锁定和解锁这些对象的方法。因为这是一个在服务器中实现的内置 P8 特性,所以您可以开发一个类似的实现,如清单 2 所示。这个例子显示了一个内部方法,并假设另一个代码段识别了分发器对象。
清单 2. P8 合作锁private static final String COUNTER_PROPERTY_NAME = "WjcCounter";
/**
* *** DON'T DO IT THIS WAY ***
*/
private static int getNextValue(CustomObject dispenser)
{
final Properties dispenserProperties = dispenser.getProperties();
// Object might be locked by someone else, so try a few times
for (int attemptNumber=0; attemptNumber<10; ++attemptNumber)
{
dispenser.lock(15, null); // LOCK the object for 15 seconds
try
{
// Because we use a refreshing save, the counter property
// value will be returned.
dispenser.save(RefreshMode.REFRESH); // R/T
break;
}
catch (EngineRuntimeException ere)
{
ExceptionCode ec = ere.getExceptionCode();
if (ec != ExceptionCode.E_OBJECT_LOCKED)
{
// If we get an exception for any reason other than
// the object already being locked, rethrow it.
throw ere;
}
// already locked; try again after a little sleep
try
{
Thread.sleep(100); // milliseconds
}
catch (InterruptedException e) { /* don't worry about this rarity */ }
continue;
}
}
int oldValue = dispenserProperties.getInteger32Value(COUNTER_PROPERTY_NAME);
int newValue = oldValue + 1;
dispenserProperties.putValue(COUNTER_PROPERTY_NAME, newValue);
dispenser.unlock(); // UNLOCK the object
dispenser.save(RefreshMode.NO_REFRESH); // R/T
return newValue;
}
更多精彩
赞助商链接