blob: a334b2a6a61bf37716606f8ec59abbc986add00a [file] [log] [blame]
/*
* 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.jackrabbit.oak.security.user;
import java.util.Iterator;
import javax.jcr.RangeIterator;
import javax.jcr.RepositoryException;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
import com.google.common.collect.Iterators;
import org.apache.jackrabbit.api.security.user.Authorizable;
import org.apache.jackrabbit.oak.spi.security.user.AuthorizableType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* AuthorizableIterator...
*/
final class AuthorizableIterator implements Iterator {
private static final Logger log = LoggerFactory.getLogger(AuthorizableIterator.class);
private final Iterator<Authorizable> authorizables;
private final long size;
static AuthorizableIterator create(Iterator<String> authorizableOakPaths,
UserManagerImpl userManager,
AuthorizableType authorizableType) {
Iterator it = Iterators.transform(authorizableOakPaths, new PathToAuthorizable(userManager, authorizableType));
long size = getSize(authorizableOakPaths);
return new AuthorizableIterator(Iterators.filter(it, Predicates.notNull()), size);
}
private AuthorizableIterator(Iterator<Authorizable> authorizables, long size) {
this.authorizables = authorizables;
this.size = size;
}
//-----------------------------------------------------------< Iterator >---
@Override
public boolean hasNext() {
return authorizables.hasNext();
}
@Override
public Authorizable next() {
return authorizables.next();
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
//--------------------------------------------------------------------------
long getSize() {
return size;
}
//--------------------------------------------------------------------------
private static long getSize(Iterator it) {
if (it instanceof RangeIterator) {
return ((RangeIterator) it).getSize();
} else {
return -1;
}
}
private static class PathToAuthorizable implements Function<String, Authorizable> {
private final UserManagerImpl userManager;
private final Predicate predicate;
public PathToAuthorizable(UserManagerImpl userManager, AuthorizableType type) {
this.userManager = userManager;
this.predicate = new AuthorizableTypePredicate(type);
}
@Override
public Authorizable apply(String oakPath) {
try {
Authorizable a = userManager.getAuthorizableByOakPath(oakPath);
if (predicate.apply(a)) {
return a;
}
} catch (RepositoryException e) {
log.debug("Failed to access authorizable " + oakPath);
}
return null;
}
}
private static class AuthorizableTypePredicate implements Predicate<Authorizable> {
private final AuthorizableType authorizableType;
AuthorizableTypePredicate(AuthorizableType authorizableType) {
this.authorizableType = authorizableType;
}
@Override
public boolean apply(Authorizable authorizable) {
return authorizableType.isType(authorizable);
}
}
}