Package org.pentaho.reporting.designer.core

Source Code of org.pentaho.reporting.designer.core.ReportDesignerBoot

/*!
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program 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.
*
* Copyright (c) 2002-2013 Pentaho Corporation..  All rights reserved.
*/

package org.pentaho.reporting.designer.core;

import org.pentaho.reporting.designer.core.settings.ProxySettings;
import org.pentaho.reporting.libraries.base.boot.AbstractBoot;
import org.pentaho.reporting.libraries.base.boot.PackageManager;
import org.pentaho.reporting.libraries.base.config.Configuration;
import org.pentaho.reporting.libraries.base.config.ModifiableConfiguration;
import org.pentaho.reporting.libraries.base.versioning.ProjectInformation;
import org.pentaho.reporting.libraries.designtime.swing.MacOSXIntegration;

/**
* Todo: Document me!
*
* @author : Thomas Morgner
*/
public class ReportDesignerBoot extends AbstractBoot
{
  public static final String DESIGNER_NAMESPACE =
      "http://reporting.pentaho.org/namespaces/report-designer/2.0";
  public static final String LAST_FILENAME = "report-save-path";

  public static final String ZOOM = "zoom";
  public static final String VISUAL_HEIGHT = "visual-height";
  public static final String DESIGNER_LINEAL_MODEL_OBJECT = "lineal-model-object";
  public static final String DESIGNER_POSITIONS_MODEL_OBJECT = "positions-model-object";
  public static final String SELECTION_OVERLAY_INFORMATION = "selection-overlay-information";
  /**
   * The singleton instance of the Boot class.
   */
  private static ReportDesignerBoot instance;
  /**
   * The project info contains all meta data about the project.
   */
  private ProjectInformation projectInfo;

  /**
   * Creates a new instance.
   */
  private ReportDesignerBoot()
  {
    projectInfo = ReportDesignerInfo.getInstance();
  }

  /**
   * Returns the singleton instance of the boot utility class.
   *
   * @return the boot instance.
   */
  public static synchronized ReportDesignerBoot getInstance()
  {
    if (instance == null)
    {
      instance = new ReportDesignerBoot();
    }
    return instance;
  }

  /**
   * Returns the current global configuration as modifiable instance. This is exactly the same as casting the global
   * configuration into a ModifableConfiguration instance.
   * <p/>
   * This is a convinience function, as all programmers are lazy.
   *
   * @return the global config as modifiable configuration.
   */
  public ModifiableConfiguration getEditableConfig()
  {
    return (ModifiableConfiguration) getGlobalConfig();
  }

  /**
   * Returns the project info.
   *
   * @return The project info.
   */
  protected ProjectInformation getProjectInfo()
  {
    return projectInfo;
  }

  protected Configuration loadConfiguration()
  {
    return createDefaultHierarchicalConfiguration
        ("/org/pentaho/reporting/designer/core/report-designer.properties",// NON-NLS
            "/report-designer.properties", true, ReportDesignerBoot.class);// NON-NLS
  }

  protected void performBoot()
  {
    final PackageManager packageManager = getPackageManager();
    packageManager.load("org.pentaho.reporting.designer.core.");// NON-NLS
    packageManager.load("org.pentaho.reporting.designer.modules.");// NON-NLS
    packageManager.initializeModules();

    try
    {
      // Fixes browser-launcher on OpenJDK 1.7 for MacOS
      if (MacOSXIntegration.MAC_OS_X)
      {
        if (System.getProperty("mrj.version") == null)
        {
          System.setProperty("mrj.version", "999999");
        }
      }
    }
    catch (Error e)
    {
      // ignored.
    }

    ProxySettings.getInstance().installAuthenticator();
    ProxySettings.getInstance().applySettings();
  }
}
TOP

Related Classes of org.pentaho.reporting.designer.core.ReportDesignerBoot

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.