-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added holes.pl, lists all open sockets, only meaningful if running in… #870
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
use Irssi; | ||
use strict; | ||
use warnings; | ||
|
||
our $VERSION = "1.0.1"; | ||
our %IRSSI = ( | ||
authors => 'terminaldweller', | ||
contact => 'https://terminaldweller.com', | ||
name => 'holes', | ||
description => 'gives a list of of the open sockets as an expando(this makes sense only if irssi is in an application container)', | ||
license => 'GPL3 or newer', | ||
url => 'https://github.com/irssi/scripts.irssi.org', | ||
); | ||
|
||
Irssi::settings_add_int('misc', 'holes_frequency', 30000); | ||
Irssi::settings_add_str('misc', 'holes_separator', ''); | ||
my $holes = ""; | ||
my $timeout; | ||
my $holes_cmd = << 'HOLES_CMD'; | ||
netstat -ntap 2>/dev/null | awk '{print $4}' | awk 'BEGIN{FS=":"}{print $2}' | sed '/^$/d' | ||
HOLES_CMD | ||
|
||
sub uniq { | ||
my %seen; | ||
grep !$seen{$_}++, @_; | ||
} | ||
|
||
sub holes_sub { | ||
my $result; | ||
Irssi::timeout_remove($timeout); | ||
my $output = `$holes_cmd`; | ||
my $sep = Irssi::parse_special(Irssi::settings_get_str('holes_separator')); | ||
my @lines = split /\n/, $output; | ||
@lines = uniq(@lines); | ||
$holes = ''; | ||
$result = @lines; | ||
foreach my $line (@lines) { | ||
$result = $result.$sep.$line | ||
terminaldweller marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
$holes= $result; | ||
$timeout = Irssi::timeout_add_once(Irssi::settings_get_int('holes_frequency'), 'holes_sub' , undef); | ||
} | ||
|
||
Irssi::expando_create('holes', sub { | ||
return $holes; | ||
}, {}); | ||
|
||
$timeout = Irssi::timeout_add(Irssi::settings_get_int('holes_frequency'), 'holes_sub' , undef); | ||
holes_sub(); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
be mindful, synchronous execution of command can stall irssi especially if you have a lot of open files
(maybe ss or netstat is faster)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont expect this to take long since running this script only makes sense if you are running it inside an applicatino container. The comments explicitly mention that.
But generally, you're right.