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

org.pentaho.di.trans.steps.mailinput.BatchFolderIterator Maven / Gradle / Ivy

The newest version!
/*! ******************************************************************************
 *
 * Pentaho Data Integration
 *
 * Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
 *
 *******************************************************************************
 *
 * Licensed 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.pentaho.di.trans.steps.mailinput;

import java.util.Iterator;

import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.MessagingException;

public class BatchFolderIterator implements Iterator {

  private static final int SIZE_ERR = -1;

  private int start;
  private int end;

  private int batchSize;

  private int batchFirst;
  private int batchLast;

  private Folder folder;

  private Message[] messages;
  private int buffIndex;

  private int msgCount;

  public BatchFolderIterator( Folder folder, int batchSize ) {
    this( folder, batchSize, null, null );
  }

  public BatchFolderIterator( Folder folder, Integer batchSize, Integer start, Integer end ) {
    this.folder = folder;
    try {
      this.msgCount = folder.getMessageCount();
    } catch ( MessagingException e ) {
      this.msgCount = SIZE_ERR;
    }
    this.batchSize = ( batchSize == null ) ? msgCount : batchSize;

    this.start = ( start == null ) ? 1 : start;
    this.end = ( end == null ) ? msgCount : end;

    this.batchFirst = this.start;
    this.batchLast = this.start - 1;

    messages = new Message[0];
    // if (!getNextBatch() || msgCount == SIZE_ERR) throw new RuntimeException("TODO:"); //TODO

  }

  public Message getMessage() {
    return null;
  }

  // TODO:search
  @Override
  public boolean hasNext() {
    return buffIndex < Math.min( messages.length, end ) || getNextBatch();
  }

  private boolean getNextBatch() {
    if ( batchLast >= end ) {
      return false;
    } else {
      batchFirst = batchLast + 1;
      batchLast = Math.min( batchFirst + batchSize - 1, end );
      if ( batchLast < batchFirst ) {
        return false;
      }
      try {
        messages = folder.getMessages( batchFirst, batchLast );
        buffIndex = 0;
        return messages != null && messages.length > 0;
      } catch ( MessagingException e ) {
        return false;
      }
    }
  }

  @Override
  public Message next() {
    return messages[buffIndex++];
  }

  /**
   * Not implemented.
   *
   * @throws UnsupportedOperationException
   */
  @Override
  public void remove() {
    throw new UnsupportedOperationException();
  }

  public String getFolderName() {
    return folder != null ? folder.getName() : null;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy