org.apache.james.mailbox.caching.CachingMailboxMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apache-james-mailbox-caching
Show all versions of apache-james-mailbox-caching
JAMES-2703 This maven module is deprecated and will be removed straight after upcoming James 3.4.0 release, unless it finds a maintainer.
This module lacks tests and is not used in James products hence the choice to deprecate it.
/****************************************************************
* 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.james.mailbox.caching;
import java.util.List;
import org.apache.james.mailbox.acl.ACLDiff;
import org.apache.james.mailbox.exception.MailboxException;
import org.apache.james.mailbox.exception.MailboxNotFoundException;
import org.apache.james.mailbox.model.MailboxACL;
import org.apache.james.mailbox.model.MailboxACL.Right;
import org.apache.james.mailbox.model.MailboxId;
import org.apache.james.mailbox.model.MailboxPath;
import org.apache.james.mailbox.store.mail.MailboxMapper;
import org.apache.james.mailbox.store.mail.model.Mailbox;
/**
* A MailboxMapper implementation that uses a MailboxByPathCache to cache the information
* from the underlying MailboxMapper
*
*/
public class CachingMailboxMapper implements MailboxMapper {
private final MailboxMapper underlying;
private final MailboxByPathCache cache;
public CachingMailboxMapper(MailboxMapper underlying, MailboxByPathCache cache) {
this.underlying = underlying;
this.cache = cache;
}
@Override
public void endRequest() {
underlying.endRequest();
}
@Override
public T execute(Transaction transaction) throws MailboxException {
return underlying.execute(transaction);
}
@Override
public MailboxId save(Mailbox mailbox) throws MailboxException {
invalidate(mailbox);
return underlying.save(mailbox);
}
@Override
public void delete(Mailbox mailbox) throws MailboxException {
invalidate(mailbox);
underlying.delete(mailbox);
}
@Override
public Mailbox findMailboxByPath(MailboxPath mailboxName)
throws MailboxException, MailboxNotFoundException {
try {
return cache.findMailboxByPath(mailboxName, underlying);
} catch (MailboxNotFoundException e) {
cache.invalidate(mailboxName);
throw e;
}
}
@Override
public Mailbox findMailboxById(MailboxId mailboxId)
throws MailboxException {
// TODO possible to meaningfully cache it?
return underlying.findMailboxById(mailboxId);
}
@Override
public List findMailboxWithPathLike(MailboxPath mailboxPath)
throws MailboxException {
// TODO possible to meaningfully cache it?
return underlying.findMailboxWithPathLike(mailboxPath);
}
@Override
public boolean hasChildren(Mailbox mailbox, char delimiter)
throws MailboxException, MailboxNotFoundException {
// TODO possible to meaningfully cache it?
return underlying.hasChildren(mailbox, delimiter);
}
@Override
public List list() throws MailboxException {
// TODO possible to meaningfully cache it? is it used at all?
return underlying.list();
}
@Override
public ACLDiff updateACL(Mailbox mailbox, MailboxACL.ACLCommand mailboxACLCommand) throws MailboxException {
MailboxACL oldACL = mailbox.getACL();
MailboxACL newACL = mailbox.getACL().apply(mailboxACLCommand);
mailbox.setACL(newACL);
return ACLDiff.computeDiff(oldACL, newACL);
}
@Override
public ACLDiff setACL(Mailbox mailbox, MailboxACL mailboxACL) throws MailboxException {
MailboxACL oldMailboxAcl = mailbox.getACL();
mailbox.setACL(mailboxACL);
return ACLDiff.computeDiff(oldMailboxAcl, mailboxACL);
}
private void invalidate(Mailbox mailbox) {
cache.invalidate(mailbox);
}
@Override
public List findNonPersonalMailboxes(String userName, Right right) throws MailboxException {
return underlying.findNonPersonalMailboxes(userName, right);
}
}