-
Notifications
You must be signed in to change notification settings - Fork 5
/
gprdeps.ps1
executable file
·158 lines (142 loc) · 4.45 KB
/
gprdeps.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#
# SweetAda *.gpr dependencies parser.
#
# Copyright (C) 2020-2024 Gabriele Galeotti
#
# This work is licensed under the terms of the MIT License.
# Please consult the LICENSE.txt file located in the top-level directory.
#
#
# Arguments:
# optional starting "-u" = output sorted, not-duplicated units
# $1 = input filename
#
# Environment variables:
# none
#
################################################################################
# Script initialization. #
# #
################################################################################
$scriptname = $MyInvocation.MyCommand.Name
$nl = [Environment]::NewLine
################################################################################
# ExitWithCode() #
# #
################################################################################
function ExitWithCode
{
param($exitcode)
$host.SetShouldExit($exitcode)
exit $exitcode
}
################################################################################
# Write-Stderr() #
# #
################################################################################
function Write-Stderr
{
param([PSObject]$inputobject)
$outf = if ($host.Name -eq "ConsoleHost")
{
[Console]::Error.WriteLine
}
else
{
$host.UI.WriteErrorLine
}
if ($inputobject)
{
[void]$outf.Invoke($inputobject.ToString())
}
else
{
[string[]]$lines = @()
$input | % { $lines += $_.ToString() }
[void]$outf.Invoke($lines -Join $nl)
}
}
################################################################################
# ParseGpr() #
# #
################################################################################
function ParseGpr
{
param([string]$filename)
$units = ""
if (-not (Test-Path -Path "$filename" -PathType Leaf))
{
return $units
}
foreach ($textline in Get-Content "$filename")
{
$textline = $textline.Trim()
if (($textline.Length -eq 0) -or $textline.StartsWith("--"))
{
continue
}
elseif ($textline.ToLower().StartsWith("with"))
{
$unit = $textline `
-Replace "`t"," " `
-Replace "with *`"","" `
-Replace "`" *;.*",""
if ($unit.Length -gt 0)
{
$units = "$units $($unit).gpr"
}
}
else
{
break
}
}
return $units
}
################################################################################
# ParseRecursive() #
# #
################################################################################
function ParseRecursive
{
param([string]$gprlist)
$local:units = ""
foreach ($local:g in $gprlist.Trim().Split(" "))
{
$local:gprs = $(ParseGpr $local:g)
if ($local:gprs.Length -gt 0)
{
$local:units = "$local:units $local:gprs"
$local:pr = $(ParseRecursive $local:gprs)
$local:units = "$local:units $local:pr"
}
}
return $local:units
}
################################################################################
# Main loop. #
# #
################################################################################
[int]$argc = 0
[bool]$uniq = $false
#
# Basic input parameters check.
#
if ([string]$args[$argc] -eq "-u")
{
$uniq = $true
$argc++
}
$input_filename = $args[$argc]
if ([string]::IsNullOrEmpty($input_filename))
{
Write-Stderr "$($scriptname): *** Error: no input file specified."
ExitWithCode 1
}
$gprdeps = $(ParseRecursive $input_filename).Split(" ")
if ($uniq)
{
$gprdeps = $gprdeps | Sort-Object -Unique
}
Write-Host "$gprdeps"
ExitWithCode 0