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

org.jodconverter.LocalConverter Maven / Gradle / Ivy

Go to download

Module required in order to process local conversions for the Java OpenDocument Converter (JODConverter) project.

There is a newer version: 4.4.8
Show newest version
/*
 * Copyright 2004 - 2012 Mirko Nasato and contributors
 *           2016 - 2017 Simon Braconnier and contributors
 *
 * This file is part of JODConverter - Java OpenDocument Converter.
 *
 * 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.jodconverter;

import java.util.HashMap;
import java.util.Map;

import org.apache.commons.lang3.Validate;

import org.jodconverter.document.DocumentFormatRegistry;
import org.jodconverter.filter.DefaultFilterChain;
import org.jodconverter.filter.Filter;
import org.jodconverter.filter.FilterChain;
import org.jodconverter.job.AbstractConversionJob;
import org.jodconverter.job.AbstractConversionJobWithSourceFormatUnspecified;
import org.jodconverter.job.AbstractConverter;
import org.jodconverter.job.AbstractSourceDocumentSpecs;
import org.jodconverter.job.AbstractTargetDocumentSpecs;
import org.jodconverter.office.InstalledOfficeManagerHolder;
import org.jodconverter.office.OfficeException;
import org.jodconverter.office.OfficeManager;
import org.jodconverter.task.LocalConversionTask;

/**
 * Default implementation of a document converter. This implementation will use a provided office
 * manager to perform document conversion. The provided office manager must be started in order to
 * be used by this converter.
 *
 * @see DocumentConverter
 * @see OfficeManager
 */
public class LocalConverter extends AbstractConverter {

  private Map loadProperties;
  private FilterChain filterChain;
  private final Map storeProperties;

  /**
   * Creates a new builder instance.
   *
   * @return A new builder instance.
   */
  public static Builder builder() {
    return new Builder();
  }

  /**
   * Creates a new {@link LocalConverter} using with default configuration. The {@link
   * OfficeManager} that will be used is the one holden by the {@link InstalledOfficeManagerHolder}
   * class, if any.
   *
   * @return A {@link LocalConverter} with default configuration.
   */
  public static LocalConverter make() {

    return builder().build();
  }

  /**
   * Creates a new {@link LocalConverter} using the specified {@link OfficeManager} with default
   * configuration.
   *
   * @param officeManager The {@link OfficeManager} the converter will use to convert document.
   * @return A {@link LocalConverter} with default configuration.
   */
  public static LocalConverter make(final OfficeManager officeManager) {
    return builder().officeManager(officeManager).build();
  }

  private LocalConverter(
      final OfficeManager officeManager,
      final DocumentFormatRegistry formatRegistry,
      final Map loadProperties,
      final FilterChain filterChain,
      final Map storeProperties) {
    super(officeManager, formatRegistry);

    this.loadProperties = loadProperties;
    this.filterChain = filterChain;
    this.storeProperties = storeProperties;
  }

  @Override
  protected AbstractConversionJobWithSourceFormatUnspecified convert(
      final AbstractSourceDocumentSpecs source) {

    return new LocalConversionJobWithSourceFormatUnspecified(source);
  }

  /**
   * Sets, for this converter, the properties to use when we load (open) a document before a
   * conversion, regardless the input type of the document.
   *
   * 

This function should be called only by OfficeDocumentConverter for backward compatibility. * * @param loadProperties The default properties to apply when loading a document. * @return This converter instance. */ LocalConverter setLoadProperties(final Map loadProperties) { if (this.loadProperties == null) { this.loadProperties = new HashMap<>(); } this.loadProperties.clear(); this.loadProperties.putAll(loadProperties); return this; } /** * Sets, for this converter, the whole filter chain to apply when converting a document. A * FilterChain is used to modify the document before the conversion (after it has been loaded). * Filters are applied in the same order they appear in the chain. * *

This function should be called only by OfficeDocumentConverter for backward compatibility. * * @param filterChain The FilterChain to be applied after the document is loaded and before it is * stored (converted) in the new document format. * @return This converter instance. */ LocalConverter setFilterChain(final FilterChain filterChain) { this.filterChain = filterChain; return this; } private class LocalConversionJobWithSourceFormatUnspecified extends AbstractConversionJobWithSourceFormatUnspecified { private LocalConversionJobWithSourceFormatUnspecified( final AbstractSourceDocumentSpecs source) { super(source, LocalConverter.this.officeManager, LocalConverter.this.formatRegistry); } @Override protected AbstractConversionJob to(final AbstractTargetDocumentSpecs target) { return new LocalConversionJob(source, target); } } private class LocalConversionJob extends AbstractConversionJob { private LocalConversionJob( final AbstractSourceDocumentSpecs source, final AbstractTargetDocumentSpecs target) { super(source, target); } @Override public void doExecute() throws OfficeException { // Create a default conversion task and execute it final LocalConversionTask task = new LocalConversionTask(source, target, loadProperties, filterChain, storeProperties); officeManager.execute(task); } } /** * A builder for constructing a {@link LocalConverter}. * * @see LocalConverter */ public static final class Builder extends AbstractConverterBuilder { private Map loadProperties; private FilterChain filterChain; private Map storeProperties; // Private ctor so only LocalConverter can create an instance of this builder. private Builder() { super(); } /** * Creates the converter that is specified by this builder. * * @return The converter that is specified by this builder. */ public LocalConverter build() { // Create the converter return new LocalConverter( officeManager, formatRegistry, loadProperties, filterChain, storeProperties); } /** * Specifies the load properties, for this converter, that will be applied when a document is * loaded during a conversion task, regardless of the input format of the document. * *

Using this function will replace the default load properties map. * * @param properties A map containing the properties to apply when loading a document. * @return This builder instance. */ public Builder loadProperties(final Map properties) { this.loadProperties = properties; return this; } /** * Specifies the filters to apply when converting a document. Filter may be used to modify the * document before the conversion (after it has been loaded). Filters are applied in the same * order they appear as arguments. * * @param filters The filters to be applied after the document is loaded and before it is stored * (converted) in the new document format. * @return This builder instance. */ public Builder filterChain(final Filter... filters) { Validate.notEmpty(filters); this.filterChain = new DefaultFilterChain(filters); return this; } /** * Specifies the whole filter chain to apply when converting a document. A FilterChain is used * to modify the document before the conversion (after it has been loaded). Filters are applied * in the same order they appear in the chain. * * @param filterChain The FilterChain to be applied after the document is loaded and before it * is stored (converted) in the new document format. * @return This builder instance. */ public Builder filterChain(final FilterChain filterChain) { Validate.notNull(filterChain); this.filterChain = filterChain; return this; } /** * Specifies the properties that will be applied when a document is stored during the conversion * task. * *

Custom properties are applied after the store properties of the target {@link * org.jodconverter.document.DocumentFormat}. * * @param properties A map containing the custom properties to apply when storing a document. * @return This builder instance. */ public Builder storeProperties(final Map properties) { this.storeProperties = properties; return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy