Files
.externalToolBuilders
config
source
cpp
java
org
alfresco
email
filesys
jcr
linkvalidation
model
repo
action
activities
admin
attributes
audit
avm
blogIntegration
cache
clt
coci
config
configuration
content
copy
deploy
descriptor
dictionary
domain
hibernate
dialect
AVMAccessControlListDAO.java
AbstractPermissionsDaoComponentImpl.java
AclDaoComponentImpl.java
AppliedPatch.hbm.xml
AppliedPatchImpl.java
ChildAssocImpl.java
ContentUrl.hbm.xml
ContentUrlImpl.java
DMAccessControlListDAO.java
DMPermissionsDaoComponentImpl.java
DbAccessControlEntryContextImpl.java
DbAccessControlEntryImpl.java
DbAccessControlListChangeSetImpl.java
DbAccessControlListImpl.java
DbAccessControlListMemberImpl.java
DbAuthorityAliasImpl.java
DbAuthorityImpl.java
DbPermissionImpl.java
HibernateContentUrlDAOImpl.java
HibernateHelper.java
HibernateLoadListener.java
HibernateNodeTest.java
HibernateQNameDAOImpl.java
HibernateSessionHelper.java
HibernateSessionHelperResource.java
HibernateSessionHelperResourceException.java
HibernateSessionHelperResourceProvider.java
HibernateSessionHelperTest.java
HibernateSessionSupport.java
LifecycleAdapter.java
LocaleUserType.java
NamespaceEntityImpl.java
Node.hbm.xml
NodeAccessControlListDAO.java
NodeAssocImpl.java
NodeImpl.java
NodeStatusImpl.java
OldADMPermissionsDaoComponentImpl.java
Permission.hbm.xml
PermissionsDaoComponentImpl.java
QName.hbm.xml
QNameEntityImpl.java
QNameUserType.java
ServerImpl.java
SessionSizeResourceManager.java
Store.hbm.xml
StoreImpl.java
Transaction.hbm.xml
TransactionImpl.java
UsageDelta.hbm.xml
VersionCount.hbm.xml
VersionCountImpl.java
VersionCounterDaoComponentImpl.java
schema
AccessControlListDAO.java
AppliedPatch.java
ChildAssoc.java
ContentUrl.java
ContentUrlDAO.java
ContentUrlDAOTest.java
DbAccessControlEntry.java
DbAccessControlEntryContext.java
DbAccessControlList.java
DbAccessControlListChangeSet.java
DbAccessControlListMember.java
DbAuthority.java
DbAuthorityAlias.java
DbPermission.java
DbPermissionKey.java
NamespaceEntity.java
Node.java
NodeAssoc.java
NodeKey.java
NodeStatus.java
PropertyValue.java
PropertyValueTest.java
QNameDAO.java
QNameDAOTest.java
QNameEntity.java
Server.java
Store.java
StoreKey.java
Transaction.java
VersionCount.java
exporter
forum
i18n
importer
jscript
lock
model
module
node
ownable
person
policy
processor
remote
rule
search
security
service
site
template
tenant
thumbnail
transaction
usage
version
workflow
sandbox
service
tools
util
apache
queryRegister.dtd
meta-inf
test-resources
web
.classpath
.project
build.xml
alfresco-community-repo/source/java/org/alfresco/repo/domain/hibernate/VersionCounterDaoComponentImpl.java
Paul Holmes-Higgin 4e2300f095 Updated copyright
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5186 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-02-19 17:17:36 +00:00

169 lines
6.5 KiB
Java

/*
* Copyright (C) 2005-2007 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.repo.domain.hibernate;
import org.alfresco.repo.domain.StoreKey;
import org.alfresco.repo.domain.VersionCount;
import org.alfresco.repo.node.NodeServicePolicies;
import org.alfresco.repo.policy.JavaBehaviour;
import org.alfresco.repo.policy.PolicyComponent;
import org.alfresco.repo.version.common.counter.VersionCounterService;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.service.namespace.NamespaceService;
import org.alfresco.service.namespace.QName;
import org.hibernate.LockMode;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
/**
* Version counter DAO service implemtation using Hibernate.
* <p>
* The object should execute within its own transaction, and is limited to single-thread
* entry. If it becomes a bottleneck, the transaction synchronization should be moved
* over to reentrant locks and/or the hibernate mappings should be optimized for better
* read-write access.
*
* @author Derek Hulley
*/
public class VersionCounterDaoComponentImpl
extends HibernateDaoSupport
implements VersionCounterService
{
/**
* Retrieves or creates a version counter. This locks the counter against updates for the
* current transaction.
*
* @param storeKey the primary key of the counter
* @return Returns a current or new version counter
*/
private VersionCount getVersionCounter(StoreRef storeRef)
{
final StoreKey storeKey = new StoreKey(storeRef.getProtocol(), storeRef.getIdentifier());
// check if it exists
VersionCount versionCount = (VersionCount) getHibernateTemplate().get(
VersionCountImpl.class,
storeKey,
LockMode.UPGRADE);
if (versionCount == null)
{
// This could fail on some databases with concurrent adds. But it is only those databases
// that don't lock the index against an addition of the row, and then it will only fail once.
versionCount = new VersionCountImpl();
versionCount.setKey(storeKey);
getHibernateTemplate().save(versionCount);
// debug
if (logger.isDebugEnabled())
{
logger.debug("Created version counter: \n" +
" Thread: " + Thread.currentThread().getName() + "\n" +
" Version count: " + versionCount.getVersionCount());
}
}
else
{
// debug
if (logger.isDebugEnabled())
{
logger.debug("Got version counter: \n" +
" Thread: " + Thread.currentThread().getName() + "\n" +
" Version count: " + versionCount.getVersionCount());
}
}
// done
return versionCount;
}
/**
* Get the next available version number for the specified store.
*
* @param storeRef the version store id
* @return the next version number
*/
public int nextVersionNumber(StoreRef storeRef)
{
// get the version counter
VersionCount versionCount = getVersionCounter(storeRef);
// get an incremented count
int nextCount = versionCount.incrementVersionCount();
// done
if (logger.isDebugEnabled())
{
logger.debug("Incremented version count: \n" +
" Thread: " + Thread.currentThread().getName() + "\n" +
" New version count: " + versionCount.getVersionCount());
}
return nextCount;
}
/**
* Gets the current version number for the specified store.
*
* @param storeRef the store reference
* @return the current version number, zero if no version yet allocated.
*/
public int currentVersionNumber(StoreRef storeRef)
{
// get the version counter
VersionCount versionCounter = getVersionCounter(storeRef);
// get an incremented count
return versionCounter.getVersionCount();
}
/**
* Resets the version number for a the specified store.
*
* WARNING: calling this method will completely reset the current
* version count for the specified store and cannot be undone.
*
* @param storeRef the store reference
*/
public synchronized void resetVersionNumber(StoreRef storeRef)
{
// get the version counter
VersionCount versionCounter = getVersionCounter(storeRef);
// get an incremented count
versionCounter.resetVersionCount();
}
/**
* Sets the version number for a specified store.
*
* WARNING: calling this method will completely reset the current
* version count for the specified store and cannot be undone.
*
* @param storeRef the store reference
* @param versionCount the new version count
*/
public synchronized void setVersionNumber(StoreRef storeRef, int versionCount)
{
// get the version counter
VersionCount versionCounter = getVersionCounter(storeRef);
// get an incremented count
versionCounter.setVersionCount(versionCount);
}
}