ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-SNMP-XS/XS.pm
(Generate patch)

Comparing Net-SNMP-XS/XS.pm (file contents):
Revision 1.7 by root, Sat Apr 11 04:22:49 2009 UTC vs.
Revision 1.17 by root, Fri Dec 21 11:22:37 2018 UTC

23=over 4 23=over 4
24 24
25=item overriding internal functions might cause the module to 25=item overriding internal functions might cause the module to
26malfunction with future versions of Net::SNMP 26malfunction with future versions of Net::SNMP
27 27
28=item only leading dots for oids are supported
29
30=item error messages will be simpler/different 28=item error messages will be simpler/different
31
32=item oid components are limited to unsigned 32 bit integers
33 29
34=item translation will be ignored (all values will be delivered "raw") 30=item translation will be ignored (all values will be delivered "raw")
35 31
36=item a moderately modern (>= C99) C compiler is required 32=item a moderately modern (>= C99) C compiler is required
37 33
45 41
46=cut 42=cut
47 43
48package Net::SNMP::XS; 44package Net::SNMP::XS;
49 45
50use strict qw(vars subs); 46use common::sense;
51no warnings;
52 47
53use Guard; 48use Net::SNMP ();
54
55use Net::SNMP::PDU (); 49use Net::SNMP::PDU ();
56use Net::SNMP::Message (); 50use Net::SNMP::Message ();
57use Net::SNMP::MessageProcessing (); 51use Net::SNMP::MessageProcessing ();
58 52
59our $VERSION; 53our $VERSION;
60our $old_prepare;
61 54
62BEGIN { 55BEGIN {
63 $VERSION = '0.02'; 56 $VERSION = 1.33;
64 57
65 $old_prepare = \&Net::SNMP::MessageProcessing::prepare_data_elements; 58 # this overrides many methods inside Net::SNMP and it's submodules
66
67 # this overrides many methods inside
68 require XSLoader; 59 require XSLoader;
69 XSLoader::load Net::SNMP::XS, $VERSION; 60 XSLoader::load Net::SNMP::XS, $VERSION;
70} 61}
71 62
72sub Net::SNMP::MessageProcessing::prepare_data_elements { 63package Net::SNMP::Message;
73 my ($self, $msg) = @_;
74 64
75 set_msg $msg, $msg->{_buffer}; 65Net::SNMP::XS::set_type INTEGER , \&_process_integer32;
76 scope_guard \&clr_msg; 66Net::SNMP::XS::set_type OCTET_STRING , \&_process_octet_string;
77 &$old_prepare 67Net::SNMP::XS::set_type NULL , \&_process_null;
78} 68Net::SNMP::XS::set_type OBJECT_IDENTIFIER, \&_process_object_identifier;
69Net::SNMP::XS::set_type SEQUENCE , \&_process_sequence;
70Net::SNMP::XS::set_type IPADDRESS , \&_process_ipaddress;
71Net::SNMP::XS::set_type COUNTER , \&_process_counter;
72Net::SNMP::XS::set_type GAUGE , \&_process_gauge;
73Net::SNMP::XS::set_type TIMETICKS , \&_process_timeticks;
74Net::SNMP::XS::set_type OPAQUE , \&_process_opaque;
75Net::SNMP::XS::set_type COUNTER64 , \&_process_counter64;
76Net::SNMP::XS::set_type NOSUCHOBJECT , \&_process_nosuchobject;
77Net::SNMP::XS::set_type NOSUCHINSTANCE , \&_process_nosuchinstance;
78Net::SNMP::XS::set_type ENDOFMIBVIEW , \&_process_endofmibview;
79Net::SNMP::XS::set_type GET_REQUEST , \&_process_get_request;
80Net::SNMP::XS::set_type GET_NEXT_REQUEST , \&_process_get_next_request;
81Net::SNMP::XS::set_type GET_RESPONSE , \&_process_get_response;
82Net::SNMP::XS::set_type SET_REQUEST , \&_process_set_request;
83Net::SNMP::XS::set_type TRAP , \&_process_trap;
84Net::SNMP::XS::set_type GET_BULK_REQUEST , \&_process_get_bulk_request;
85Net::SNMP::XS::set_type INFORM_REQUEST , \&_process_inform_request;
86Net::SNMP::XS::set_type SNMPV2_TRAP , \&_process_v2_trap;
87Net::SNMP::XS::set_type REPORT , \&_process_report;
79 88
89package Net::SNMP::PDU;
90
91# var_bind_list hardcodes oid_lex_sort. *sigh*
92# we copy it 1:1, except for using oid_lex_sort.
93
94sub var_bind_list
80{ 95{
81 package Net::SNMP::Message; 96 my ($this, $vbl, $types) = @_;
82 97
83 Net::SNMP::XS::set_type INTEGER , \&_process_integer32; 98 return if defined($this->{_error});
84 Net::SNMP::XS::set_type OCTET_STRING , \&_process_octet_string; 99
85 Net::SNMP::XS::set_type NULL , \&_process_null; 100 if (@_ > 1) {
86 Net::SNMP::XS::set_type OBJECT_IDENTIFIER, \&_process_object_identifier; 101 # The VarBindList HASH is being updated from an external
87 Net::SNMP::XS::set_type SEQUENCE , \&_process_sequence; 102 # source. We need to update the VarBind names ARRAY to
88 Net::SNMP::XS::set_type IPADDRESS , \&_process_ipaddress; 103 # correspond to the new keys of the HASH. If the updated
89 Net::SNMP::XS::set_type COUNTER , \&_process_counter; 104 # information is valid, we will use lexicographical ordering
90 Net::SNMP::XS::set_type GAUGE , \&_process_gauge; 105 # for the ARRAY entries since we do not have a PDU to use
91 Net::SNMP::XS::set_type TIMETICKS , \&_process_timeticks; 106 # to determine the ordering. The ASN.1 types HASH is also
92 Net::SNMP::XS::set_type OPAQUE , \&_process_opaque; 107 # updated here if a cooresponding HASH is passed. We double
93 Net::SNMP::XS::set_type COUNTER64 , \&_process_counter64; 108 # check the mapping by populating the hash with the keys of
94 Net::SNMP::XS::set_type NOSUCHOBJECT , \&_process_nosuchobject; 109 # the VarBindList HASH.
95 Net::SNMP::XS::set_type NOSUCHINSTANCE , \&_process_nosuchinstance; 110
96 Net::SNMP::XS::set_type ENDOFMIBVIEW , \&_process_endofmibview; 111 if (!defined($vbl) || (ref($vbl) ne 'HASH')) {
97 Net::SNMP::XS::set_type GET_REQUEST , \&_process_get_request; 112
98 Net::SNMP::XS::set_type GET_NEXT_REQUEST , \&_process_get_next_request; 113 $this->{_var_bind_list} = undef;
99 Net::SNMP::XS::set_type GET_RESPONSE , \&_process_get_response; 114 $this->{_var_bind_names} = [];
100 Net::SNMP::XS::set_type SET_REQUEST , \&_process_set_request; 115 $this->{_var_bind_types} = undef;
101 Net::SNMP::XS::set_type TRAP , \&_process_trap; 116
102 Net::SNMP::XS::set_type GET_BULK_REQUEST , \&_process_get_bulk_request; 117 } else {
103 Net::SNMP::XS::set_type INFORM_REQUEST , \&_process_inform_request; 118
104 Net::SNMP::XS::set_type SNMPV2_TRAP , \&_process_v2_trap; 119 $this->{_var_bind_list} = $vbl;
105 Net::SNMP::XS::set_type REPORT , \&_process_report; 120
121 @{$this->{_var_bind_names}} = Net::SNMP::oid_lex_sort keys %$vbl;
122
123 if (!defined($types) || (ref($types) ne 'HASH')) {
124 $types = {};
125 }
126
127 map {
128 $this->{_var_bind_types}->{$_} =
129 exists($types->{$_}) ? $types->{$_} : undef;
130 } keys(%{$vbl});
131
132 }
133
134 }
135
136 $this->{_var_bind_list};
106} 137}
107 138
1081; 1391;
109 140
110=head1 AUTHOR 141=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines