/usr/share/perl5/Message/Passing.pm is in libmessage-passing-perl 0.114-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Message::Passing;
use Moo;
use Config::Any;
use Message::Passing::Role::CLIComponent;
use Message::Passing::DSL;
use Carp qw/ confess /;
use MooX::Options flavour => [qw( pass_through )], protect_argv => 0;
use namespace::clean -except => [qw/ meta new_with_options parse_options _options_data _options_config/];
use 5.008004;
our $VERSION = '0.114';
$VERSION = eval $VERSION;
around 'parse_options' => sub {
my $orig = shift;
my $class = shift;
my %args = $orig->($class, @_);
if (my $conf = $args{configfile}) {
my $cfg = $class->get_config_from_file($conf);
foreach my $k (keys %$cfg) {
if (!exists $args{$k}) {
$args{$k} = $cfg->{$k};
}
}
}
return %args;
};
with
CLIComponent( name => 'input' ),
CLIComponent( name => 'output' ),
CLIComponent( name => 'filter', default => 'Null' ),
CLIComponent( name => 'decoder', default => 'JSON' ),
CLIComponent( name => 'encoder', default => 'JSON' ),
CLIComponent( name => 'error', default => 'STDERR' ),
CLIComponent( name => 'error_encoder', default => 'Message::Passing::Filter::Encoder::JSON' ),
'Message::Passing::Role::Script';
option configfile => (
is => 'ro',
format => 's',
);
sub get_config_from_file {
my ($class, $filename) = @_;
my ($fn, $cfg) = %{ Config::Any->load_files({
files => [$filename],
use_ext => 1,
})->[0] };
return $cfg;
}
sub build_chain {
my $self = shift;
message_chain {
error_log(
%{ $self->error_encoder_options },
class => $self->error_encoder,
output_to => output error => (
%{ $self->error_options },
class => $self->error,
),
);
output output => (
%{ $self->output_options },
class => $self->output,
);
encoder("encoder",
%{ $self->encoder_options },
class => $self->encoder,
output_to => 'output',
);
filter filter => (
%{ $self->filter_options },
class => $self->filter,
output_to => 'encoder',
);
decoder("decoder",
%{ $self->decoder_options },
class => $self->decoder,
output_to => 'filter',
);
input input => (
%{ $self->input_options },
class => $self->input,
output_to => 'decoder',
);
};
}
1;
=head1 NAME
Message::Passing - a simple way of doing messaging.
=head1 SYNOPSIS
message-pass --input STDIN --output STDOUT
{"foo": "bar"}
{"foo":"bar"}
=head1 DESCRIPTION
A library for building high performance, loosely coupled and reliable/resilient applications,
structured as small services which communicate over the network by passing messages.
=head2 BASIC PREMISE
You have data for discrete events, represented by a hash (and
serialized as JSON).
This could be a text log line, an audit record of an API
event, a metric emitted from your application that you wish
to aggregate and process - anything that can be a simple hash really..
You want to be able to shove these events over the network easily,
and aggregate them / filter and rewrite them / split them into worker queues.
This module is designed as a simple framework for writing components
that let you do all of these things, in a simple and easily extensible
manor.
For a practical example, You generate events from a source (e.g.
L<ZeroMQ> output of logs and performance metrics from your L<Catalyst> FCGI
or L<Starman> workers) and run one script that will give you a central
application log file, or push the logs into L<ElasticSearch>.
There are a growing set of components you can plug together
to make your solution.
Getting started is really easy - you can just use the C<message-passing>
command installed by the distribution. If you have a common config
that you want to repeat, or you want to write your own server
which does something more flexible than the normal script allows,
then see L<Message::Passing::DSL>.
To dive straight in, see the documentation for the command line utility
L<message-passing>, and see the examples in L<Message::Passing::Manual::Cookbook>.
For more about how the system works, see L<Message::Passing::Manual::Concepts>.
=head1 COMPONENTS
Below is a non-exhaustive list of components available.
=head2 INPUTS
Inputs receive data from a source (usually a network protocol).
They are responsible for decoding the data into a hash before passing
it onto the next stage.
Inputs include:
=over
=item L<Message::Passing::Input::STDIN>
=item L<Message::Passing::Input::ZeroMQ>
=item L<Message::Passing::Input::STOMP>
=item L<Message::Passing::Input::AMQP>
=item L<Message::Passing::Input::Syslog>
=item L<Message::Passing::Input::Redis>
=item L<Message::Passing::Input::Test>
=back
You can easily write your own input, just use L<AnyEvent>, and
consume L<Message::Passing::Role::Input>.
=head2 FILTER
Filters can transform a message in any way.
Examples include:
=over
=item L<Message::Passing::Filter::Null> - Returns the input unchanged.
=item L<Message::Passing::Filter::All> - Stops any messages it receives from being passed to the output. I.e. literally filters all input out.
=item L<Message::Passing::Filter::T> - Splits the incoming message to multiple outputs.
=back
You can easily write your own filter, just consume
L<Message::Passing::Role::Filter>.
Note that filters can be chained, and a filter can return undef to
stop a message being passed to the output.
=head2 OUTPUTS
Outputs send data to somewhere, i.e. they consume messages.
=over
=item L<Message::Passing::Output::STDOUT>
=item L<Message::Passing::Output::AMQP>
=item L<Message::Passing::Output::STOMP>
=item L<Message::Passing::Output::ZeroMQ>
=item L<Message::Passing::Output::WebHooks>
=item L<Message::Passing::Output::ElasticSearch> - (L<https://github.com/suretec/Message-Passing-Output-ElasticSearch>)
=item L<Message::Passing::Output::Redis>
=item L<Message::Passing::Output::Test>
=back
=head1 SEE ALSO
=over
=item L<Message::Passing::Manual> - The manual (contributions cherished)
=item L<http://www.slideshare.net/bobtfish/messaging-interoperability-and-log-aggregation-a-new-framework> - Slide deck!
=item L<Log::Message::Structured> - For creating your log messages.
=item L<Log::Dispatch::Message::Passing> - use Message::Passing outputs from L<Log::Dispatch>.
=back
=head1 THIS MODULE
This is a simple L<MooX::Options> script, with one input, one filter
and one output. To build your own similar scripts, see:
=over
=item L<Message::Passing::DSL> - To declare your message chains
=item L<Message::Passing::Role::CLIComponent> - To provide C<foo> and C<foo_options> attribute pairs.
=item L<Message::Passing::Role::Script> - To provide daemonization features.
=back
=head2 METHODS
=head3 build_chain
Builds and returns the configured chain of input => filter => output
=head3 start
Class method to call the run_message_server function with the results of
having constructed an instance of this class, parsed command line options
and constructed a chain.
This is the entry point for the script.
=head1 AUTHOR
Tomas (t0m) Doran <bobtfish@bobtfish.net>
=head1 SUPPORT
=head2 Bugs
Please log bugs at L<rt.cpan.org>. Each distribution has a bug tracker
link in it's L<metacpan.org> page.
=head2 Discussion
L<#message-passing> on L<irc.perl.org>.
=head2 Source code
Source code for all modules is available at L<http://github.com/suretec>
and forks / patches are very welcome.
=head1 SPONSORSHIP
This module exists due to the wonderful people at Suretec Systems Ltd.
<http://www.suretecsystems.com/> who sponsored its development for its
VoIP division called SureVoIP <http://www.surevoip.co.uk/> for use with
the SureVoIP API -
<http://www.surevoip.co.uk/support/wiki/api_documentation>
=head1 COPYRIGHT
Copyright Suretec Systems Ltd. 2012.
Logstash (upon which many ideas for this project is based, but
which we do not reuse any code from) is copyright 2010 Jorden Sissel.
=head1 LICENSE
GNU Library General Public License, Version 2.1
=cut
|