You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2012/11/29 01:28:42 UTC

svn commit: r1415009 - /directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java

Author: elecharny
Date: Thu Nov 29 00:28:42 2012
New Revision: 1415009

URL: http://svn.apache.org/viewvc?rev=1415009&view=rev
Log:
Added a data structure to hold a SearchRequest, a cursor and the time and size limit. It will be used to manage the messageSent events and eventually send the next results to the client.

Added:
    directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java   (with props)

Added: directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java?rev=1415009&view=auto
==============================================================================
--- directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java (added)
+++ directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java Thu Nov 29 00:28:42 2012
@@ -0,0 +1,172 @@
+/*
+ *  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.core.api;
+
+import org.apache.directory.shared.ldap.model.cursor.Cursor;
+import org.apache.directory.shared.ldap.model.entry.Entry;
+import org.apache.directory.shared.ldap.model.message.SearchRequest;
+
+/**
+ * A container storing a SearchRequest being processed, and the associated 
+ * size and time limit.
+ * <br/>
+ * We use an instance of this class for each new searchRequest, and we discard
+ * it when the SearchRequest is completed or abandonned.
+ * 
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
+public class SearchRequestContainer
+{
+    /** The SearchRequest */
+    private SearchRequest searchRequest;
+    
+    /** The maximum number of entries we can send */
+    private long sizeLimit;
+    
+    /** The number of entries already sent */
+    private int count;
+    
+    /** The time limit */
+    private long timeLimit;
+    
+    /** The SearchRequest reception date */
+    private long initialTime;
+    
+    /** The Cursor associated with the searchRequest */
+    private Cursor<Entry> cursor;
+    
+    
+    /**
+     * Create an instance of the container with the SearchRequest and its limit.
+     * 
+     * @param searchRequest The SearchRequest instance
+     * @param sizeLimit The size limit
+     * @param timeLimit The time limit
+     */
+    public SearchRequestContainer( SearchRequest searchRequest, Cursor<Entry> cursor )
+    {
+        this.searchRequest = searchRequest;
+        this.cursor = cursor;
+        this.sizeLimit = searchRequest.getSizeLimit();
+        this.timeLimit = searchRequest.getTimeLimit() * 1000L; // Time limit is in seconds. Translate that to milliseconds
+        
+        // Initialize the count and current time
+        count = 0;
+        initialTime = System.currentTimeMillis();
+    }
+    
+
+    /**
+     * @return the searchRequest
+     */
+    public SearchRequest getSearchRequest()
+    {
+        return searchRequest;
+    }
+    
+
+    /**
+     * @return the sizeLimit
+     */
+    public long getSizeLimit()
+    {
+        return sizeLimit;
+    }
+    
+
+    /**
+     * @return the count
+     */
+    public int getCount()
+    {
+        return count;
+    }
+    
+
+    /**
+     * Check the size limit
+     * 
+     * @return true if we have reached the size limit
+     */
+    public boolean isSizeLimitReached()
+    {
+        return ( sizeLimit > 0 ) && ( count >= sizeLimit );
+    }
+    
+
+    /**
+     * @param count the count to set
+     */
+    public void increment()
+    {
+        this.count++;
+    }
+    
+
+    /**
+     * @return the timeLimit
+     */
+    public int getTimeLimit()
+    {
+        return (int)(timeLimit/1000L); // Convert it back to seconds
+    }
+    
+    
+    /**
+     * Check if we have reached the time limit
+     * 
+     * @return true if we have reached the time limit
+     */
+    public boolean isTimeLimitReached()
+    {
+        long currentTime = System.currentTimeMillis();
+        
+        return ( timeLimit > 0 ) && ( initialTime + timeLimit < currentTime );
+    }
+    
+
+    /**
+     * @return the initialTime
+     */
+    public long getInitialTime()
+    {
+        return initialTime;
+    }
+    
+    
+    /**
+     * @return The cursor associated with the SearchRequest
+     */
+    public Cursor<Entry> getCursor()
+    {
+        return cursor;
+    }
+
+
+    /**
+     * @see Object#toString()
+     */
+    public String toString()
+    {
+        long elapsed = System.currentTimeMillis() - initialTime;
+        
+        return "SRContainer : <" + searchRequest.getMessageId() + ", nbSent : " + count + ", elapsed : " + elapsed + ">";
+    }
+}

Propchange: directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/api/SearchRequestContainer.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain