PoshCode Archive  Artifact [216d7299db]

Artifact 216d7299db8d43f1e8162294b64549012008b5ea236d8721fc0d8a36ee62f8a9:

  • File New-ObjectRecursive.ps1 — part of check-in [ff9cd14417] at 2018-06-10 13:11:55 on branch trunk — I saw few questions about this functionality on VUG, so I decided to give it a try and create function that would allow user to created object with nested objects. I needed to have also possibility to define type of nested object, so I’ve used key in hashtable to define it, if exists. Works fine now with Windows.Forms :) Meanwhile I’ve noticed Karl already produced another script that does similar things. Oh, well, maybe that will be also handy for somebody. :) (user: unknown size: 2642)

# encoding: ascii
# api: powershell
# title: New-ObjectRecursive.ps1
# description: I saw few questions about this functionality on VUG, so I decided to give it a try and create function that would allow user to created object with nested objects. I needed to have also possibility to define type of nested object, so I’ve used key in hashtable to define it, if exists. Works fine now with Windows.Forms :) Meanwhile I’ve noticed Karl already produced another script that does similar things. Oh, well, maybe that will be also handy for somebody. :)
# version: 0.1
# type: script
# license: CC0
# x-poshcode-id: 2523
# x-derived-from-id: 2527
# x-archived: 2011-02-28T07:59:30
#
#
<#
    .Synopsis
        Creates new object based on hashtable definition
    .Description
        Function is wrapper for New-Object that allows user to create nested objects using nested hashtable as definition.
        If you want to take advantage of type use 'Type' key within hashtable that defines object.
    .Example
        $obj = New-ObjectRecursive @{Test = @{ InnerTest = 'Value'; AnotherInner = 'Another'; InnerwithInner = @{ Deepest = 'It is very deep'}}; Flat = 'SomeValue'}
        $obj.Test.InnerwithInner.Deepest
        It is very deep
        
        Create simpe custom object with several inner psobjects, depending of hashtable structure.
    .Example
        (New-ObjectRecursive @{ Type = 'Windows.Forms.Form'; Size = @{ Type = 'Drawing.Size'; width = 400; Height = 400}; Text = 'Title of window'}).ShowDialog()
        
        Display windows form of size 400 x 400 and title 'Title of window', assuming Windows.Forms are loaded.
#>

    param(
        $Property
        )
    if ($Property -is [hashtable]) {
        if ($Type = $Property.Type) {
            $Property.Remove('Type')
        } else {
            $Type = 'PSObject'
        }
        $PropertyHash = @{}
        foreach ($key in $Property.keys) {
            $PropertyHash.Add($key, $(New-ObjectRecursive $Property[$key]))
        }
        Try {
            New-Object $Type -Property $PropertyHash -ErrorAction SilentlyContinue
            if (!$?) {
                Write-Host -ForegroundColor Red $Error[0].Exception.Message
            }   
        } catch {
            Write-Host -ForegroundColor Red "Problems with creating object of type: $Type. Try to use PSObject instead . . ."
            New-Object PSObject -Property $PropertyHash -ErrorAction SilentlyContinue
            Write-Host -ForegroundColor Red "Error message:" $_.Exception.Message
        }
    } else {
        $Property
    }