File: LDAPMessageQueueImpl.java

package info (click to toggle)
ldapjdk 4.20.0%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,708 kB
  • sloc: ansic: 44,727; java: 39,132; xml: 7,419; sh: 4,185; perl: 3,774; makefile: 1,681; cpp: 979
file content (679 lines) | stat: -rw-r--r-- 22,513 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * ***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (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.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is mozilla.org code.
 *
 * The Initial Developer of the Original Code is
 * Netscape Communications Corporation.
 * Portions created by the Initial Developer are Copyright (C) 2001
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** END LICENSE BLOCK ***** */
package org.ietf.ldap;

import java.io.Serializable;
import java.util.ArrayList;

/**
 * A queue of response messsages from the server. Multiple requests
 * can be multiplexed on the same queue. For synchronous LDAPConnection
 * requests, there will be only one request per queue. For asynchronous
 * LDAPConnection requests, the user can add multiple request to the
 * same queue.
 * 
 * Used as a delegate by LDAResponseListener and LDAPSearchListener
 *
 */
class LDAPMessageQueueImpl implements Serializable, LDAPMessageQueue {

    static final long serialVersionUID = -7163312406176592277L;

    /**
     * Request entry encapsulates request parameters
     */
    private static class RequestEntry {
        int id;
        LDAPConnection connection;
        LDAPConnThread connThread;
        long timeToComplete;
    
        RequestEntry( int id, LDAPConnection connection,
                      LDAPConnThread connThread, int timeLimit ) {
            this.id = id;
            this.connection = connection;
            this.connThread = connThread;
            this.timeToComplete = (timeLimit == 0) ?
                Long.MAX_VALUE : (System.currentTimeMillis() + timeLimit);
        }    
    }

    /**
     * Internal variables
     */
    protected /*LDAPMessage */ ArrayList _messageQueue = new ArrayList(1);
    private /*RequestEntry*/ ArrayList _requestList  = new ArrayList(1);
    private LDAPException _exception; /* For network errors */
    private boolean _asynchOp;
    
    // A flag to indicate if there are time constrained requests 
    private boolean _timeConstrained;

    /**
     * Constructor
     *
     * @param asynchOp <CODE>true</CODE> if the object is used 
     * for asynchronous LDAP operations
     * @see org.ietf.ldap.LDAPAsynchronousConnection
     */   
    LDAPMessageQueueImpl( boolean asynchOp ) {
        _asynchOp = asynchOp;
    }

    /**
     * Returns the count of queued messages
     *
     * @return message count
     */
    public int getMessageCount() {
        return _messageQueue.size();
    }

    /**
     * Returns a list of message IDs for all outstanding requests
     *
     * @return message ID array
     */
    synchronized public int[] getMessageIDs() {
        int[] ids = new int[_requestList.size()];
        for ( int i = 0; i < ids.length; i++ ) {
            RequestEntry entry = (RequestEntry)_requestList.get(i);
            ids[i] = entry.id;
        }
        return ids;
    }    

    /**
     * Blocks until a message is available or until all operations
     * associated with the object have completed or been canceled
     *
     * @return LDAP message or null if there are no more outstanding requests
     * @exception LDAPException Network error exception
     * @exception LDAPInterruptedException The invoking thread was interrupted
     */
    public synchronized LDAPMessage getResponse() throws LDAPException {

        while( true ) {
            if ( !waitForSomething() ) {
                return null; // No outstanding requests
            }

            // Dequeue the first entry
            LDAPMessage msg = (LDAPMessage)_messageQueue.get( 0 );
            _messageQueue.remove( 0 );
            
            // Has the operation completed?
            if ( msg instanceof LDAPResponse ) {
                removeRequest( msg.getMessageID() );
            }
            return msg;
        }
    }

    /**
     * Blocks until a message is available for a particular message ID, or 
     * until all operations associated with the message ID have completed or 
     * been canceled, and returns the response. If there is no outstanding 
     * operation for the message ID (or if it is zero or a negative number), 
     * IllegalArgumentException is thrown.
     *
     * @param msgid A particular message to query for responses available
     * @return a response for an LDAP operation or null if there are no
     * more outstanding requests.
     * @exception LDAPException Network error exception
     * @exception LDAPInterruptedException The invoking thread was interrupted
     */

    public synchronized LDAPMessage getResponse( int msgid )
        throws LDAPException {
            
        if ( !isValidMessageID( msgid ) ) {
            throw new IllegalArgumentException( "Invalid msg ID: " + msgid );
        }

        LDAPMessage msg = null;
        while( ( _requestList.size() != 0 ) &&
               ( _exception == null ) &&
               ( (msg = getMessageForID( msgid, true )) == null ) ) {
            waitForMessage();
        }
        
        // Network exception occurred?
        if ( _exception != null ) {
            LDAPException ex = _exception;
            _exception = null;
            throw ex;
        }   

        // Are there any outstanding requests left?
        if ( _requestList.size() == 0 ) {
            return null; // No outstanding requests
        }
            
        // Has the operation completed?
        if ( msg instanceof LDAPResponse ) {
            removeRequest( msg.getMessageID() );
        }
        
        return msg;
    }

    /**
     * Checks if a response message has been received
     *
     * @return true or false
     */
    public boolean isResponseReceived() {
        return ( _messageQueue.size() != 0 );
    }

    /**
     * Reports true if a response has been received from the server for a 
     * particular message ID. If there is no outstanding operation for the 
     * message ID (or if it is zero or a negative number), 
     * IllegalArgumentException is thrown.
     *
     * @param msgid A particular message to query for responses available
     * @return a flag indicating whether the response message queue is empty
     */
    public boolean isResponseReceived( int msgid ) {
        if ( !isValidMessageID( msgid ) ) {
            throw new IllegalArgumentException( "Invalid msg ID: " + msgid );
        }

        return ( getMessageForID( msgid, false ) != null );
    }

    /**
     * Merge two message queues.
     * Move/append the content from another message queue to this one.
     * 
     * To be used for synchronization of asynchronous LDAP operations where
     * requests are sent by one thread but processed by another one
     * 
     * A client may be implemented in such a way that one thread makes LDAP
     * requests and calls l.getMessageIDs(), while another thread is
     * responsible for
     * processing of responses (call l.getResponse()). Both threads are using
     * the same listener objects. In such a case, a race
     * condition may occur, where a LDAP response message is retrieved and
     * the request terminated (request ID removed) before the first thread
     * has a chance to execute l.getMessageIDs().
     * The proper way to handle this scenario is to create a separate listener
     * for each new request, and after l.getMessageIDs() has been invoked,
     * merge the
     * new request with the existing one.
     * @param mq2 message queue to merge with this one
     */
    public void merge( LDAPMessageQueue mq2 ) {
        
        // Yield just in case the LDAPConnThread is in the process of
        // dispatching a message
        Thread.yield();
        
        synchronized( this ) {
            LDAPMessageQueueImpl mq = (LDAPMessageQueueImpl)mq2;
            synchronized( mq ) {
				ArrayList queue2 = mq.getAllMessages();
                for( int i = 0; i < queue2.size(); i++ ) {
                    _messageQueue.add( queue2.get( i ) );
                }
                if ( mq.getException() != null ) {
                    _exception = mq.getException();
                }
				ArrayList list2 = mq.getAllRequests();
                for( int i = 0; i < list2.size(); i++ ) {
                    RequestEntry entry = (RequestEntry)list2.get( i );
                    _requestList.add( entry );
                    // Notify LDAPConnThread to redirect mq2 designated
					// responses to this mq
                    entry.connThread.changeQueue( entry.id, this );
                }

                mq.reset();
                notifyAll(); // notify for mq2
            }

            notifyAll();  // notify this mq
        }
    }

    /**
     * Gets String representation of the object
     *
     * @return String representation of the object
     */
    synchronized public String toString() {
        StringBuffer sb = new StringBuffer( "LDAPMessageQueueImpl:" );
        sb.append(" requestIDs={");
        for ( int i = 0; i < _requestList.size(); i++ ) {
            if ( i > 0 ) {
                sb.append( "," );
            }
            sb.append( ((RequestEntry)_requestList.get(i)).id );
        }
        sb.append( "} messageCount=" + _messageQueue.size() );
        
        return sb.toString();
    }

    /**
     * Retrieves the next response for a particular message ID, or null
     * if there is none
     *
     * @param msgid A particular message to query for responses available
     * @param remove <code>true</code> if the retrieved message is to be
     * removed from the queue
     * @return a flag indicating whether the response message queue is empty
     */
    synchronized LDAPMessage getMessageForID( int msgid, boolean remove ) {
        LDAPMessage msg = null;
        for ( int i = 0; i < _messageQueue.size(); i++ ) {
            msg = (LDAPMessage)_messageQueue.get(i);
            if ( msg.getMessageID() == msgid ) {
                if ( remove ) {
                    _messageQueue.remove( i );
                }
                break;
            }
        }
        return msg;
    }

    /**
     * Reports if the listener is used for asynchronous LDAP
     * operations
	 *
     * @return asynchronous operation flag.
     * @see org.ietf.ldap.LDAPAsynchronousConnection
     */
    boolean isAsynchOp() {
        return _asynchOp;
    }

    /**
     * Waits for request to complete. This method blocks until a message of
     * type LDAPResponse has been received. Used by synchronous search 
     * with batch size of zero (block until all results are received).
     *
     * @return LDAPResponse message or null if there are no more outstanding
     * requests
     * @exception LDAPException Network error exception
     * @exception LDAPInterruptedException The invoking thread was interrupted
     */
    synchronized LDAPResponse completeRequest() throws LDAPException {
        while ( true ) {
            if ( !waitForSomething() ) {
                return null; // No outstanding requests
            }
            
            // Search for an instance of LDAPResponse
            for ( int i = _messageQueue.size()-1; i >= 0; i-- ) {
                Object msg = _messageQueue.get(i);
                if ( msg instanceof LDAPResponse ) {
                
                    // Dequeue the entry and return
                    _messageQueue.remove( i );
                    return (LDAPResponse)msg;
                }
            }
            // Not found, wait for the next message
        }            
    }

    /**
     * Waits for any message. Processes interrupts and honors
     * time limit if set for any request.
     */
    synchronized private void waitForMessage() throws LDAPException {
        if ( !_timeConstrained ) {
            try {
                wait();
                return;
            } catch (InterruptedException e) {
                throw new LDAPInterruptedException(
                    "Interrupted LDAP operation" );
            }
        }

        /**
         * Perform time constrained wait
         */
        long minTimeToComplete = Long.MAX_VALUE;
        long now = System.currentTimeMillis();
        for ( int i = 0; i < _requestList.size(); i++ ) {
            RequestEntry entry = (RequestEntry)_requestList.get( i );
            
            // time limit exceeded ?
            if ( entry.timeToComplete <= now ) {
				entry.connection.abandon( entry.id );
                throw new LDAPException( "Time to complete operation exceeded",
                                         LDAPException.LDAP_TIMEOUT );
            }                
                
            if ( entry.timeToComplete < minTimeToComplete ) {
                minTimeToComplete = entry.timeToComplete;
            }            
        }
        
        long timeLimit = ( minTimeToComplete == Long.MAX_VALUE ) ?
            0 : ( minTimeToComplete - now );
        
        try {
            _timeConstrained = ( timeLimit != 0 );
            wait( timeLimit );
        } catch ( InterruptedException e ) {
            throw new LDAPInterruptedException( "Interrupted LDAP operation" );
        }
    }

    /**
     * Waits for a message, for the request list to be empty, or for
     * an exception
     *
     * @return <CODE>true</CODE> if the request list is not empty
     * @exception LDAPException Network error
     */
    boolean waitForSomething() throws LDAPException {
        while( (_requestList.size() != 0) &&
               (_exception == null) &&
               (_messageQueue.size() == 0) ) {
            waitForMessage();
        }
        
        // Network exception occurred ?
        if ( _exception != null ) {
            LDAPException ex = _exception;
            _exception = null;
            throw ex;
        }   

        // Are there any outstanding requests left
        if ( _requestList.size() == 0 ) {
            return false; // No outstanding requests
        }

        return true;
    }
            

    /**
     * Retrieves all messages currently in the queue without blocking.
	 * The messages are removed from the queue.
	 *
     * @return vector of messages
     */
    synchronized ArrayList getAllMessages() {
        ArrayList result = _messageQueue;
        _messageQueue = new ArrayList(1);
        return result;
    }
    
    /**
     * Retrieves all requests currently in the queue.
	 * The requests are removed from the queue.
	 *
     * @return vector of requests
     */
    synchronized ArrayList getAllRequests() {
        ArrayList result = _requestList;
        _requestList = new ArrayList(1);
        return result;
    }
    
    /**
     * Queues the LDAP server's response. This causes anyone waiting
     * in getResponse() to unblock.
	 *
     * @param msg response message
     */
    synchronized void addMessage( LDAPMessage msg ) {
        _messageQueue.add(msg);
        
        // Mark conn as bound for asych bind operations
        if ( isAsynchOp() &&
             (msg.getType() == msg.BIND_RESPONSE) ) {
            if ( ((LDAPResponse)msg).getResultCode() == 0 ) {
                getConnection( msg.getMessageID() ).markConnAsBound();
            }
        }
                
        notifyAll();
    }

	/**
	 * Gets a possible exception from the queue
	 *
	 * @return a possibly null exception
	 */
	LDAPException getException() {
		return _exception;
	}

    /**
     * Reports if the message ID is in the request list
     *
     * @param msgid The message ID to validate
     * @return <CODE>true</CODE> if the message ID is in the request list
     */
    synchronized boolean isValidMessageID( int msgid ) {
        return ( getRequestEntry( msgid ) != null );
    }

    /**
     * Signals that a network exception occured while servicing the
     * request.  This exception will be throwm to any thread waiting
     * in getResponse().
	 *
     * @param connThread LDAPConnThread on which the exception occurred
     * @param e exception
     */
    synchronized void setException( LDAPConnThread connThread,
									LDAPException e ) {
        _exception = e;
        removeAllRequests( connThread );
        notifyAll();
    }

    /**
     * Remove all queued messages associated with the request ID.
     * Called when an LDAP operation is abandoned.
     * 
     * Not synchronized as it is private and can be called only by
     * abandon() and removeAllRequests().
     * 
     * @return count of removed messages
     */
    private int removeAllMessages( int id ) {
        int removeCount = 0;
        for ( int i = (_messageQueue.size()-1); i >= 0; i-- ) {
            LDAPMessage msg = (LDAPMessage)_messageQueue.get( i );
            if ( msg.getMessageID() == id ) {
                _messageQueue.remove( i );
                removeCount++;
            }
        }
        return removeCount;
    }   

    /**
     * Resets the state of this object so it can be recycled.
     * Used by LDAPConnection synchronous operations.
	 *
     * @see org.ietf.ldap.LDAPConnection#getResponseListener
     * @see org.ietf.ldap.LDAPConnection#getSearchListener
     */
    void reset() {
        _exception = null;
        _messageQueue.clear();
        _requestList.clear();
        _timeConstrained = false;
    }
    
    /**
     * Returns the connection associated with the specified request id
	 *
     * @param id request id
     * @return connection
     */
    synchronized LDAPConnection getConnection( int id ) {
        RequestEntry entry = getRequestEntry( id );
        if ( entry != null ) {
            return entry.connection;
        }
        return null;
    }

    /**
     * Returns the connection thread associated with the specified request id
     *
     * @param id request id
     * @return connection thread
     */
    synchronized LDAPConnThread getConnThread( int id ) {
        RequestEntry entry = getRequestEntry( id );
        if ( entry != null ) {
            return entry.connThread;
        }
        return null;
    }

    /**
     * Returns the request entry associated with the specified request id
     *
     * @param id request id
     * @return request entry or null
     */
    synchronized RequestEntry getRequestEntry( int id ) {
        for ( int i = 0; i < _requestList.size(); i++ ) {
            RequestEntry entry = (RequestEntry)_requestList.get( i );
            if ( id == entry.id ) {
                return entry;
            }
        }
        return null;

    }

    /**
     * Returns message ID of the last request
     *
     * @return message ID
     */
    synchronized int getMessageID() {
        int reqCnt = _requestList.size();
        if ( reqCnt == 0 ) {
            return -1;
        } else {
            RequestEntry entry =
				(RequestEntry)_requestList.get( reqCnt-1 );
            return entry.id;
        }
    }
    
    /**
     * Registers an LDAP request
     *
     * @param id LDAP request message ID
     * @param connection LDAP Connection for the message ID
     * @param connThread a physical connection to the server
     * @param timeLimit the maximum number of milliseconds to wait for
     * the request to complete 
    */
    synchronized void addRequest( int id, LDAPConnection connection,
								  LDAPConnThread connThread, int timeLimit ) {

        _requestList.add( new RequestEntry( id, connection,
                                            connThread, timeLimit ) );
        if ( timeLimit != 0 ) {
            _timeConstrained = true;
        }
        notifyAll();
    }

    /**
     * Returns the number of outstanding requests.
     * @return outstanding request count.
     */    
    public int getRequestCount() {
        return _requestList.size();
    }
    
    /**
     * Removes the request with the specified ID.
     * Called when a LDAP operation is abandoned (called from
     * LDAPConnThread), or terminated (called by getResponse() when
     * LDAPResponse message is received).
	 *
     * @return flag indicating if the request was removed
     */
    synchronized boolean removeRequest( int id ) {
        for ( int i = 0; i < _requestList.size(); i++ ) {
            RequestEntry entry = (RequestEntry)_requestList.get( i );
            if ( id == entry.id ) {
                _requestList.remove( i );
                removeAllMessages( id );
                notifyAll();
                return true;
            }
        }
        return false;
    }            

    /**
     * Removes all requests associated with the specified connThread.
     * Called when a connThread has a network error.
	 *
     * @return number of removed requests
     */
    synchronized int removeAllRequests( LDAPConnThread connThread ) {
        int removeCount = 0;
        for ( int i = (_requestList.size()-1); i >= 0; i-- ) {
            RequestEntry entry = (RequestEntry)_requestList.get( i );
            if ( connThread == entry.connThread ) {
                _requestList.remove( i );
                removeCount++;
                
                // remove all queued messages as well
                removeAllMessages( entry.id );
            }
        }
        notifyAll();
        return removeCount;
    }   
}