📄 cmslock.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/lock/CmsLock.java,v $
* Date : $Date: 2005/06/27 23:22:25 $
* Version: $Revision: 1.28 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.lock;
import org.opencms.db.CmsDbUtil;
import org.opencms.util.CmsUUID;
/**
* Represents the lock state of a VFS resource.<p>
*
* The lock state is combination of how, by whom and in which project
* a resource is currently locked.<p>
*
* Using old-style methods on CmsResource objects to prove the lock
* state of a resource may result to incorrect lock states. Use
* {@link org.opencms.file.CmsObject#getLock(String)} to obtain a
* CmsLock object that represents the current lock state of a resource.
*
* @author Thomas Weckert
* @author Andreas Zahner
*
* @version $Revision: 1.28 $
*
* @since 6.0.0
*
* @see org.opencms.file.CmsObject#getLock(org.opencms.file.CmsResource)
* @see org.opencms.lock.CmsLockManager
*/
public class CmsLock implements Cloneable {
/** Indicates that the lock is a common lock and doesn't expire. */
public static final int COMMON = 0;
/** Indicates that the lock is a temporary lock that expires is the user was logged out. */
public static final int TEMPORARY = 1;
/**
* A lock that allows the user to edit the resource抯 structure record,
* it抯 resource record, and its content record.<p>
*
* This lock is assigned to files that are locked via the context menu.
*/
public static final int TYPE_EXCLUSIVE = 4;
/**
* A lock that is inherited from a locked parent folder.
*/
public static final int TYPE_INHERITED = 3;
/**
* A lock that allows the user to edit the resource抯 structure record only,
* but not it抯 resource record nor content record.<p>
*
* This lock is assigned to files if a sibling of the resource record has
* already an exclusive lock.
*/
public static final int TYPE_SHARED_EXCLUSIVE = 2;
/**
* A lock that allows the user to edit the resource抯 structure record only,
* but not it抯 resource record nor content record.<p>
*
* This lock is assigned to resources that already have a shared exclusive lock,
* and then inherit a lock because one if it's parent folders gets locked.
*/
public static final int TYPE_SHARED_INHERITED = 1;
/**
* Reserved for the Null CmsLock.
*/
public static final int TYPE_UNLOCKED = 0;
/** The shared null lock object. */
private static final CmsLock NULL_LOCK = new CmsLock(
"",
CmsUUID.getNullUUID(),
CmsDbUtil.UNKNOWN_ID,
CmsLock.TYPE_UNLOCKED);
/** Flag to indicate if the lock is a temporary lock. */
private int m_mode;
/** The ID of the project where the resource is locked. */
private int m_projectId;
/** The name of the locked resource. */
private String m_resourceName;
/** Saves how the resource is locked. */
private int m_type;
/** The ID of the user who locked the resource. */
private CmsUUID m_userId;
/**
* Constructor for a new Cms lock.<p>
*
* @param resourceName the full resource name including the site root
* @param userId the ID of the user who locked the resource
* @param projectId the ID of the project where the resource is locked
* @param type flag indicating how the resource is locked
*/
public CmsLock(String resourceName, CmsUUID userId, int projectId, int type) {
m_resourceName = resourceName;
m_userId = userId;
m_projectId = projectId;
m_type = type;
m_mode = COMMON;
}
/**
* Constructor for a new Cms lock.<p>
*
* @param resourceName the full resource name including the site root
* @param userId the ID of the user who locked the resource
* @param projectId the ID of the project where the resource is locked
* @param type flag indicating how the resource is locked
* @param mode flag indicating the mode (temporary or common) of a lock
*/
public CmsLock(String resourceName, CmsUUID userId, int projectId, int type, int mode) {
m_resourceName = resourceName;
m_userId = userId;
m_projectId = projectId;
m_type = type;
m_mode = mode;
}
/**
* Returns the shared Null CmsLock.<p>
*
* @return the shared Null CmsLock
*/
public static CmsLock getNullLock() {
return CmsLock.NULL_LOCK;
}
/**
* Compares this lock to the specified object.<p>
*
* @param obj the object to compare to
* @return true if and only if member values of this CmsLock are the same with the compared CmsLock
*/
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof CmsLock) {
CmsLock other = (CmsLock)obj;
return other.m_resourceName.equals(m_resourceName)
&& other.m_userId.equals(m_userId)
&& (other.m_projectId == m_projectId);
}
return false;
}
/**
* Returns the mode of the lock to indicate if the lock is a temporary lock.<p>
*
* @return the temporary mode of the lock
*/
public int getMode() {
return m_mode;
}
/**
* Returns the ID of the project where the resource is currently locked.<p>
*
* @return the ID of the project
*/
public int getProjectId() {
return m_projectId;
}
/**
* Returns the name of the locked resource.<p>
*
* @return the name of the locked resource
*/
public String getResourceName() {
return m_resourceName;
}
/**
* Returns the type about how the resource is locked.<p>
*
* @return the type of the lock
*/
public int getType() {
return m_type;
}
/**
* Returns the ID of the user who currently locked the resource.<p>
*
* @return the ID of the user
*/
public CmsUUID getUserId() {
return m_userId;
}
/**
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return getResourceName().hashCode();
}
/**
* Proves if this CmsLock is the Null CmsLock.<p>
*
* @return true if and only if this CmsLock is the Null CmsLock
*/
public boolean isNullLock() {
return this.equals(CmsLock.NULL_LOCK);
}
/**
* Builds a string representation of the current state.<p>
*
* @see java.lang.Object#toString()
*/
public String toString() {
StringBuffer buf = new StringBuffer();
buf.append("resource: ");
buf.append(this.getResourceName());
buf.append(" type: ");
switch (this.getType()) {
case CmsLock.TYPE_EXCLUSIVE:
buf.append("exclusive");
break;
case CmsLock.TYPE_SHARED_EXCLUSIVE:
buf.append("shared exclusive");
break;
case CmsLock.TYPE_INHERITED:
buf.append("inherited");
break;
case CmsLock.TYPE_SHARED_INHERITED:
buf.append("shared inherited");
break;
default:
buf.append("unlocked");
break;
}
buf.append(" project: ");
buf.append(this.getProjectId());
buf.append(" user: ");
buf.append(this.getUserId());
return buf.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -