/usr/share/sympa/lib/Task.pm is in sympa 6.1.7~dfsg-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 | # Task.pm - This module includes Task processing functions, used by task_manager.pl
#<!-- RCS Identication ; $Revision: 5958 $ ; $Date: 2009-07-10 16:44:46 +0200 (ven 10 jui 2009) $ -->
#
# Sympa - SYsteme de Multi-Postage Automatique
# Copyright (c) 1997, 1998, 1999, 2000, 2001 Comite Reseau des Universites
# Copyright (c) 1997,1998, 1999 Institut Pasteur & Christophe Wolfhugel
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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 the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package Task;
use strict;
use Carp;
use List;
use Conf;
use Log;
use tools;
my @task_list;
my %task_by_list;
my %task_by_model;
## Creates a new Task object
sub new {
my($pkg, $file) = @_;
my $task;
&do_log('debug2', 'Task::new(%s)',$file);
$task->{'filepath'} = $file;
## We might get a filepath
## Extract filename from path
my @path = split /\//, $file;
$task->{'filename'} = $path[$#path];
my $listname_regexp = &tools::get_regexp('listname');
my $host_regexp = &tools::get_regexp('host');
## File including the list domain
if ($task->{'filename'} =~ /^(\d+)\.(\w*)\.(\w+)\.($listname_regexp|_global)\@($host_regexp)$/) {
$task->{'date'} = $1;
$task->{'label'} = $2;
$task->{'model'} = $3;
$task->{'object'} = $4;
$task->{'domain'} = $5;
if ($task->{'object'} ne '_global') { # list task
$task->{'list_object'} = new List ($task->{'object'},$task->{'domain'});
$task->{'domain'} = $task->{'list_object'}{'domain'};
}
}elsif ($task->{'filename'} =~ /^(\d+)\.(\w*)\.(\w+)\.($listname_regexp|_global)$/) {
$task->{'date'} = $1;
$task->{'label'} = $2;
$task->{'model'} = $3;
$task->{'object'} = $4;
if ($task->{'object'} ne '_global') { # list task
$task->{'list_object'} = new List ($task->{'object'});
$task->{'domain'} = $task->{'list_object'}{'domain'};
}
}else {
&do_log('err', "Unknown format for task '%s'", $task->{'filename'});
return undef;
}
$task->{'id'} = $task->{'object'};
$task->{'id'} .= '@'.$task->{'domain'} if (defined $task->{'domain'});
## Bless Task object
bless $task, $pkg;
return $task;
}
## Build all Task objects
sub list_tasks {
my $spool_task = shift;
## Create required tasks
unless (opendir(DIR, $spool_task)) {
&do_log ('err', "error : can't open dir %s: %m", $spool_task);
}
my @task_files = sort epoch_sort (grep !/^\.\.?$/, readdir DIR); # @tasks updating
closedir DIR;
## Reset the list of tasks
undef @task_list;
undef %task_by_list;
undef %task_by_model;
## Create Task objects
foreach my $t (@task_files) {
next if ($t =~ /^\./);
my $task = new Task ($spool_task.'/'.$t);
## Maintain list of tasks
push @task_list, $task;
my $list_id = $task->{'id'};
my $model = $task->{'model'};
$task_by_model{$model}->{$list_id} = $task;
$task_by_list{$list_id}->{$model} = $task;
}
return 1;
}
## Return a list tasks for the given list
sub get_tasks_by_list {
my $list_id = shift;
return () unless (defined $task_by_list{$list_id});
return values %{$task_by_list{$list_id}};
}
sub get_used_models {
## Optional list parameter
my $list_id = shift;
if (defined $list_id) {
if (defined $task_by_list{$list_id}) {
return keys %{$task_by_list{$list_id}}
}else {
return ();
}
}else {
return keys %task_by_model;
}
}
sub get_task_list {
return @task_list;
}
## sort task name by their epoch date
sub epoch_sort {
$a =~ /(\d+)\..+/;
my $date1 = $1;
$b =~ /(\d+)\..+/;
my $date2 = $1;
$date1 <=> $date2;
}
## Packages must return true.
1;
|