/usr/share/perl5/OpaL/manipulate.pm is in opalmod 0.2.2.
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 | #!/usr/bin/perl
# OpaL Perl Modules
# Copyright (C) 2000,2007-2008 Ola Lundqvist <ola@inguza.com>
#
# For full COPYRIGHT notice see the COPYING document.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of either:
#
# a) the GNU General Public License as published by the Free
# Software Foundation; either version 1, or (at your option) any
# later version, or
#
# b) the "Artistic License" which comes with this Kit.
#
# This program 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 either
# the GNU General Public License or the Artistic License for more details.
#
#
# For more information take a look at the official homepage at:
# http://inguza.com/software/opalmod
# or contact the author at:
# ola@inguza.com
#
package OpaL::manipulate;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
use POSIX qw(strftime);
require Exporter;
@ISA = qw(Exporter AutoLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw( );
@EXPORT_OK = qw(perlmodifyadvanced perlmodify perlmodify_insertafter);
# If you are using CVS/RCS this can be quite handy.
#$VERSION = do{my@r=q$Revision: 1.14 $=~/\d+/g;sprintf '%d.'.'%02d'x$#r,@r};
# If that is not what you want use this instead. Will be rewritten by
# create release.
my $version = '0.01';
$VERSION = $version;
###############################################################################
############################ PACKAGE GLOBALS ##################################
###############################################################################
use OpaL::action qw(pdebug cmdaction);
use OpaL::read qw(readscalarfile);
# First exported ones (those in @EXPORT or @EXPORT_OK)
# Then package other global ones. (not exported ones)
# Can be accessed through $OpaL::manipulate::variablename
# All file-scooped variables must be created before any method that uses them.
# my $myvar = '';
###############################################################################
########################### PRELOADED METHODS #################################
###############################################################################
# Preloaded methods go here.
# Autoload methods go after =cut, and are processed by the autosplit program.
# Modules must return true.
1;
__END__
###############################################################################
############################# DOCUMENTATION ###################################
###############################################################################
# Below is the stub of documentation for your module. You better edit it!
=head1 NAME
OpaL::manipulate - Perl extension for manipulating files.
=head1 SYNOPSIS
use OpaL::manipulate qw(functions);
No functions or variables are exported automaticly so you have to specify
them here.
=head1 DESCRIPTION
OpaL::manipulate is a module for manipulating files.
All functions are autoloaded so they will not be loaded into memory if you
have not used them before.
=head1 FUNCTIONS
=over 4
=item B<perlmodifyadvanced>
It simply applies the script to the file to change its content.
You also have to apply a message to tell what you are doing mostly for debugging and if any error occures. The error level tells how critical this action is
to the script.
USAGE:
C<perlmodifyadvanced>("file", "script",
"message", errorlevel);
The errorlevel is optional.
=item B<perlmodify>
It simply fixes some stuff in the script string and then calls
perlmodifyadvanced.
USAGE:
C<perlmodify>("file", "script",
"message", errorlevel);
The errorlevel is optional.
=item B<perlmodify_insertafter>
This function searches for something (regular expression). It if is found it
inserts the text after it. But it will never insert the text twice.
You also have to apply a message to tell what you are doing mostly for
debugging and if any error occures. The error level tells how critical this
action is to the script.
USAGE:
C<perlmodify_insertafter>("file", "find", "text",
"message", errorlevel);
The errorlevel is optional.
=back
=head1 AUTHOR
Ola Lundqvist <ola@inguza.com>
=head1 REQUIRES
B<OpaL::action>, B<OpaL::read>.
=head1 SEE ALSO
L<OpaL::action>
L<OpaL::read>
perl(1)
=cut
###############################################################################
########################### AUTOLOAD METHODS ##################################
###############################################################################
###############################################################################
# Name: perlmodifyadvanced
# Description: Modifiles a (text)file with the help of a perl-script.
# eg. perl -pi -e script file.
# Arguments: $file, $script, $message [, $level ]
# Uses: system, perl, cmdaction
# Author: Ola Lundqvist <ola@inguza.com>
# Date: 2000-05-04 Written
# 2000-05-13 Better argument definition.
# 2000-06-29 Added argument definition.
###############################################################################
sub perlmodifyadvanced {#($$$;$) {
my $file = shift;
my $script = shift;
my $message = shift;
my $level = shift;
&cmdaction("perl -pi -e \'$script\' $file", $message, $level);
}
###############################################################################
# Name: perlmodify
# Description: Modifiles a (text)file with the help of a perl-script.
# eg. perl -pi -e script file. And makes some fixes before.
# Arguments: $file, $script, $message [, $level ]
# Uses: system, perl, cmdaction
# Author: Ola Lundqvist <ola@inguza.com>
# Date: 2000-05-04 Written
# 2000-05-13 Better argument definition.
# 2000-06-04 Added some fixes to make it more secure.
# 2000-06-29 Added argument definition.
###############################################################################
sub perlmodify {#($$$;$) {
my ($file, $script, $message, $level) = @_;
$script =~ s/\@/\\\@/g;
$script =~ s/\%/\\\%/g;
$script =~ s/\$([a-z]A-Z)/\\\$$1/g;
&perlmodifyadvanced($file, $script, $message, $level);
}
###############################################################################
# Name: perlmodify_insertafter
# Description: Mdifiles a (text)file with the help of a perl-script.
# eg. perl -pi -e script file.
# Arguments: $file, $find, $text, $message [, $level ]
# Uses: perlmodify
# Author: Ola Lundqvist <ola@inguza.com>
# Date: 2000-05-04
# 2000-06-04 Fixed so that insert after do not make
# repeated inserts. (never ever)
# 2000-06-29 Added argument definition.
###############################################################################
sub perlmodify_insertafter {#($$$$;$) {
my $file = shift;
my $find = shift;
my $insert = shift;
$insert =~ s/\$/\\\$/g;
$insert =~ s/\n$//;
my $message = shift;
my $level = shift;
my $data = &readscalarfile("$file");
my $test = "$find$insert";
$data =~ s/\$//g;
$test =~ s/\$//g;
$data =~ s/\*//g;
$test =~ s/\*//g;
$data =~ s/\+//g;
$test =~ s/\+//g;
$data =~ s/\-//g;
$test =~ s/\-//g;
$data =~ s/\@//g;
$test =~ s/\@//g;
$data =~ s/\%//g;
$test =~ s/\%//g;
$data =~ s/\n//g;
$test =~ s/\n//g;
$data =~ s/\///g;
$test =~ s/\///g;
$data =~ s/\(//g;
$test =~ s/\(//g;
$data =~ s/\)//g;
$test =~ s/\)//g;
$data =~ s/\[//g;
$test =~ s/\]//g;
$data =~ s/\.//g;
$test =~ s/\.//g;
$data =~ s/\s+/ /g;
$test =~ s/\s+/ /g;
if ($data !~ /$test/) {
&perlmodify("$file",
"s|($find)|\$1$insert|",
$message,
$level);
}
else {
pdebug(5, "Information already exists.");
}
}
|