All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.james.mailbox.jpa.mail.MessageUtils Maven / Gradle / Ivy

The newest version!
/****************************************************************
 * 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.jpa.mail;

import java.util.Iterator;
import java.util.List;

import javax.mail.Flags;

import org.apache.james.mailbox.MessageUid;
import org.apache.james.mailbox.ModSeq;
import org.apache.james.mailbox.exception.MailboxException;
import org.apache.james.mailbox.model.Mailbox;
import org.apache.james.mailbox.model.UpdatedFlags;
import org.apache.james.mailbox.store.FlagsUpdateCalculator;
import org.apache.james.mailbox.store.mail.ModSeqProvider;
import org.apache.james.mailbox.store.mail.UidProvider;
import org.apache.james.mailbox.store.mail.model.MailboxMessage;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;

class MessageUtils {
    private final UidProvider uidProvider;
    private final ModSeqProvider modSeqProvider;

    MessageUtils(UidProvider uidProvider, ModSeqProvider modSeqProvider) {
        Preconditions.checkNotNull(uidProvider);
        Preconditions.checkNotNull(modSeqProvider);

        this.uidProvider = uidProvider;
        this.modSeqProvider = modSeqProvider;
    }

    void enrichMessage(Mailbox mailbox, MailboxMessage message) throws MailboxException {
        message.setUid(nextUid(mailbox));
        message.setModSeq(nextModSeq(mailbox));
    }

    MessageChangedFlags updateFlags(Mailbox mailbox, FlagsUpdateCalculator flagsUpdateCalculator,
                                    Iterator messages) throws MailboxException {
        ImmutableList.Builder updatedFlags = ImmutableList.builder();
        ImmutableList.Builder changedFlags = ImmutableList.builder();

        ModSeq modSeq = nextModSeq(mailbox);

        while (messages.hasNext()) {
            MailboxMessage member = messages.next();
            Flags originalFlags = member.createFlags();
            member.setFlags(flagsUpdateCalculator.buildNewFlags(originalFlags));
            Flags newFlags = member.createFlags();
            if (UpdatedFlags.flagsChanged(originalFlags, newFlags)) {
                member.setModSeq(modSeq);
                changedFlags.add(member);
            }

            updatedFlags.add(UpdatedFlags.builder()
                .uid(member.getUid())
                .modSeq(member.getModSeq())
                .newFlags(newFlags)
                .oldFlags(originalFlags)
                .build());
        }

        return new MessageChangedFlags(updatedFlags.build().iterator(), changedFlags.build());
    }

    @VisibleForTesting
    MessageUid nextUid(Mailbox mailbox) throws MailboxException {
        return uidProvider.nextUid(mailbox);
    }

    @VisibleForTesting
    ModSeq nextModSeq(Mailbox mailbox) throws MailboxException {
        return modSeqProvider.nextModSeq(mailbox);
    }
    
    static class MessageChangedFlags {
        private final Iterator updatedFlags;
        private final List changedFlags;

        public MessageChangedFlags(Iterator updatedFlags, List changedFlags) {
            this.updatedFlags = updatedFlags;
            this.changedFlags = changedFlags;
        }

        public Iterator getUpdatedFlags() {
            return updatedFlags;
        }

        public List getChangedFlags() {
            return changedFlags;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy