man Net::LDAP::Control::VLV () - LDAPv3 Virtual List View control object

NAME

Net::LDAP::Control::VLV - LDAPv3 Virtual List View control object

SYNOPSIS

 use Net::LDAP;
 use Net::LDAP::Control::VLV;
 use Net::LDAP::Constant qw( LDAP_CONTROL_VLVRESPONSE );

 $ldap = Net::LDAP->new( "ldap.mydomain.eg" );

 # Get the first 20 entries
 $vlv  = Net::LDAP::Control::VLV->new(
           before  => 0,        # No entries from before target entry
           after   => 19,       # 19 entries after target entry
           content => 0,        # List size unknown
           offset  => 1,        # Target entry is the first
         );
 $sort = Net::LDAP::Control::Sort->new( sort => 'cn' );

 @args = ( base     => "o=Ace Industry, c=us",
           scope    => "subtree",
           filter   => "(objectClass=inetOrgPerson)",
           callback => \&process_entry, # Call this sub for each entry
           control  => [ $vlv, $sort ],
 );

 $mesg = $ldap->search( @args );

 # Get VLV response control
 ($resp)  = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
 $vlv->response( $resp );

 # Set the control to get the last 20 entries
 $vlv->end;

 $mesg = $ldap->search( @args );

 # Get VLV response control
 ($resp)  = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
 $vlv->response( $resp );

 # Now get the previous page
 $vlv->scroll_page( -1 );

 $mesg = $ldap->search( @args );

 # Get VLV response control
 ($resp)  = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
 $vlv->response( $resp );

 # Now page with first entry starting with "B" in the middle
 $vlv->before(9);       # Change page to show 9 before
 $vlv->after(1);       # Change page to show 10 after
 $vlv->assert("B");     # assert "B"

 $mesg = $ldap->search( @args );

DESCRIPTION

CWNet::LDAP::Control::VLV provides an interface for the creation and manipulation of objects that represent the Virtual List View as described by draft-ietf-ldapext-ldapv3-vlv-03.txt.

When using a Virtual List View control in a search, it must be accompanied by a sort control. See Net::LDAP::Control::Sort

CONSTRUCTOR ARGUMENTS

In addition to the constructor arguments described in Net::LDAP::Control the following are provided.

after
Set the number of entries the server should return from the list after the target entry.
assert
Set the assertion value user to locate the target entry. This value should be a legal value to compare with the first attribute in the sort control that is passed with the VLV control. The target entry is the first entry in the list which is greater than or equal the assert value.
before
Set the number of entries the server should return from the list before the target entry.
content
Set the number of entries in the list. On the first search this value should be set to zero. On subsequent searches it should be set to the length of the list, as returned by the server in the VLVResponse control.
context
Set the context identifier. On the first search this value should be set to zero. On subsequent searches it should be set to the context value returned by the server in the VLVResponse control.
offset
Set the offset of the target entry.

METHODS

As with Net::LDAP::Control each constructor argument described above is also avaliable as a method on the object which will return the current value for the attribute if called without an argument, and set a new value for the attribute if called with an argument.

The CWoffset and CWassert attributes are mutually exclusive. Setting one or the other will cause previous values set by the other to be forgotten. The CWcontent attribute is also associated with the CWoffset attribute, so setting CWassert will cause any CWcontent value to be forgotten.

end
Set the target entry to the end of the list. This method will change the CWbefore and CWafter attributes so that the target entry is the last in the page.
response VLV_RESPONSE
Set the attributes in the control as per VLV_RESPONSE. VLV_RESPONSE should be a control of type Net::LDAP::Control::VLVResponse returned from the server. CWresponse will populate the CWcontext, CWoffset and CWcontent attibutes of the control with the values from VLV_RESPONSE. Because this sets the CWoffset attribute, any previous setting of the CWassert attribute will be forgotten.
scroll NUM
Move the target entry by NUM entries. A positive NUM will move the target entry towards the end of the list and a negative NUM will move the target entry towards the start of the list. Returns the index of the new target entry, or CWundef if the current target is identified by an assertion. CWscroll may change the CWbefore and CWafter attributes if the scroll value would cause the page to go off either end of the list. But the page size will be maintained.
scroll_page NUM
Scroll by NUM pages. This method simple calculates the current page size and calls CWscroll with CWNUM * $page_size
start
Set the target entry to the start of the list. This method will change the CWbefore and CWafter attributes to the the target entry is the first entry in the page.

SEE ALSO

Net::LDAP, Net::LDAP::Control, Net::LDAP::Control::Sort, Net::LDAP::Control::VLVResponse

AUTHOR

Graham Barr <gbarr@pobox.com>

Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>

COPYRIGHT

Copyright (c) 2000-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.