forked from rupa/z
-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
z.psm1
696 lines (533 loc) · 20.4 KB
/
z.psm1
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
$safehome = if (![String]::IsNullOrWhiteSpace($env:XDG_CACHE_HOME)) {
$env:XDG_CACHE_HOME
} elseif (![String]::IsNullOrWhiteSpace($env:HOME)) {
$env:HOME
} else {
$env:USERPROFILE
}
$cdHistory = Join-Path -Path $safehome -ChildPath '\.cdHistory'
# The user can set $Z_UsePushLocation to $true to configure z to use Push-location, which allows to use popd/Pop-Location to go back to the previous location.
# Setting or $Z_UsePushLocation to $false will use Set-Location instead.
if ($null -eq $Z_UsePushLocation)
{
# Set default behaviour to use Push-Location
$Z_UsePushLocation = $true;
}
function z {
<#
.SYNOPSIS
Tracks your most used directories, based on 'frecency'. This is done by storing your CD command history and ranking it over time.
.DESCRIPTION
After a short learning phase, z will take you to the most 'frecent'
directory that matches the regex given on the command line.
.PARAMETER JumpPath
A un-escaped regular expression of the directory name to jump to. Character escaping will be done internally.
.PARAMETER Option
Frecency - Match by frecency (default)
Rank - Match by rank only
Time - Match by recent access only
.PARAMETER OnlyCurrentDirectory
Restrict matches to subdirectories of the current directory
.PARAMETER Listfiles
List only, don't navigate to the directory
.PARAMETER $Remove
Remove the current directory from the datafile
.PARAMETER $Clean
Clean up all history entries that cannot be resolved
.NOTES
Current PowerShell implementation is very crude and does not yet support all of the options of the original z bash script.
Although tracking of frequently used directories is obtained through the continued use of the "cd" command, the Windows registry is also scanned for frequently accessed paths.
.LINK
https://github.com/vincpa/z
.EXAMPLE
CD to the most frecent directory matching 'foo'
z foo
.EXAMPLE
CD to the most recently accessed directory matching 'foo'
z foo -o Time
#>
param(
[Parameter(Position=0)]
[string]
${JumpPath},
[ValidateSet("Time", "T", "Frecency", "F", "Rank", "R")]
[Alias('o')]
[string]
$Option = 'Frecency',
[Alias('c')]
[switch]
$OnlyCurrentDirectory = $null,
[Alias('l')]
[switch]
$ListFiles = $null,
[Alias('x')]
[switch]
$Remove = $null,
[Alias('d')]
[switch]
$Clean = $null,
[Alias('p')]
[switch]
$Push = $false
)
if (((-not $Clean) -and (-not $Remove) -and (-not $ListFiles)) -and [string]::IsNullOrWhiteSpace($JumpPath)) { Get-Help z; return; }
# If a valid path is passed in to z, treat it like the normal cd command
if (-not $ListFiles -and -not [string]::IsNullOrWhiteSpace($JumpPath) -and (Test-Path $JumpPath)) {
if ($Push -or $Z_UsePushLocation) {
pushdX $JumpPath
} else {
cdX $JumpPath
}
return;
}
if ((Test-Path $cdHistory)) {
if ($Remove) {
Save-CdCommandHistory $Remove
} elseif ($Clean) {
Cleanup-CdCommandHistory
} else {
# This causes conflicts with the -Remove parameter. Not sure whether to remove registry entry.
#$mruList = Get-MostRecentDirectoryEntries
$providerRegex = $null
If ($OnlyCurrentDirectory) {
$providerRegex = (Get-FormattedLocation).replace('\','\\')
if (-not $providerRegex.EndsWith('\\')) {
$providerRegex += '\\'
}
$providerRegex += '.*?'
} else {
$providerRegex = Get-CurrentSessionProviderDrives ((Get-PSProvider).Drives | select -ExpandProperty Name)
}
$list = @()
$global:history |
? { Get-DirectoryEntryMatchPredicate -path $_.Path -jumpPath $JumpPath -ProviderRegex $providerRegex } | Get-ArgsFilter -Option $Option |
% { if ($ListFiles -or (Test-Path $_.Path.FullName)) {$list += $_} }
if ($ListFiles) {
$newList = $list | % { New-Object PSObject -Property @{Rank = $_.Rank; Path = $_.Path.FullName; LastAccessed = [DateTime]$_.Time } }
Format-Table -InputObject $newList -AutoSize
} else {
if ($list.Length -eq 0) {
# It's not found in the history file, perhaps it's still a valid directory. Let's check.
if ((Test-Path $JumpPath)) {
if ($Push -or $Z_UsePushLocation) {
pushdX $JumpPath
} else {
cdX $JumpPath
}
} else {
Write-Host "$JumpPath Not found"
}
} else {
if ($list.Length -gt 1) {
$entry = $list | Sort-Object -Descending { $_.Score } | select -First 1
} else {
$entry = $list[0]
}
if ($Push -or $Z_UsePushLocation) {
Push-Location $entry.Path.FullName
} else {
Set-Location $entry.Path.FullName
}
Save-CdCommandHistory $Remove
}
}
}
} else {
Save-CdCommandHistory $Remove
}
}
function pushdX
{
[CmdletBinding(DefaultParameterSetName='Path', SupportsTransactions=$true, HelpUri='https://go.microsoft.com/fwlink/?LinkID=113370')]
param(
[Parameter(ParameterSetName='Path', Position=0, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)]
[string]
${Path},
[Parameter(ParameterSetName='LiteralPath', ValueFromPipelineByPropertyName=$true)]
[Alias('PSPath')]
[string]
${LiteralPath},
[switch]
${PassThru},
[Parameter(ValueFromPipelineByPropertyName=$true)]
[string]
${StackName})
begin
{
try {
$outBuffer = $null
if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer))
{
$PSBoundParameters['OutBuffer'] = 1
}
$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Push-Location', [System.Management.Automation.CommandTypes]::Cmdlet)
$scriptCmd = {& $wrappedCmd @PSBoundParameters }
$steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
$steppablePipeline.Begin($PSCmdlet)
} catch {
throw
}
}
process
{
try {
$steppablePipeline.Process($_)
Save-CdCommandHistory # Build up the DB.
} catch {
throw
}
}
end
{
try {
$steppablePipeline.End()
} catch {
throw
}
}
}
function popdX {
[CmdletBinding(SupportsTransactions=$true, HelpUri='https://go.microsoft.com/fwlink/?LinkID=113369')]
param(
[switch]
${PassThru},
[Parameter(ValueFromPipelineByPropertyName=$true)]
[string]
${StackName})
begin
{
try {
$outBuffer = $null
if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer))
{
$PSBoundParameters['OutBuffer'] = 1
}
$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Microsoft.PowerShell.Management\Pop-Location', [System.Management.Automation.CommandTypes]::Cmdlet)
$scriptCmd = {& $wrappedCmd @PSBoundParameters }
$steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
$steppablePipeline.Begin($PSCmdlet)
} catch {
throw
}
}
process
{
try {
$steppablePipeline.Process($_)
} catch {
throw
}
}
end
{
try {
$steppablePipeline.End()
} catch {
throw
}
}
<#
.ForwardHelpTargetName Microsoft.PowerShell.Management\Pop-Location
.ForwardHelpCategory Cmdlet
#>
}
# A wrapper function around the existing Set-Location Cmdlet.
function cdX
{
[CmdletBinding(DefaultParameterSetName='Path', SupportsTransactions=$true, HelpUri='https://go.microsoft.com/fwlink/?LinkID=113397')]
param(
[Parameter(ParameterSetName='Path', Position=0, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)]
[string]
${Path},
[Parameter(ParameterSetName='LiteralPath', Mandatory=$true, ValueFromPipelineByPropertyName=$true)]
[Alias('PSPath')]
[string]
${LiteralPath},
[switch]
${PassThru},
[Parameter(ParameterSetName='Stack', ValueFromPipelineByPropertyName=$true)]
[string]
${StackName})
begin
{
$outBuffer = $null
if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer))
{
$PSBoundParameters['OutBuffer'] = 1
}
$PSBoundParameters['ErrorAction'] = 'Stop'
$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Set-Location', [System.Management.Automation.CommandTypes]::Cmdlet)
$scriptCmd = {& $wrappedCmd @PSBoundParameters }
$steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
$steppablePipeline.Begin($PSCmdlet)
}
process
{
$steppablePipeline.Process($_)
Save-CdCommandHistory # Build up the DB.
}
end
{
$steppablePipeline.End()
}
}
function Get-DirectoryEntryMatchPredicate {
Param(
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
$Path,
[Parameter(
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
[string] $JumpPath,
$ProviderRegex
)
if ($Path -ne $null) {
$null = .{
$providerMatches = [System.Text.RegularExpressions.Regex]::Match($Path.FullName, $ProviderRegex).Success
}
if ($providerMatches) {
# Allows matching of entire names. Remove the first two characters, added by PowerShell when the user presses the TAB key.
if ($JumpPath.StartsWith('.\')) {
$JumpPath = $JumpPath.Substring(2).TrimEnd('\')
}
[System.Text.RegularExpressions.Regex]::Match($Path.Name, [System.Text.RegularExpressions.Regex]::Escape($JumpPath), [System.Text.RegularExpressions.RegexOptions]::IgnoreCase).Success
}
}
}
function Get-CurrentSessionProviderDrives([System.Collections.ArrayList] $ProviderDrives) {
if($IsLinux -Or $IsMacOS) {
# Always only '/' which needs escaped to work in a regex
'\/'
} elseif ($ProviderDrives -ne $null -and $ProviderDrives.Length -gt 0) {
Get-ProviderDrivesRegex $ProviderDrives
} else {
# The FileSystemProvider supports \\ and X:\ paths.
# An ideal solution would be to ask the provider if a path is supported.
# Supports drives such as C:\ and also UNC \\
if ((Get-Location).Provider.ImplementingType.Name -eq 'FileSystemProvider') {
'(?i)^(((' + [String]::Concat( ((Get-Location).Provider.Drives.Name | % { $_ + '|' }) ).TrimEnd('|') + '):\\)|(\\{1,2})).*?'
} else {
Get-ProviderDrivesRegex (Get-Location).Provider.Drives
}
}
}
function Get-ProviderDrivesRegex([System.Collections.ArrayList] $ProviderDrives) {
# UNC paths get special treatment. Allows one to 'z foo -ProviderDrives \\' and specify '\\' as the drive.
if ($ProviderDrives -contains '\\') {
$ProviderDrives.('\\')
}
if ($ProviderDrives.Count -eq 0) {
'(?i)^(\\{1,2}).*?'
} else {
$uncRootPathRegex = '|(\\{1,2})'
'(?i)^((' + [String]::Concat( ($ProviderDrives | % { $_ + '|' }) ).TrimEnd('|') + '):\\)' + $uncRootPathRegex + '.*?'
}
}
function Get-Frecency($rank, $time) {
# Last access date/time
$dx = (Get-Date).Subtract((New-Object System.DateTime -ArgumentList $time)).TotalSeconds
if( $dx -lt 3600 ) { return $rank*4 }
if( $dx -lt 86400 ) { return $rank*2 }
if( $dx -lt 604800 ) { return $rank/2 }
return $rank/4
}
function Cleanup-CdCommandHistory() {
try {
for($i = 0; $i -lt $global:history.Length; $i++) {
$line = $global:history[$i]
if ($line -ne $null) {
$testDir = $line.Path.FullName
if (-not [string]::IsNullOrWhiteSpace($testDir) -and !(Test-Path $testDir)) {
$global:history[$i] = $null
Write-Host "Removed inaccessible path $testDir" -ForegroundColor Yellow
}
}
}
Remove-Old-History
WriteHistoryToDisk
} catch {
Write-Host $_.Exception.ToString() -ForegroundColor Red
}
}
function Remove-Old-History() {
if ($global:history.Length -gt 1000) {
$global:history | ? { $_ -ne $null } | % {$i = 0} {
$lineObj = $_
$lineObj.Rank = $lineObj.Rank * 0.99
# If it's been accessed in the last 14 days it can stay
# or
# If it's rank is greater than 20 and been accessed in the last 30 days it can stay
if ($lineObj.Age -lt 1209600 -or ($lineObj.Rank -ge 5 -and $lineObj.Age -lt 2592000)) {
#$global:history[$i] = ConvertTo-DirectoryEntry (ConvertTo-TextualHistoryEntry $lineObj.Rank $lineObj.Path.FullName $lineObj.Time)
} else {
Write-Host "Removing old item: Rank:" $lineObj.Rank "Age:" ($lineObj.Age/60/60) "Path:" $lineObj.Path.FullName -ForegroundColor Yellow
$global:history[$i] = $null
}
$i++;
}
}
}
function Save-CdCommandHistory($removeCurrentDirectory = $false) {
$currentDirectory = Get-FormattedLocation
try {
$foundDirectory = $false
$runningTotal = 0
for($i = 0; $i -lt $global:history.Length; $i++) {
$line = $global:history[$i]
$canIncreaseRank = $true;
$rank = $line.Rank;
if (-not $foundDirectory) {
$rank = $line.Rank
if ($line.Path.FullName -eq $currentDirectory) {
$foundDirectory = $true
if ($removeCurrentDirectory) {
$canIncreaseRank = $false
$global:history[$i] = $null
Write-Host "Removed entry $currentDirectory" -ForegroundColor Green
} else {
$rank++
Update-HistoryEntryUsageTime $global:history[$i]
}
}
}
if ($canIncreaseRank) {
$runningTotal += $rank
}
}
if (-not $foundDirectory -and $removeCurrentDirectory) {
Write-Host "Current directory not found in CD history data file" -ForegroundColor Red
} else {
if (-not $foundDirectory) {
Save-HistoryEntry 1 $currentDirectory
$runningTotal += 1
}
Remove-Old-History
}
WriteHistoryToDisk
} catch {
Write-Host $_.Exception.ToString() -ForegroundColor Red
}
}
function WriteHistoryToDisk() {
$newList = GetAllHistoryAsText $global:history
Set-Content -Value $newList -Path $cdHistory -Encoding UTF8
}
function GetAllHistoryAsText($history) {
return $history | ? { $_ -ne $null } | % { ConvertTo-TextualHistoryEntry $_.Rank $_.Path.FullName $_.Time }
}
function Get-FormattedLocation() {
if ((Get-Location).Provider.ImplementingType.Name -eq 'FileSystemProvider' -and (Get-Location).Path.Contains('FileSystem::\\')) {
Get-Location | select -ExpandProperty ProviderPath # The registry provider does return a path which z understands. In other words, I'm too lazy.
} else {
Get-Location | select -ExpandProperty Path
}
}
function Format-Rank($rank) {
return $rank.ToString("000#.00", [System.Globalization.CultureInfo]::InvariantCulture);
}
function Save-HistoryEntry($rank, $directory) {
$entry = ConvertTo-TextualHistoryEntry $rank $directory
$global:history += ConvertTo-DirectoryEntry $entry
}
function Update-HistoryEntryUsageTime($historyEntry) {
$historyEntry.Rank++
$historyEntry.Time = (Get-Date).Ticks
}
function ConvertTo-TextualHistoryEntry($rank, $directory, $lastAccessedTicks) {
if ($lastAccessedTicks -eq $null) {
$lastAccessedTicks = (Get-Date).Ticks
}
(Format-Rank $rank) + $lastAccessedTicks + $directory
}
function ConvertTo-DirectoryEntry {
Param(
[Parameter(
Position=0,
Mandatory=$true,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
[String]$line
)
Process {
$null = .{
$pathValue = $line.Substring(25)
try {
$fileName = [System.IO.Path]::GetFileName($pathValue);
# GetFileName() does not work with registry paths
if ($fileName -eq '') {
$lastPathSeparator = $pathValue.LastIndexOf('\');
if ($lastPathSeparator -ge 0) {
$pathValue = $pathValue.TrimEnd('\');
$fileName = $pathValue.Substring( + 1);
}
}
} catch [System.ArgumentException] { }
$time = [long]::Parse($line.Substring(7, 18), [Globalization.CultureInfo]::InvariantCulture)
}
@{
Rank=GetRankFromLine $line;
Time=$time;
Path=@{ Name = $fileName; FullName = $pathValue };
Age=(Get-Date).Subtract((New-Object System.DateTime -ArgumentList $time)).TotalSeconds;
}
}
}
function GetRankFromLine([String]$line) {
$null = .{ $rankStr = $line.Substring(0, 7) }
[double]::Parse($rankStr, [Globalization.CultureInfo]::InvariantCulture)
}
function Get-MostRecentDirectoryEntries {
$mruEntries = (Get-Item -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPaths | % { $item = $_; $_.GetValueNames() | % { $item.GetValue($_) } })
$mruEntries | % { ConvertTo-TextualHistoryEntry 1 $_ }
}
function Get-ArgsFilter {
Param(
[Parameter(ValueFromPipeline=$true)]
[Hashtable]$historyEntry,
[string]
$Option = 'Frecency'
)
Process {
if ($Option -in ('Frecency', 'F')) {
$_['Score'] = (Get-Frecency $_.Rank $_.Time);
} elseif ($Option -in ('Time', 'T')) {
$_['Score'] = $_.Time;
} elseif ($Option -in ('Rank', 'R')) {
$_['Score'] = $_.Rank;
}
return $_;
}
}
<#
.ForwardHelpTargetName Set-Location
.ForwardHelpCategory Cmdlet
#>
# Get cdHistory and hydrate a in-memory collection
$global:history = @()
if ((Test-Path -Path $cdHistory)) {
$global:history += Get-Content -Path $cdHistory -Encoding UTF8 | ? { (-not [String]::IsNullOrWhiteSpace($_)) } | ConvertTo-DirectoryEntry
}
$orig_cd = (Get-Alias -Name 'cd').Definition
$MyInvocation.MyCommand.ScriptBlock.Module.OnRemove = {
set-item alias:cd -value $orig_cd
}
#Override the existing CD command with the wrapper in order to log 'cd' commands.
Set-item alias:cd -Value 'cdX'
Set-Alias -Name pushd -Value pushdX -Force -Option AllScope -Scope Global
Set-Alias -Name popd -Value popdX -Force -Option AllScope -Scope Global
Export-ModuleMember -Function z, cdX, pushdX, popdX -Alias cd, pushd
# Tab Completion
$completion_RunningService = {
param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)
$global:history | Sort-Object { $_.Rank } -Descending | Where-Object { $_.Path.Name -like "*$wordToComplete*" } |
ForEach-Object { New-Object System.Management.Automation.CompletionResult ("'{0}'" -f $_.Path.FullName), $_.Path.FullName, 'ParameterName', ('{0} ({1})' -f $_.Path.Name, $_.Path.FullName) }
}
if (Get-Command -ErrorAction Ignore -Name 'Register-ArgumentCompleter') {
Register-ArgumentCompleter -CommandName 'z' -ParameterName 'JumpPath' -ScriptBlock $completion_RunningService
} else {
if (-not $global:options) { $global:options = @{CustomArgumentCompleters = @{};NativeArgumentCompleters = @{}}}
$global:options['CustomArgumentCompleters']['z:JumpPath'] = $Completion_RunningService
$function:tabexpansion2 = $function:tabexpansion2 -replace 'End(\r\n|\n){','End { if ($null -ne $options) { $options += $global:options} else {$options = $global:options}'
}