Package org.pentaho.reporting.engine.classic.core.designtime

Source Code of org.pentaho.reporting.engine.classic.core.designtime.DesignTimeUtil

/*
* 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) 2009 Pentaho Corporation..  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.core.designtime;

import java.io.File;

import org.pentaho.reporting.engine.classic.core.AbstractReportDefinition;
import org.pentaho.reporting.engine.classic.core.Element;
import org.pentaho.reporting.engine.classic.core.MasterReport;
import org.pentaho.reporting.engine.classic.core.ReportDefinition;
import org.pentaho.reporting.engine.classic.core.ResourceBundleFactory;
import org.pentaho.reporting.engine.classic.core.Section;
import org.pentaho.reporting.libraries.resourceloader.ResourceKey;

/**
* Todo: Document me!
* <p/>
* Date: 10.08.2009
* Time: 11:03:13
*
* @author Thomas Morgner.
*/
public class DesignTimeUtil
{
  private DesignTimeUtil()
  {
  }

  public static File getContextAsFile(final AbstractReportDefinition reportDefinition)
  {
    final ResourceKey key = getContextKey(reportDefinition);
    return getContextAsFile(key);
  }

  public static File getContextAsFile(ResourceKey key)
  {
    while (key != null)
    {
      final Object identifier = key.getIdentifier();
      if (identifier instanceof File)
      {
        return (File) identifier;
      }

      key = key.getParent();
    }
    return null;
  }

  public static ResourceKey getContextKey(final AbstractReportDefinition reportDefinition)
  {
    AbstractReportDefinition e = reportDefinition;
    while (e != null)
    {
      final ResourceKey base = e.getContentBase();
      if (base != null)
      {
        return base;
      }
      final Section parentSection = e.getParentSection();
      if (parentSection != null)
      {
        final ReportDefinition reportDefinition1 = parentSection.getReportDefinition();
        if (reportDefinition1 instanceof AbstractReportDefinition)
        {
          e = (AbstractReportDefinition) reportDefinition1;
        }
        else
        {
          e = null;
        }
      }
      else
      {
        e = null;
      }
    }
    return null;
  }


  public static ResourceBundleFactory getResourceBundleFactory(final AbstractReportDefinition reportDefinition)
  {
    AbstractReportDefinition e = reportDefinition;
    while (e != null)
    {
      final ResourceBundleFactory base = e.getResourceBundleFactory();
      if (base != null)
      {
        return base;
      }
      final Section parentSection = e.getParentSection();
      if (parentSection != null)
      {
        final ReportDefinition reportDefinition1 = parentSection.getReportDefinition();
        if (reportDefinition1 instanceof AbstractReportDefinition)
        {
          e = (AbstractReportDefinition) reportDefinition1;
        }
        else
        {
          e = null;
        }
      }
      else
      {
        e = null;
      }
    }
    return null;
  }

  public static MasterReport getMasterReport(final Element element)
  {
    AbstractReportDefinition e = (AbstractReportDefinition) element.getReportDefinition();
    if (e instanceof MasterReport)
    {
      return (MasterReport) e;
    }

    while (e != null)
    {
      final Section parentSection = e.getParentSection();
      if (parentSection != null)
      {
        final ReportDefinition reportDefinition1 = parentSection.getReportDefinition();
        if (reportDefinition1 instanceof MasterReport)
        {
          return (MasterReport) reportDefinition1;
        }
        else if (reportDefinition1 instanceof AbstractReportDefinition)
        {
          e = (AbstractReportDefinition) reportDefinition1;
        }
        else
        {
          e = null;
        }
      }
      else
      {
        e = null;
      }
    }
    return null;
  }
}
TOP

Related Classes of org.pentaho.reporting.engine.classic.core.designtime.DesignTimeUtil

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.