types/selectors/SizeSelector.php

Show: inherited
Table of Contents

Selector that filters files based on their size.

Author
Hans Lellelid (Phing)  
Author
Bruce Atherton (Ant)  
Package
phing.types.selectors  

\SizeSelector

Package: phing\types\selectors

Selector that filters files based on their size.

Parent(s)
\BaseExtendSelector < \BaseSelector < \DataType < \ProjectComponent
Author
Hans Lellelid (Phing)  
Author
Bruce Atherton (Ant)  

Constants

Constant  SIZE_KEY = "value"
Constant  UNITS_KEY = "units"
Constant  WHEN_KEY = "when"

Properties

Propertyprivate  $byteUnits= 'array("K"'
static
Default valuearray("K"Details
Type
n/a
Propertyprivate  $cmp= '2'
Default value2Details
Type
n/a
Propertyprivate  $multiplier= '1'
Default value1Details
Type
n/a
Propertyprivate  $size= '-1'
Default value-1Details
Type
n/a
Propertyprivate  $sizeComparisons= 'array("less"'
static
Default valuearray("less"Details
Type
n/a
Propertyprivate  $sizelimit= '-1'
Default value-1Details
Type
n/a

Methods

methodpubliccircularReference( ) : void

methodpublicdieOnCircularReference( ) : void

methodpublicgetCheckedRef( ) : void

methodpublicgetDescription( ) : void

methodpublicgetError( ) : void

methodprotectedgetParameters( ) : void

methodpublicgetProject( ) : void

methodpublicisReference( ) : void

methodpublicisSelected( \basedir $basedir, \filename $filename, \file $file ) : \whether

The heart of the matter. This is where the selector gets to decide on the inclusion of a file in a particular fileset.

Parameters
Name Type Description
$basedir \basedir

A PhingFile object for the base directory

$filename \filename

The name of the file to check

$file \file

A PhingFile object for this filename

Returns
Type Description
\whether the file should be selected or not
methodpubliclog( ) : void

methodpublicnoChildrenAllowed( ) : void

methodpublicparsingComplete( ) : void

methodpublicsetDescription( ) : void

methodpublicsetError( ) : void

methodpublicsetParameters( \parameters $parameters ) : void

When using this as a custom selector, this method will be called.

It translates each parameter into the appropriate setXXX() call.

Parameters
Name Type Description
$parameters \parameters

the complete set of parameters for this selector

methodpublicsetProject( ) : void

methodpublicsetRefid( ) : void

methodpublicsetUnits( \$units $units ) : void

Sets the units to use for the comparison. This is a little complicated because common usage has created standards that play havoc with capitalization rules. Thus, some people will use "K" for indicating 1000's, when the SI standard calls for "k". Others have tried to introduce "K" as a multiple of 1024, but that falls down when you reach "M", since "m" is already defined as 0.001.

<

p> To get around this complexity, a number of standards bodies have proposed the 2^10 standard, and at least one has adopted it. But we are still left with a populace that isn't clear on how capitalization should work.

<

p> We therefore ignore capitalization as much as possible. Completely mixed case is not possible, but all upper and lower forms are accepted for all long and short forms. Since we have no need to work with the 0.001 case, this practice works here.

<

p> This function translates all the long and short forms that a unit prefix can occur in and translates them into a single multiplier.

Parameters
Name Type Description
$units \$units

The units to compare the size to.

methodpublicsetValue( \size $size ) : void

A size selector needs to know what size to base its selecting on.

This will be further modified by the multiplier to get an actual size limit.

Parameters
Name Type Description
$size \size

the size to select against expressed in units

methodpublicsetWhen( \cmp $cmp ) : void

This specifies when the file should be selected, whether it be when the file matches a particular size, when it is smaller, or whether it is larger.

Parameters
Name Type Description
$cmp \cmp

The comparison to perform, an EnumeratedAttribute

methodpublictoString( ) : void

methodpublictooManyAttributes( ) : void

methodpublicvalidate( ) : void

methodpublicverifySettings( ) : void

Checks to make sure all settings are kosher. In this case, it means that the size attribute has been set (to a positive value), that the multiplier has a valid setting, and that the size limit is valid. Since the latter is a calculated value, this can only fail due to a programming error.

If a problem is detected, the setError() method is called.

Documentation was generated by DocBlox 0.17.1.