PoshCode Archive  Artifact [1b8bd2df2e]

Artifact 1b8bd2df2e88ada3d4ba61f411419974566d9364da8fddcd114d2ef7c70415bc:

  • File DotSource-psm1.ps1 — part of check-in [9862e5953a] at 2018-06-10 13:37:05 on branch trunk — This is very simple module that you can use with PowerShell v3. It’s using PowerShell Abstract Syntax Tree to import functions from any script without running any code. (user: bielawb size: 2937)

# encoding: ascii
# api: powershell
# title: DotSource.psm1
# description: This is very simple module that you can use with PowerShell v3. It’s using PowerShell Abstract Syntax Tree to import functions from any script without running any code.
# version: 0.1
# type: function
# author: bielawb
# license: CC0
# function: Import-Script
# x-poshcode-id: 4125
# x-archived: 2013-05-02T09:48:18
# x-published: 2013-04-22T11:51:00
#
#
#requires -version 3
$accelerators = [psobject].Assembly.GetType(
    'System.Management.Automation.TypeAccelerators'
)

foreach ($Type in 
    'Parser', 
    'FunctionDefinitionAst',
    'AssignmentStatementAst',
    'VariableExpressionAst',
    'TokenKind') 
{
    $accelerators::Add(
        $Type,
        "System.Management.Automation.Language.$Type"
    )    
}


function Import-Script {
param (
    $Path,
    [ValidateSet(
        'Script',
        'Global',
        'Local'
    )]
    $Scope = 'Global',
    [switch]$IncludeVariables
)

    $fullName = (Resolve-Path $Path).ProviderPath
    $ast = [Parser]::ParseFile(
        $fullName,
        [ref]$null,
        [ref]$null
    )
    foreach ($function in $ast.FindAll({
        $args[0] -is [FunctionDefinitionAst]
        }, $false)) {
        $define = $false
        switch -Regex ($function.Name) {
            '^(?!.*:)' {
                $define = $true
                $name = $function.Name
                break
            }
            '(Global|Script|Local):' {
                $define = $true
                $name = $function.Name -replace '.*:'
            }
            default {
                $define = $false
            }
        }
        if ($define) {
            & ([scriptblock]::Create("
                function $Scope`:$name
                $($function.Body)
                "
            ))
        }
    }
    if ($IncludeVariables) {
    foreach ($variable in $ast.FindAll({
        $args[0] -is [AssignmentStatementAst] -and
        $args[0].Operator -eq [TokenKind]::Equals -and
        $args[0].Left -is [VariableExpressionAst]
        }, $false)) {
        $define = $false
        switch -Regex ($variable.Left.VariablePath) {
            '^(?!.*:)' {
                $define = $true
                $name = $variable.Left.VariablePath
                break
            }
            '(Global|Script|Local):' {
                $define = $true
                $name = $variable.Left.VariablePath -replace '.*:'
            }
            default {
                $define = $false
            }
        }
        if ($define) {
            & ([scriptblock]::Create(
                "`$$Scope`:$name = $(
                $variable.Right.Extent.Text
                )"
            ))
        }
    }
    }
}

New-Alias -Name .. -Value Import-Script -Force
Export-ModuleMember -Function * -Alias *