/usr/share/perl5/Net/Jabber/Log.pm is in libnet-jabber-perl 2.0-8.
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 | ##############################################################################
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# Jabber
# Copyright (C) 1998-1999 The Jabber Team http://jabber.org/
#
##############################################################################
package Net::Jabber::Log;
=head1 NAME
Net::Jabber::Log - Jabber Log Module
=head1 SYNOPSIS
Net::Jabber::Log is a companion to the Net::Jabber module.
It provides the user a simple interface to set and retrieve all
parts of a Jabber Log.
=head1 DESCRIPTION
To initialize the Log with a Jabber <log/> you must pass it the
XML::Parser Tree array. For example:
my $log = new Net::Jabber::Log(@tree);
There has been a change from the old way of handling the callbacks.
You no longer have to do the above, a Net::Jabber::Log object is passed
to the callback function for the log:
use Net::Jabber;
sub log {
my ($Log) = @_;
.
.
.
}
You now have access to all of the retrieval functions available.
To create a new log to send to the server:
use Net::Jabber;
$Log = new Net::Jabber::Log();
Now you can call the creation functions below to populate the tag before
sending it.
For more information about the array format being passed to the CallBack
please read the Net::Jabber::Client documentation.
=head2 Retrieval functions
$from = $Log->GetFrom();
$fromJID = $Log->GetFrom("jid");
$type = $Log->GetType();
$data = $Log->GetData();
$str = $Log->GetXML();
@log = $Log->GetTree();
=head2 Creation functions
$Log->SetLog(type=>"error",
from=>"users.jabber.org",
data=>"The moon is full... I can't run anymore.");
$Log->SetFrom("foo.jabber.org");
$Log->SetType("warn");
$Log->SetData("I can't find a config file. Using defaults.");
=head2 Test functions
$test = $Log->DefinedFrom();
$test = $Log->DefinedType();
=head1 METHODS
=head2 Retrieval functions
GetFrom() - returns either a string with the Jabber Identifier,
GetFrom("jid") or a Net::Jabber::JID object for the person who
sent the <log/>. To get the JID object set
the string to "jid", otherwise leave blank for the
text string.
GetType() - returns a string with the type <log/> this is.
GetData() - returns a string with the cdata of the <log/>.
GetXML() - returns the XML string that represents the <log/>.
This is used by the Send() function in Client.pm to send
this object as a Jabber Log.
GetTree() - returns an array that contains the <log/> tag
in XML::Parser Tree format.
=head2 Creation functions
SetLog(from=>string|JID, - set multiple fields in the <log/>
type=>string, at one time. This is a cumulative
data=>string) and over writing action. If you set
the "from" attribute twice, the second
setting is what is used. If you set
the type, and then set the data
then both will be in the <log/>
tag. For valid settings read the
specific Set functions below.
SetFrom(string) - sets the from attribute. You can either pass a string
SetFrom(JID) or a JID object. They must be valid Jabber
Identifiers or the server will return an error log.
(ie. jabber:bob@jabber.org/Silent Bob, etc...)
SetType(string) - sets the type attribute. Valid settings are:
notice general logging
warn warning
alert critical error (can still run but not
correctly)
error fatal error (cannot run anymore)
SetData(string) - sets the cdata of the <log/>.
=head2 Test functions
DefinedFrom() - returns 1 if the from attribute is defined in the
<log/>, 0 otherwise.
DefinedType() - returns 1 if the type attribute is defined in the
<log/>, 0 otherwise.
=head1 AUTHOR
By Ryan Eatmon in May of 2000 for http://jabber.org..
=head1 COPYRIGHT
This module is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
require 5.003;
use strict;
use Carp;
use vars qw($VERSION $AUTOLOAD %FUNCTIONS);
$VERSION = "2.0";
sub new
{
my $proto = shift;
my $class = ref($proto) || $proto;
my $self = { };
$self->{VERSION} = $VERSION;
$self->{TIMESTAMP} = &Net::Jabber::GetTimeStamp("local");
bless($self, $proto);
$self->{DEBUG} = new Net::Jabber::Debug(usedefault=>1,
header=>"NJ::Log");
if ("@_" ne (""))
{
if (ref($_[0]) eq "Net::Jabber::Log")
{
return $_[0];
}
else
{
my @temp = @_;
$self->{LOG} = \@temp;
}
}
else
{
$self->{LOG} = [ "log" , [{}]];
}
return $self;
}
##############################################################################
#
# AUTOLOAD - This function calls the delegate with the appropriate function
# name and argument list.
#
##############################################################################
sub AUTOLOAD
{
my $self = shift;
return if ($AUTOLOAD =~ /::DESTROY$/);
$AUTOLOAD =~ s/^.*:://;
my ($type,$value) = ($AUTOLOAD =~ /^(Get|Set|Defined)(.*)$/);
$type = "" unless defined($type);
my $treeName = "LOG";
return "log" if ($AUTOLOAD eq "GetTag");
return &XML::Stream::BuildXML(@{$self->{$treeName}}) if ($AUTOLOAD eq "GetXML");
return @{$self->{$treeName}} if ($AUTOLOAD eq "GetTree");
return &Net::Jabber::Get($self,$self,$value,$treeName,$FUNCTIONS{get}->{$value},@_) if ($type eq "Get");
return &Net::Jabber::Set($self,$self,$value,$treeName,$FUNCTIONS{set}->{$value},@_) if ($type eq "Set");
return &Net::Jabber::Defined($self,$self,$value,$treeName,$FUNCTIONS{defined}->{$value},@_) if ($type eq "Defined");
return &Net::Jabber::debug($self,$treeName) if ($AUTOLOAD eq "debug");
&Net::Jabber::MissingFunction($self,$AUTOLOAD);
}
$FUNCTIONS{get}->{From} = ["value","","from"];
$FUNCTIONS{get}->{Type} = ["value","","type"];
$FUNCTIONS{get}->{Data} = ["value","",""];
$FUNCTIONS{set}->{Type} = ["single","","","type","*"];
$FUNCTIONS{set}->{Data} = ["single","","*","",""];
$FUNCTIONS{defined}->{From} = ["existence","","from"];
$FUNCTIONS{defined}->{Type} = ["existence","","type"];
##############################################################################
#
# GetXML - returns the XML string that represents the data in the XML::Parser
# Tree.
#
##############################################################################
sub GetXML
{
my $self = shift;
$self->MergeX();
return &XML::Stream::BuildXML(@{$self->{LOG}});
}
##############################################################################
#
# GetTree - returns the XML::Parser Tree that is stored in the guts of
# the object.
#
##############################################################################
sub GetTree
{
my $self = shift;
$self->MergeX();
return %{$self->{LOG}};
}
##############################################################################
#
# SetLog - takes a hash of all of the things you can set on a <log/>
# and sets each one.
#
##############################################################################
sub SetLog
{
my $self = shift;
my %log;
while($#_ >= 0) { $log{ lc pop(@_) } = pop(@_); }
$self->SetFrom($log{from}) if exists($log{from});
$self->SetType($log{type}) if exists($log{type});
$self->SetData($log{data}) if exists($log{data});
}
##############################################################################
#
# SetFrom - sets the from attribute in the <log/>
#
##############################################################################
sub SetFrom
{
my $self = shift;
my ($from) = @_;
if (ref($from) eq "Net::Jabber::JID")
{
$from = $from->GetJID("full");
}
return unless ($from ne "");
&XML::Stream::SetXMLData("single",$self->{LOG},"","",{from=>$from});
}
1;
|