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
|
#
# Module Generated by Template::Tiny on Fri Aug 4 11:16:27 UTC 2023
#
package ZMQ::FFI::ZMQ2::Context;
$ZMQ::FFI::ZMQ2::Context::VERSION = '1.19';
use FFI::Platypus;
use ZMQ::FFI::Util qw(zmq_soname current_tid);
use ZMQ::FFI::Constants qw(:all);
use ZMQ::FFI::ZMQ2::Socket;
use ZMQ::FFI::ZMQ2::Raw;
use ZMQ::FFI::Custom::Raw;
use Try::Tiny;
use Scalar::Util qw(weaken);
use Moo;
use namespace::clean;
with qw(
ZMQ::FFI::ContextRole
ZMQ::FFI::ErrorHelper
ZMQ::FFI::Versioner
);
my $FFI_LOADED;
sub BUILD {
my ($self) = @_;
unless ($FFI_LOADED) {
ZMQ::FFI::Custom::Raw::load($self->soname);
ZMQ::FFI::ZMQ2::Raw::load($self->soname);
$FFI_LOADED = 1;
}
$self->init()
}
has '+threads' => (
default => 1,
);
sub init {
my ($self) = @_;
if ($self->has_max_sockets) {
$self->bad_version(
$self->verstr,
'max_sockets option not available in zmq 2.x',
'use_die',
)
}
try {
$self->context_ptr( zmq_init($self->threads) );
$self->check_null('zmq_init', $self->context_ptr);
}
catch {
$self->context_ptr(-1);
die $_;
};
}
sub get {
my ($self) = @_;
$self->bad_version(
$self->verstr,
"getting ctx options not available in zmq 2.x"
);
}
sub set {
my ($self) = @_;
$self->bad_version(
$self->verstr,
"setting ctx options not available in zmq 2.x"
);
}
sub socket {
my ($self, $type) = @_;
my $socket;
try {
my $socket_ptr = zmq_socket($self->context_ptr, $type);
$self->check_null('zmq_socket', $socket_ptr);
$socket = ZMQ::FFI::ZMQ2::Socket->new(
socket_ptr => $socket_ptr,
context => $self, # this will become a weak ref
type => $type,
soname => $self->soname,
);
}
catch {
die $_;
};
# add the socket to the socket hash
$self->_add_socket($socket);
return $socket;
}
sub proxy {
my ($self, $frontend, $backend, $capture) = @_;
if ($capture){
$self->bad_version(
$self->verstr,
"capture socket not supported in zmq 2.x"
);
}
$self->check_error(
'zmq_device',
zmq_device(ZMQ_STREAMER, $frontend->socket_ptr, $backend->socket_ptr)
);
}
sub device {
my ($self, $type, $frontend, $backend) = @_;
$self->check_error(
'zmq_device',
zmq_device($type, $frontend->socket_ptr, $backend->socket_ptr)
);
}
sub destroy {
my ($self) = @_;
return if $self->context_ptr == -1;
# don't try to cleanup context cloned from another thread
return unless $self->_tid == current_tid();
# don't try to cleanup context copied from another process (fork)
return unless $self->_pid == $$;
$self->check_error(
'zmq_term',
zmq_term($self->context_ptr)
);
$self->context_ptr(-1);
}
sub curve_keypair {
my ($self) = @_;
$self->bad_version(
$self->verstr,
"curve_keypair not available in < zmq 4.x"
);
}
sub z85_encode {
my ($self) = @_;
$self->bad_version(
$self->verstr,
"z85_encode not available in < zmq 4.x"
);
}
sub z85_decode {
my ($self) = @_;
$self->bad_version(
$self->verstr,
"z85_decode not available in < zmq 4.x"
);
}
sub has_capability {
my ($self) = @_;
$self->bad_version(
$self->verstr,
"has_capability not available in < zmq 4.1"
);
}
sub _add_socket {
my ($self, $socket) = @_;
weaken($self->sockets->{$socket} = $socket);
}
sub _remove_socket {
my ($self, $socket) = @_;
delete($self->sockets->{$socket});
}
sub DEMOLISH {
my ($self) = @_;
return if $self->context_ptr == -1;
# check defined to guard against
# undef objects during global destruction
if (defined $self->sockets) {
for my $socket_k (keys %{$self->sockets}) {
my $socket = $self->_remove_socket($socket_k);
$socket->close()
if defined $socket && $socket->socket_ptr != -1;
}
}
$self->destroy();
}
1;
# vim:ft=perl
__END__
=pod
=encoding UTF-8
=head1 NAME
ZMQ::FFI::ZMQ2::Context
=head1 VERSION
version 1.19
=head1 AUTHOR
Dylan Cali <calid1984@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2023 by Dylan Cali.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|