Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In PowerShell v2, the following line:

1..3| foreach { Write-Host "Value : $_"; $_ }| select -First 1

Would display:

Value : 1
1
Value : 2
Value : 3

Since all elements were pushed down the pipeline. However, in v3 the above line displays only:

Value : 1
1

The pipeline is stopped before 2 and 3 are sent to Foreach-Object (Note: the -Wait switch for Select-Object allows all elements to reach the foreach block).

How does Select-Object stop the pipeline, and can I now stop the pipeline from a foreach or from my own function?

Edit: I know I can wrap a pipeline in a do...while loop and continue out of the pipeline. I have also found that in v3 I can do something like this (it doesn't work in v2):

function Start-Enumerate ($array) {
    do{ $array } while($false)  
}

Start-Enumerate (1..3)| foreach {if($_ -ge 2){break};$_}; 'V2 Will Not Get Here'

But Select-Object doesn't require either of these techniques so I was hoping that there was a way to stop the pipeline from a single point in the pipeline.

share|improve this question

2 Answers

Check this post on how you can cancel a pipeline:
http://powershell.com/cs/blogs/tobias/archive/2010/01/01/cancelling-a-pipeline.aspx

In PowerShell 3.0 it's an engine improvement. From the CTP1 samples folder ('\Engines Demos\Misc\ConnectBugFixes.ps1'):

# Connect Bug 332685
# Select-Object optimization
# Submitted by Shay Levi
# Connect Suggestion 286219
# PSV2: Lazy pipeline - ability for cmdlets to say "NO MORE"
# Submitted by Karl Prosser

# Stop the pipeline once the objects have been selected
# Useful for commands that return a lot of objects, like dealing with the event log

# In PS 2.0, this took a long time even though we only wanted the first 10 events
Start-Process powershell.exe -Args '-Version 2 -NoExit -Command Get-WinEvent | Select-Object -First 10'

# In PS 3.0, the pipeline stops after retrieving the first 10 objects
Get-WinEvent | Select-Object -First 10
share|improve this answer
Yes, I've seen both of these. I've updated my question. – Rynant Jan 5 '12 at 21:56
As far as I can tell it throws a StopUpstreamCommandsException exception, which is very similar to what Tobias is doing in the post I mentioned. – Shay Levy Jan 6 '12 at 11:15
But unlike the PipelineStoppedException, Select-Object does not prevent downstream commands from completing. I would like to be able to stop the pipeline without requiring the user to know that they have to wrap the pipeline in a do-while or try-catch, but I suppose a can't use StopUpstreamCommandsException since it's a private type. – Rynant Jan 17 '12 at 14:56

I know that throwing a PipelineStoppedException stops the pipeline. The following example will simulate what you see with Select -first 1 in v3.0, in v2.0:

filter Select-Improved($first) {
    begin{
        $count = 0
    }
    process{
        $_
        $count++
        if($count -ge $first){throw (new-object System.Management.Automation.PipelineStoppedException)}
    }
}

trap{continue}
1..3| foreach { Write-Host "Value : $_"; $_ }| Select-Improved -first 1
write-host "after"
share|improve this answer
You have a typo: $fist > $first. And and 'new' should be new-object. – Shay Levy Jan 6 '12 at 11:06
@ShayLevy - Thanks, corrected :) – manojlds Jan 6 '12 at 16:05
The problem I have with throwing a PipelineStoppedException is that commands further down the pipeline do not finish processing. This works : 1..5| select -first 3| measure, but this doesn't: 1..5| Select-Improved -first 3| measure – Rynant Jan 6 '12 at 16:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.