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

com.github.edgarespina.mwa.wro4j.WroHelper Maven / Gradle / Ivy

package com.github.edgarespina.mwa.wro4j;

import static com.google.common.base.Preconditions.checkNotNull;

import java.io.IOException;
import java.io.InputStream;

import org.apache.commons.io.IOUtils;

import ro.isdc.wro.WroRuntimeException;
import ro.isdc.wro.model.resource.Resource;
import ro.isdc.wro.model.resource.locator.factory.UriLocatorFactory;

/**
 * Commons functions for Wro4j.
 *
 * @author edgar.espina
 * @since 0.1.2
 */
public final class WroHelper {

  /**
   * No need it.
   */
  private WroHelper() {
  }

  /**
   * Read the files using the {@link UriLocatorFactory}.
   *
   * @param uriLocatorFactory The uri locator factory. Required.
   * @param resource The resource object. Required.
   * @return The file content.
   */
  public static String safeRead(final UriLocatorFactory uriLocatorFactory,
      final Resource resource) {
    InputStream in = null;
    try {
      in =
          checkNotNull(uriLocatorFactory,
              "The uri locator factory is required.").locate(
              checkNotNull(resource, "The resource is required.").getUri());
      return IOUtils.toString(in);
    } catch (IOException ex) {
      throw new WroRuntimeException("Unable to read: " + resource.getUri(),
          ex);
    } finally {
      IOUtils.closeQuietly(in);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy