Мне удалось получить нумерацию страниц, как описано здесь . Проблема в том, что мне нужно предоставить API, который будет выглядеть следующим образом: getUsers(pageSize, pageNumber)
, который не совсем соответствует тому, как JNDI / LDAP выполняет пейджинг (с файлом cookie, который вы передаете каждый раз методу поиска). Код выглядит так:
private NamingEnumeration ldapPagedSearch(String filter, int pageSize, int pageNumber){
InitialLdapContext ctx = getInitialContext();
//TODO: get the id also, need to spec it in UI
// Create the search controls
SearchControls searchCtls = new SearchControls();
searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
//keep a session
byte[] cookie = null;
//Request the paged results control
Control[] ctls = new Control[]{new PagedResultsControl(pageSize, true)};
ctx.setRequestControls(ctls);
//Specify the search scope
NamingEnumeration results = null;
int currentPage = 1;
do {
results = ctx.search(getConfiguration().get(BASEDN_KEY), filter, searchCtls);
//we got to the right page, return this page
if(currentPage == pageNumber) {
return results;
}
// loop through this page, because we cannot get a proper cookie otherwise
// WARN: this could be a problem of performance
while (results.hasMore()) results.next();
// examine the paged results control response
Control[] controls = ctx.getResponseControls();
if (controls != null) {
for (Control control : controls) {
if (control instanceof PagedResultsResponseControl) {
cookie = ((PagedResultsResponseControl) control).getCookie();
}
}
}
// pass the cookie back to the server for the next page
ctx.setRequestControls(new Control[]{new PagedResultsControl(pageSize, cookie, Control.CRITICAL) });
//increment page
currentPage++;
} while (cookie != null);
ctx.close();
//if we get here, means it is an empty set(consumed by the inner loop)
return results;
}
Кажется, мне нужно перебрать все страницы, чтобы получить нужную страницу. Более того, мне нужно перебрать все записи на странице, чтобы получить доступ к следующей странице.
Есть ли лучший способ? Я беспокоюсь о проблемах с производительностью.