psCustomObject 作为返回数据,奇怪的管道错误
psCustomObject as returned data, odd pipeline errors
我试图满足我对 return 类型性能的好奇心。基本上,我想看看在 returning 复杂数据时,散列 table、psCustomObject 和我自己的 class 之间是否存在有意义的差异。但是我遇到了 psCustomObject 问题。
所以,我从
开始
class pxObject {
[String]$String
[String]$Failure
[String]$Error
pxObject ([String]$string, [String]$failure, [String]$error) {
$this.String = $string
$this.Failure = $failure
$this.Error = $error
}
}
class pxReturn {
static [HashTable] Hash ([String]$string, [String]$failure, [String]$error) {
[HashTable]$returnHash = @{
String = $string
Failure = $failure
Error = $error
}
return $returnHash
}
static [psCustomObject] psObject ([String]$string, [String]$failure, [String]$error) {
[psCustomObject]$returnObject = [psCustomObject]@{
String = $string
Failure = $failure
Error = $error
}
return $returnObject
}
static [pxObject] pxObject ([String]$string, [String]$failure, [String]$error) {
[pxObject]$returnObject = [pxObject]::new($string, $failure, $error)
return $returnObject
}
}
[Int]$count = 1000
CLS
Write-Host 'Hash ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::Hash("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
Write-Host 'psObject ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::psObject("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
Write-Host 'pxObject ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::pxObject("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
我在 Measure-Command
行得到 Measure-Command : The given key was not present in the dictionary.
用于 psObject 测试。鉴于 Measure-Command 有一个代码块,有时会掩盖真正的错误,我将该代码修改为
Write-Host 'psObject ' -NoNewLine
#(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::psObject("String $i", "Failure $i", "Error $i")
}
#}).TotalSeconds
现在我得到 An error occurred while creating the pipeline.
没有线路信息。这看起来很简单,所以我对它失败的原因感到有些困惑。特别是因为我从另一个工作正常的项目中复制了 psCustomObject 代码。这就是 return 数据看起来像它的原因,我之前已经成功地将 psCustomObject 用于这个用例。
编辑:我所做的工作和我正在尝试做的事情的一个区别是在我使用函数之前。所以我修改了上面的代码,添加了一个return是一个psCustomObject的函数,像这样
function psObjectReturn ([String]$string, [String]$failure, [String]$error) {
[psCustomObject]$returnObject = [psCustomObject]@{
String = $string
Failure = $failure
Error = $error
}
return $returnObject
}
并添加了适当的测试
Write-Host 'psObject (function) ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
$test = psObjectReturn "String $i" "Failure $i" "Error $i"
}
}).TotalSeconds
这很有用。但我正在将所有内容移至 classes,因此它并没有真正直接解决主要问题。尽管如果您只是不能将 [psCustomObject]
用作 class 方法中的 return 类型,则可能会发生这种情况。
此外,性能看起来像这样
Hash 0.01107
psObject (function) 0.0453963
pxObject 0.0245367
这几乎表明哈希 Table 是最快的,但还不足以使其成为强制性的,我可以在哈希 Table 和我自己的 class 之间做出决定在其他标准上。但我确信在 class 错误的 psObject 引擎盖下发生了一些有趣的事情。
问题是你使用psObject
作为方法名,这与 .
冲突
问题的简化重现:
class Foo { static [pscustomobject] psobject() { return [pscustomobject] @{ foo = 1 } } }
[Foo]::psobject() # -> An error occurred while creating the pipeline.
只需选择不同的方法名称即可解决问题:
class Foo { static [pscustomobject] pscustomobject() { return [pscustomobject] @{ foo = 1 } } }
[Foo]::pscustomobject() # OK
我试图满足我对 return 类型性能的好奇心。基本上,我想看看在 returning 复杂数据时,散列 table、psCustomObject 和我自己的 class 之间是否存在有意义的差异。但是我遇到了 psCustomObject 问题。
所以,我从
开始class pxObject {
[String]$String
[String]$Failure
[String]$Error
pxObject ([String]$string, [String]$failure, [String]$error) {
$this.String = $string
$this.Failure = $failure
$this.Error = $error
}
}
class pxReturn {
static [HashTable] Hash ([String]$string, [String]$failure, [String]$error) {
[HashTable]$returnHash = @{
String = $string
Failure = $failure
Error = $error
}
return $returnHash
}
static [psCustomObject] psObject ([String]$string, [String]$failure, [String]$error) {
[psCustomObject]$returnObject = [psCustomObject]@{
String = $string
Failure = $failure
Error = $error
}
return $returnObject
}
static [pxObject] pxObject ([String]$string, [String]$failure, [String]$error) {
[pxObject]$returnObject = [pxObject]::new($string, $failure, $error)
return $returnObject
}
}
[Int]$count = 1000
CLS
Write-Host 'Hash ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::Hash("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
Write-Host 'psObject ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::psObject("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
Write-Host 'pxObject ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::pxObject("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
我在 Measure-Command
行得到 Measure-Command : The given key was not present in the dictionary.
用于 psObject 测试。鉴于 Measure-Command 有一个代码块,有时会掩盖真正的错误,我将该代码修改为
Write-Host 'psObject ' -NoNewLine
#(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::psObject("String $i", "Failure $i", "Error $i")
}
#}).TotalSeconds
现在我得到 An error occurred while creating the pipeline.
没有线路信息。这看起来很简单,所以我对它失败的原因感到有些困惑。特别是因为我从另一个工作正常的项目中复制了 psCustomObject 代码。这就是 return 数据看起来像它的原因,我之前已经成功地将 psCustomObject 用于这个用例。
编辑:我所做的工作和我正在尝试做的事情的一个区别是在我使用函数之前。所以我修改了上面的代码,添加了一个return是一个psCustomObject的函数,像这样
function psObjectReturn ([String]$string, [String]$failure, [String]$error) {
[psCustomObject]$returnObject = [psCustomObject]@{
String = $string
Failure = $failure
Error = $error
}
return $returnObject
}
并添加了适当的测试
Write-Host 'psObject (function) ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
$test = psObjectReturn "String $i" "Failure $i" "Error $i"
}
}).TotalSeconds
这很有用。但我正在将所有内容移至 classes,因此它并没有真正直接解决主要问题。尽管如果您只是不能将 [psCustomObject]
用作 class 方法中的 return 类型,则可能会发生这种情况。
此外,性能看起来像这样
Hash 0.01107
psObject (function) 0.0453963
pxObject 0.0245367
这几乎表明哈希 Table 是最快的,但还不足以使其成为强制性的,我可以在哈希 Table 和我自己的 class 之间做出决定在其他标准上。但我确信在 class 错误的 psObject 引擎盖下发生了一些有趣的事情。
问题是你使用psObject
作为方法名,这与
问题的简化重现:
class Foo { static [pscustomobject] psobject() { return [pscustomobject] @{ foo = 1 } } }
[Foo]::psobject() # -> An error occurred while creating the pipeline.
只需选择不同的方法名称即可解决问题:
class Foo { static [pscustomobject] pscustomobject() { return [pscustomobject] @{ foo = 1 } } }
[Foo]::pscustomobject() # OK