PoshCode Archive  Artifact [03a21f9cb8]

Artifact 03a21f9cb81e81585c6a816b951408404a99141fe97a288cb56e8ee01226e9dc:

  • File SupportsPagingDemo.ps1 — part of check-in [66d06a6d7f] at 2018-06-10 14:03:23 on branch trunk — This is the Get-Number from MSDN Code, slightly altered for style and substance. (user: Joel Bennett size: 2333)

# encoding: ascii
# api: powershell
# title: SupportsPagingDemo
# description: This is the Get-Number from MSDN Code, slightly altered for style and substance.
# version: 1.0
# type: function
# author: Joel Bennett
# license: CC0
# function: Get-Number
# x-poshcode-id: 5883
# x-archived: 2016-08-26T03:50:06
# x-published: 2016-06-05T15:24:00
#
# https://code.msdn.microsoft.com/windowsdesktop/Windows-PowerShell-92bcc45e
#
function Get-Number {
    [CmdletBinding(SupportsPaging = $true)]
    param(
        [Parameter(Position = 0, ValueFromPipeline = $true)]
        [ValidateRange(0, 10000)]
        [Uint64] 
        $NumbersToGenerate = 100
    )
    
    if ($PSCmdlet.PagingParameters.IncludeTotalCount) {
        <#
        when using data sources to retrieve results,
            (1) some data sources might have the exact number of results retrieved and in this case would have accuracy 1.0
            (2) some data sources might only have an estimate and in this case would use accuracy between 0.0 and 1.0
            (3) other data sources might not know how many items there are in total and in this case would use accuracy 0.0
        #>
        [double]$Accuracy = 1.0
        $PSCmdlet.PagingParameters.NewTotalCount($NumbersToGenerate, $Accuracy)
    }
    
    if($NumbersToGenerate -gt 0) {
        if($PSCmdlet.PagingParameters.Skip -ge $NumbersToGenerate) {
            Write-Verbose "No results satisfy the paging parameters"
        } 
        elseif($PSCmdlet.PagingParameters.First -eq 0) {
            Write-Verbose "No results satisfy the paging parameters"
        }
        else {
            $FirstNumber = $PSCmdlet.PagingParameters.Skip
            $LastNumber = $FirstNumber + 
                [Math]::Min($PSCmdlet.PagingParameters.First, $NumbersToGenerate - $PSCmdlet.PagingParameters.Skip) - 1
                
            $FirstNumber .. $LastNumber | %{ New-Object PSObject -Prop @{
                Number = $_
                Skip = $PSCmdlet.PagingParameters.Skip
                First = $PSCmdlet.PagingParameters.First
                IncludeTotalCount = $PSCmdlet.PagingParameters.IncludeTotalCount
            } }
        }
    }
    else {
         Write-Verbose "No results satisfy the specified paging parameters"
    }
}