All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.filesys.server.locking.OpLockManager Maven / Gradle / Ivy

Go to download

Java file server with SMB, FTP/FTPS and NFS support, virtual filesystems, database filesystems

There is a newer version: 1.4.0
Show newest version
/*
 * Copyright (C) 2006-2010 Alfresco Software Limited.
 *
 * This file is part of Alfresco
 *
 * Alfresco 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 3 of the License, or
 * (at your option) any later version.
 *
 * Alfresco 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.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Alfresco. If not, see .
 */

package org.filesys.server.locking;

import java.io.IOException;

import org.filesys.server.filesys.DeferFailedException;
import org.filesys.server.filesys.ExistingOpLockException;
import org.filesys.server.filesys.NetworkFile;
import org.filesys.smb.OpLockType;
import org.filesys.smb.server.SMBSrvPacket;
import org.filesys.smb.server.SMBSrvSession;

/**
 * OpLock Manager Interface
 *
 * 

An oplock manager implementationis used to store oplock details for the SMB protocol handler. * * @author gkspencer */ public interface OpLockManager { /** * Check if there is an oplock for the specified path, return the oplock type. * * @param path String * @return OpLockType */ public OpLockType hasOpLock(String path); /** * Return the oplock details for a path, or null if there is no oplock on the path * * @param path String * @return OpLockDetails */ public OpLockDetails getOpLockDetails(String path); /** * Grant an oplock, store the oplock details * * @param path String * @param oplock OpLockDetails * @param netFile NetworkFile * @return boolean * @throws ExistingOpLockException If the file already has an oplock */ public boolean grantOpLock(String path, OpLockDetails oplock, NetworkFile netFile) throws ExistingOpLockException; /** * Request an oplock break on the specified oplock * * @param path String * @param oplock OpLockDetails * @param sess SMBSrvSession * @param pkt SMBSrvPacket * @throws IOException I/O error * @throws DeferFailedException Failed to defer session processing */ public void requestOpLockBreak(String path, OpLockDetails oplock, SMBSrvSession sess, SMBSrvPacket pkt) throws IOException, DeferFailedException; /** * Release an oplock * * @param path String */ public void releaseOpLock(String path); /** * Change an oplock type * * @param oplock OpLockDetails * @param newTyp OpLockType */ public void changeOpLockType(OpLockDetails oplock, OpLockType newTyp); /** * Cancel an oplock break timer * * @param path String */ public void cancelOplockTimer(String path); /** * Check for expired oplock break requests * * @return int */ public int checkExpiredOplockBreaks(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy