ro.isdc.wro.model.resource.processor.impl.js
Class ConsoleStripperProcessor

java.lang.Object
  extended by ro.isdc.wro.model.resource.processor.impl.js.ConsoleStripperProcessor
All Implemented Interfaces:
ResourcePreProcessor

@SupportedResourceType(value=JS)
public class ConsoleStripperProcessor
extends Object
implements ResourcePreProcessor

A preProcessor, responsible for removing console.log(..) and console.debug(..) statements.

Author:
Ivar Conradi Ă˜sthus

Field Summary
static String ALIAS
           
static Pattern PATTERN
          Matches console statements
 
Constructor Summary
ConsoleStripperProcessor()
           
 
Method Summary
 void process(Resource resource, Reader reader, Writer writer)
          Process a content supplied by a reader and perform some sort of processing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ALIAS

public static final String ALIAS
See Also:
Constant Field Values

PATTERN

public static final Pattern PATTERN
Matches console statements

Constructor Detail

ConsoleStripperProcessor

public ConsoleStripperProcessor()
Method Detail

process

public void process(Resource resource,
                    Reader reader,
                    Writer writer)
             throws IOException
Process a content supplied by a reader and perform some sort of processing. It is important to know that you should use reader for processing instead of trying to access the resource original content using Resource, because this way you can ignore the other preProcessors from the chain.
It is not require to explicitly handle exception. When the processing fails, the following can happen:
It is not required to close the reader and writers, because these will be closed for you.

Specified by:
process in interface ResourcePreProcessor
Parameters:
resource - the original resource as it found in the model.
reader - Reader used to read processed resource content.
writer - Writer where used to write processed results.
Throws:
IOException - when an exception occurs. The future version will change the exception type to Exception, because any exception may occur during processing. The processing failure will be handled based on value of WroConfiguration.isIgnoreFailingProcessor() configuration flag.


Copyright © 2008-2013. All Rights Reserved.