blob: f47c8b08f00d0abaee35dfeaff0f4a9d5778f27c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 com.adobe.ac.pmd.rules.style;
import java.util.ArrayList;
import java.util.List;
import com.adobe.ac.pmd.IFlexViolation;
import com.adobe.ac.pmd.files.IFlexFile;
import com.adobe.ac.pmd.rules.core.ViolationPosition;
import com.adobe.ac.pmd.rules.core.ViolationPriority;
import com.adobe.ac.pmd.rules.core.thresholded.AbstractMaximizedFlexRule;
public class OverLongLineRule extends AbstractMaximizedFlexRule
{
private static final int DEFAULT_THRESHOLD = 120;
private int currentLineLength;
/*
* (non-Javadoc)
* @see
* com.adobe.ac.pmd.rules.core.AbstractFlexRule#findViolationsInCurrentFile()
*/
@Override
public final List< IFlexViolation > findViolationsInCurrentFile()
{
final List< IFlexViolation > violations = new ArrayList< IFlexViolation >();
if ( isConcernedByTheCurrentFile() )
{
final IFlexFile currentFile = getCurrentFile();
for ( int i = 1; i <= currentFile.getLinesNb(); i++ )
{
final String line = currentFile.getLineAt( i );
if ( !line.trim().startsWith( "import" )
&& line.length() > getThreshold() )
{
currentLineLength = line.length();
final ViolationPosition position = ViolationPosition.create( i,
i,
0,
currentLineLength );
addViolation( violations,
position );
}
}
}
return violations;
}
/*
* (non-Javadoc)
* @seecom.adobe.ac.pmd.rules.core.thresholded.IThresholdedRule#
* getActualValueForTheCurrentViolation()
*/
@Override
public final int getActualValueForTheCurrentViolation()
{
return currentLineLength;
}
/*
* (non-Javadoc)
* @see
* com.adobe.ac.pmd.rules.core.thresholded.IThresholdedRule#getDefaultThreshold
* ()
*/
@Override
public final int getDefaultThreshold()
{
return DEFAULT_THRESHOLD;
}
/*
* (non-Javadoc)
* @see com.adobe.ac.pmd.rules.core.AbstractFlexRule#getDefaultPriority()
*/
@Override
protected final ViolationPriority getDefaultPriority()
{
return ViolationPriority.LOW;
}
/*
* (non-Javadoc)
* @see
* com.adobe.ac.pmd.rules.core.AbstractFlexRule#isConcernedByTheCurrentFile()
*/
@Override
protected boolean isConcernedByTheCurrentFile()
{
return true;
}
}