You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2008/06/08 00:58:47 UTC

svn commit: r664410 - /directory/apacheds/branches/bigbang/protocol-newldap/src/main/java/org/apache/directory/server/newldap/LdapSession.java

Author: akarasulu
Date: Sat Jun  7 15:58:47 2008
New Revision: 664410

URL: http://svn.apache.org/viewvc?rev=664410&view=rev
Log:
Adding new LdapSession class for use by the LDAP protocol provider

Added:
    directory/apacheds/branches/bigbang/protocol-newldap/src/main/java/org/apache/directory/server/newldap/LdapSession.java

Added: directory/apacheds/branches/bigbang/protocol-newldap/src/main/java/org/apache/directory/server/newldap/LdapSession.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/protocol-newldap/src/main/java/org/apache/directory/server/newldap/LdapSession.java?rev=664410&view=auto
==============================================================================
--- directory/apacheds/branches/bigbang/protocol-newldap/src/main/java/org/apache/directory/server/newldap/LdapSession.java (added)
+++ directory/apacheds/branches/bigbang/protocol-newldap/src/main/java/org/apache/directory/server/newldap/LdapSession.java Sat Jun  7 15:58:47 2008
@@ -0,0 +1,158 @@
+/*
+ *   Licensed to the Apache Software Foundation (ASF) under one
+ *   or more contributor license agreements.  See the NOTICE file
+ *   distributed with this work for additional information
+ *   regarding copyright ownership.  The ASF licenses this file
+ *   to you under the Apache License, Version 2.0 (the
+ *   "License"); you may not use this file except in compliance
+ *   with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing,
+ *   software distributed under the License is distributed on an
+ *   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ *   KIND, either express or implied.  See the License for the
+ *   specific language governing permissions and limitations
+ *   under the License.
+ *
+ */
+package org.apache.directory.server.newldap;
+
+
+import java.util.Map;
+import java.util.concurrent.ConcurrentHashMap;
+
+import org.apache.directory.server.core.CoreSession;
+import org.apache.directory.shared.ldap.message.AbandonRequest;
+import org.apache.directory.shared.ldap.message.AbandonableRequest;
+import org.apache.mina.common.IoSession;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+
+/**
+ * An object representing an LdapSession.  Any connection established with the
+ * LDAP server forms a session.
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$, $Date$
+ */
+public class LdapSession
+{
+    private static final Logger LOG = LoggerFactory.getLogger( LdapSession.class );
+    private static boolean IS_DEBUG = LOG.isDebugEnabled();
+    
+    private final String outstandingLock;
+    private final IoSession ioSession;
+    private CoreSession coreSession;
+    private Map<Integer, AbandonableRequest> outstandingRequests;
+    
+ 
+    /**
+     * Creates a new instance of LdapSession associated with the underlying
+     * connection (MINA IoSession) to the server.
+     *
+     * @param ioSession the MINA session associated this LdapSession
+     */
+    public LdapSession( IoSession ioSession )
+    {
+        this.ioSession = ioSession;
+        this.outstandingLock = "OutstandingRequestLock: " + ioSession.toString();
+        this.outstandingRequests = new ConcurrentHashMap<Integer, AbandonableRequest>();
+    }
+    
+    
+    /**
+     * Gets the MINA IoSession associated with this LdapSession.
+     *
+     * @return the MINA IoSession 
+     */
+    public IoSession getIoSession()
+    {
+        return ioSession;
+    }
+    
+    
+    /**
+     * Gets the logical core DirectoryService session associated with this 
+     * LdapSession.
+     *
+     * @return the logical core DirectoryService session
+     */
+    public CoreSession getCoreSession()
+    {
+        return coreSession;
+    }
+    
+    
+    /**
+     * Sets the logical core DirectoryService session. 
+     * 
+     * @param coreSession the logical core DirectoryService session
+     */
+    public void setCoreSession( CoreSession coreSession )
+    {
+        this.coreSession = coreSession;
+    }
+    
+
+    public boolean abandonOutstandingRequest( AbandonRequest abandonRequest )
+    {
+        AbandonableRequest request = null;
+        
+        synchronized ( outstandingLock )
+        {
+            request = outstandingRequests.remove( abandonRequest.getMessageId() );
+        }
+
+        if ( request == null )
+        {
+            LOG.warn( "AbandonableRequest not found in outstandingRequests: {}", abandonRequest );
+            return false;
+        }
+        
+        if ( request.isAbandoned() )
+        {
+            LOG.warn( "AbandonableRequest has already been abandoned: {}", abandonRequest );
+            return false;
+        }
+
+        request.abandon();
+        
+        if ( IS_DEBUG )
+        {
+            LOG.debug( "AbandonRequest successful: {}", abandonRequest );
+        }
+        
+        return true;
+    }
+
+    
+    /**
+     * Registers an outstanding request which can be abandoned later.
+     *
+     * @param request an outstanding request that can be abandoned
+     */
+    public void registerOutstandingRequest( AbandonableRequest request )
+    {
+        synchronized( outstandingLock )
+        {
+            outstandingRequests.put( request.getMessageId(), request );
+        }
+    }
+
+    
+    /**
+     * Unregisters an outstanding request.
+     *
+     * @param request the request to unregister
+     */
+    public void unregisterOutstandingRequest( AbandonableRequest request )
+    {
+        synchronized( outstandingLock )
+        {
+            outstandingRequests.remove( request.getMessageId() );
+        }
+    }
+}