org.alfresco.repo.admin.RepoServerMgmt.java Source code

Java tutorial

Introduction

Here is the source code for org.alfresco.repo.admin.RepoServerMgmt.java

Source

/*
 * #%L
 * Alfresco Repository
 * %%
 * Copyright (C) 2005 - 2016 Alfresco Software Limited
 * %%
 * This file is part of the Alfresco software. 
 * If the software was purchased under a paid Alfresco license, the terms of 
 * the paid license agreement will prevail.  Otherwise, the software is 
 * provided under the following open source license terms:
 * 
 * Alfresco is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Alfresco is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
 * #L%
 */
package org.alfresco.repo.admin;

import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;

import org.alfresco.repo.security.authentication.AbstractAuthenticationService;
import org.alfresco.repo.transaction.TransactionServiceImpl;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class RepoServerMgmt implements RepoServerMgmtMBean {
    private static final Log log = LogFactory.getLog(RepoServerMgmt.class);

    private TransactionServiceImpl transactionService;

    private AbstractAuthenticationService authenticationService;

    private ClassLoader managedResourceClassLoader = Thread.currentThread().getContextClassLoader();

    public void setTransactionService(TransactionServiceImpl transactionService) {
        this.transactionService = transactionService;
    }

    public void setAuthenticationService(AbstractAuthenticationService authenticationService) {
        this.authenticationService = authenticationService;
    }

    public boolean isReadOnly() {
        return transactionService.isReadOnly();
    }

    // Note: implementing counts as managed attributes (without params) means that
    // certain JMX consoles can monitor

    public int getTicketCountNonExpired() {
        return useManagedResourceClassloader(new Work<Integer>() {
            @Override
            Integer doWork() {
                return authenticationService.countTickets(true);
            }
        });
    }

    public int getTicketCountAll() {
        return useManagedResourceClassloader(new Work<Integer>() {
            @Override
            Integer doWork() {
                return authenticationService.countTickets(false);
            }
        });
    }

    public int getUserCountNonExpired() {
        return useManagedResourceClassloader(new Work<Integer>() {
            @Override
            Integer doWork() {
                return authenticationService.getUsersWithTickets(true).size();
            }
        });
    }

    public int getUserCountAll() {
        return authenticationService.getUsersWithTickets(false).size();
    }

    // Note: implement operations without boolean/Boolean parameter, due to problem with some JMX consoles (e.g. MC4J
    // 1.9 Beta)

    public String[] listUserNamesNonExpired() {
        return useManagedResourceClassloader(new Work<String[]>() {
            @Override
            String[] doWork() {
                Set<String> userSet = authenticationService.getUsersWithTickets(true);
                SortedSet<String> sorted = new TreeSet<String>(userSet);
                return sorted.toArray(new String[0]);
            }
        });
    }

    public String[] listUserNamesAll() {
        return useManagedResourceClassloader(new Work<String[]>() {
            @Override
            String[] doWork() {
                Set<String> userSet = authenticationService.getUsersWithTickets(false);
                SortedSet<String> sorted = new TreeSet<String>(userSet);
                return sorted.toArray(new String[0]);
            }
        });
    }

    public int invalidateTicketsExpired() {
        return useManagedResourceClassloader(new Work<Integer>() {
            @Override
            Integer doWork() {
                int count = authenticationService.invalidateTickets(true);
                log.info("Expired tickets invalidated: " + count);
                return count;
            }
        });
    }

    public int invalidateTicketsAll() {
        return useManagedResourceClassloader(new Work<Integer>() {
            @Override
            Integer doWork() {
                int count = authenticationService.invalidateTickets(false);
                log.info("All tickets invalidated: " + count);
                return count;
            }
        });
    }

    public void invalidateUser(final String username) {
        useManagedResourceClassloader(new Work<Void>() {
            @Override
            Void doWork() {
                authenticationService.invalidateUserSession(username);
                log.info("User invalidated: " + username);
                return null;
            }
        });
    }

    public int getMaxUsers() {
        return authenticationService.getMaxUsers();
    }

    /**
     * TODO: This is the same as the classloader related portion of the {@link MBeanSupport} class
     * in the enterprise repository. Review whether this code should be factored out somewhere common.
     * 
     * This method allows a unit of work to be executed under the same class loader used
     * to load this managed reosource.
     * 
     * @param work The unit of work to perform.
     * @return Parameterized return type.
     */
    private <T> T useManagedResourceClassloader(Work<T> work) {
        ClassLoader origClassLoader = Thread.currentThread().getContextClassLoader();
        try {
            Thread.currentThread().setContextClassLoader(managedResourceClassLoader);
            return work.doWork();
        } finally {
            Thread.currentThread().setContextClassLoader(origClassLoader);
        }
    }

    private abstract static class Work<T> {
        abstract T doWork();
    }
}