use of de.tudarmstadt.ukp.clarin.webanno.api.dao.casstorage.SessionManagedCas in project webanno by webanno.
the class CasStorageServiceImpl method readOrCreateCas.
@Override
public CAS readOrCreateCas(SourceDocument aDocument, String aUsername, CasUpgradeMode aUpgradeMode, CasProvider aSupplier, CasAccessMode aAccessMode) throws IOException, CasSessionException {
CasStorageSession session = CasStorageSession.get();
// If the CAS is already present in the current session and the access mode is compatible
// with the requested access mode, then we can return it immediately
// THOUGHT: As it is written now - if the access more already recorded in the session
// is insufficient, the access mode is upgraded because we simply continue after this
// IF-clause. I am not entirely sure this is valid.
// Case 1) CAS was added during the current session - the holder in the session is
// replaced with an exclusive access CAS and when the session is closed, it is released.
// Case 2) CAS was added during a parent session - the new exclusive access holder is added
// to the current session and released as the current session is closed. The parent session
// then still has the previously obtained read-only CAS - which at this point might be
// stale if the CAS was changed during the exclusive access period
Optional<SessionManagedCas> mCas = session.getManagedState(aDocument.getId(), aUsername);
if (mCas.isPresent() && mCas.get().getMode().alsoPermits(aAccessMode)) {
return mCas.get().getCas();
}
// If the CAS is not yet in the session, then we must get hold of it somehow...
CasHolder casHolder;
// If exclusive access is requested, then we check the CAS out of the exclusive access pool
if (EXCLUSIVE_WRITE_ACCESS.equals(aAccessMode)) {
CasKey key = null;
CasHolder holder = null;
try {
log.trace("CAS storage session [{}]: trying to borrow CAS [{}]@[{}]({})", session.hashCode(), aUsername, aDocument.getName(), aDocument.getId());
key = new CasKey(aDocument, aUsername);
holder = borrowCas(key);
// load it
if (!holder.isCasSet()) {
CasKey finalKey = key;
CasHolder finalHolder = holder;
CAS cas;
// exclusive lock in CAS in readOrCreateUnmanagedCas
try (CasStorageSession loaderSession = CasStorageSession.openNested(true)) {
SessionManagedCas mLoaderCas = loaderSession.add(aDocument.getId(), aUsername, EXCLUSIVE_WRITE_ACCESS, holder);
// Do not try to release the CAS when the loader session closes because in
// fact we won't even have set the CAS in the holder by then
mLoaderCas.setReleaseOnClose(false);
cas = readOrCreateUnmanagedCas(aDocument, aUsername, aSupplier, aUpgradeMode);
}
holder.setCas(cas);
// Hook up releasing of the CAS when CAS.release() is called via the
// CasStorageSession
((CASImpl) getRealCas(cas)).setOwner(_cas -> returnBorrowedCas(_cas, finalKey, finalHolder));
log.trace("CAS storage session [{}]: borrowed CAS [{}] for [{}]@[{}]({}) loaded from storage", session.hashCode(), holder.getCasHashCode(), aUsername, aDocument.getName(), aDocument.getId());
} else {
log.trace("CAS storage session [{}]: borrowed CAS [{}] for [{}]@[{}]({}) was already in memory", session.hashCode(), holder.getCasHashCode(), aUsername, aDocument.getName(), aDocument.getId());
transferCasOwnershipToCurrentThread(holder.getCas());
repairAndUpgradeCasIfRequired(aDocument, aUsername, holder.getCas(), aUpgradeMode, ISOLATED_SESSION);
}
casHolder = holder;
} catch (Exception e) {
// If there was an exception, we need to return the CAS to the pool
if (key != null && holder != null) {
log.trace("CAS storage session [{}]: returning borrowed CAS [{}] for [{}]@[{}]({}) after failure to load CAS", session.hashCode(), holder.getCasHashCode(), aUsername, aDocument.getName(), aDocument.getId());
try {
exclusiveAccessPool.returnObject(key, holder);
logExclusiveAccessHolders();
} catch (Exception e1) {
log.error("Unable to return CAS to exclusive access pool", e1);
}
}
casHolder = new CasHolder(key, e);
}
} else // else if shared read access is requested, then we try fetching it from the shared cache
if (SHARED_READ_ONLY_ACCESS.equals(aAccessMode)) {
if (!AUTO_CAS_UPGRADE.equals(aUpgradeMode)) {
throw new IllegalArgumentException("When requsting a shared read-only CAS, the " + "access mode must be " + AUTO_CAS_UPGRADE);
}
// check for its existence
try (WithExclusiveAccess access = new WithExclusiveAccess(aDocument, aUsername)) {
// Since we promise to only read the CAS, we don't have to worry about it being
// locked to a particular thread...
casHolder = sharedAccessCache.get(new CasKey(aDocument, aUsername), (key) -> CasHolder.of(key, () -> getRealCas(readOrCreateUnmanagedCas(aDocument, aUsername, aSupplier, aUpgradeMode))));
}
} else // else if the special bypass mode is requested, then we fetch directly from disk
if (UNMANAGED_ACCESS.equals(aAccessMode)) {
// check for its existence
try (WithExclusiveAccess access = new WithExclusiveAccess(aDocument, aUsername)) {
casHolder = CasHolder.of(new CasKey(aDocument, aUsername), () -> readOrCreateUnmanagedCas(aDocument, aUsername, aSupplier, aUpgradeMode));
}
} else // else if the special bypass mode is requested, then we fetch directly from disk
if (UNMANAGED_NON_INITIALIZING_ACCESS.equals(aAccessMode)) {
// check for its existence
try (WithExclusiveAccess access = new WithExclusiveAccess(aDocument, aUsername)) {
casHolder = CasHolder.of(new CasKey(aDocument, aUsername), () -> readUnmanagedCas(aDocument, aUsername));
}
} else {
throw new IllegalArgumentException("Unknown CAS access mode [" + aAccessMode + "]");
}
// If there was a problem retrieving the CAS, then we throw an exception
if (casHolder.getException() != null) {
if (casHolder.getException() instanceof IOException) {
throw (IOException) casHolder.getException();
}
throw new IOException(casHolder.getException());
}
CAS cas = casHolder.getCas();
if (aAccessMode.isSessionManaged()) {
session.add(aDocument.getId(), aUsername, aAccessMode, cas).incrementReadCount();
}
return cas;
}
use of de.tudarmstadt.ukp.clarin.webanno.api.dao.casstorage.SessionManagedCas in project webanno by webanno.
the class CasStorageServiceImpl method writeCas.
@Override
public void writeCas(SourceDocument aDocument, CAS aCas, String aUserName) throws IOException, CasSessionException {
CasStorageSession session = CasStorageSession.get();
// promise has been made. So we can then try to get exclusive access and save it.
if (session.contains(aCas)) {
if (!session.isWritingPermitted(aCas)) {
throw new IOException("Session does not permit the CAS for user [" + aUserName + "] on document [" + aDocument.getName() + "](" + aDocument.getId() + ") in project [" + aDocument.getProject().getName() + "](" + aDocument.getProject().getId() + ") to be written");
}
// When overriding a stored CAS using an different CAS, the new CAS must be unmanaged
// or must have been added to the session using a "special purpose". This is to avoid
// having one CAS being accessible view two different username/docId pairs.
Optional<SessionManagedCas> mCas = session.getManagedState(aDocument.getId(), aUserName);
if (mCas.isPresent() && mCas.get().getCas() != aCas) {
throw new IOException("Cannot override managed CAS [" + aUserName + "] on document [" + aDocument.getName() + "](" + aDocument.getId() + ") in project [" + aDocument.getProject().getName() + "](" + aDocument.getProject().getId() + ") with another managed CAS for user [" + mCas.get().getUserId() + "] on document [" + mCas.get().getSourceDocumentId() + "]");
}
realWriteCas(aDocument, aUserName, aCas);
} else {
try (WithExclusiveAccess access = new WithExclusiveAccess(aDocument, aUserName)) {
realWriteCas(aDocument, aUserName, aCas);
// could e.g. happen when saving an unmanaged CAS under a new username/docId pair.
if (access.isCasSet() && access.getCas() != aCas) {
access.setCas(aCas);
}
} catch (IOException e) {
throw e;
} catch (Exception e) {
throw new IOException(e);
}
}
// Drop the CAS from the shared CAS it gets re-loaded on the next access - no effect if the
// CAS is not present in the shared cache
sharedAccessCache.invalidate(new CasKey(aDocument, aUserName));
session.getManagedState(aCas).ifPresent(SessionManagedCas::incrementWriteCount);
}
Aggregations