#-*- perl -*- # # Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # # $FML: Article.pm,v 1.75 2005/09/11 13:09:39 fukachan Exp $ # package FML::Article; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK); use Carp; use FML::Article::Sequence; @ISA = qw(FML::Article::Sequence); =head1 NAME FML::Article - manipulate an ML article and related information. =head1 SYNOPSIS use FML::Article; $article = new FML::Article $curproc; # get sequence number my $id = $article->increment_id; # spool in the article before delivery $article->spool_in($id); my $article_file = $article->filepath($article_id); =head1 DESCRIPTION C<$article> object is just a container which holds C
and C objects as hash keys. The C
is an C object, the C is a C object and the C is the head object of message object chains. C method sets up the $curproc as my $dupmsg = $curproc->{ 'incoming_message' }->{ message }->dup_header; $curproc->{ article }->{ message } = $dupmsg; $curproc->{ article }->{ header } = $dupmsg->whole_message_header; $curproc->{ article }->{ body } = $dupmsg->whole_message_body; This is the basic structure of the article object. =head1 METHODS =head2 new(curproc) prepare an article message, which is duplicated from the incoming message $curproc->{ incoming_message }. =cut # Descriptions: constructor. # Arguments: OBJ($self) OBJ($curproc) # Side Effects: none # Return Value: OBJ(FML::Article) sub new { my ($self, $curproc) = @_; my ($type) = ref($self) || $self; my $me = { _curproc => $curproc }; my $msg = $curproc->incoming_message(); if (defined $msg) { unless (defined $curproc->{ article }->{ message }) { _setup_article_template($curproc, $msg); } } return bless $me, $type; } # Descriptions: return lock channel name. # Arguments: OBJ($self) # Side Effects: none # Return Value: STR sub get_lock_channel_name { my ($self) = @_; # XXX LOCK_CHANNEL: article_spool return 'article_spool'; } # Descriptions: build an article template to distribute. # Arguments: OBJ($curproc) OBJ($msg_in) # Side Effects: build $curproc->{ article } HASH_REF. # Return Value: none sub _setup_article_template { my ($curproc, $msg_in) = @_; # already defined. return if defined $curproc->{ article }->{ message }; # create an article template by duplicating the incoming message my $duphdr = $msg_in->dup_header; if (defined $duphdr) { # here, we handle raw $curproc to build $curproc->{ article } ... $curproc->{ article }->{ message } = $duphdr; # head of a chain. $curproc->{ article }->{ header } = $duphdr->whole_message_header; $curproc->{ article }->{ body } = $duphdr->whole_message_body; } else { croak("cannot duplicate message"); } } =head2 spool_in($id) save the article to the file name C<$id> in the article spool. If the variable C<$use_article_spool> is 'yes', this routine works. =cut # Descriptions: spool in the article specified by $id. # Arguments: OBJ($self) NUM($id) # Side Effects: create article in ML spool # Return Value: none sub spool_in { my ($self, $id) = @_; my $curproc = $self->{ _curproc }; my $config = $curproc->config(); if ($config->yes('use_article_spool')) { my $spool_dir = $config->{ spool_dir }; my $use_subdir = $config->{ spool_type } eq 'subdir' ? 1 : 0; my $channel = $self->get_lock_channel_name(); $curproc->lock($channel); unless (-d $spool_dir) { $curproc->mkdir($spool_dir, "mode=private"); } # translate id to the article path e.g. spool/1900, spool/2/1900. my $file = $self->filepath($id); # verify and create subdir if not found before spooling in. if ($use_subdir) { my $dir = $self->subdirpath($id); unless (-d $dir) { $curproc->mkdir($dir, "mode=private"); } } unless (-f $file) { my $error = 0; # XXX-TODO: IO::Adapter::AtomicFile use FileHandle; my $fh = new FileHandle; if (defined $fh) { $fh->autoflush(1); $fh->open($file, "w"); my $header = $curproc->article_message_header(); my $body = $curproc->article_message_body(); $fh->clearerr(); $header->print($fh); $error++ if $fh->error(); print $fh "\n"; $fh->clearerr(); $body->print($fh); $error++ if $fh->error(); if ($error) { $fh->close; $curproc->logerror("failed to create article"); $self->_try_failover($curproc, $id, $file); } else { $fh->close; $curproc->log("article $id"); # update article message id cache. my $_header = $curproc->incoming_message_header(); $_header->update_article_message_id_cache($config); } } } else { $curproc->logerror("$id article already exists"); } $curproc->unlock($channel); } else { $curproc->log("article: spooling disabled"); } } # Descriptions: When we fail to create an article file, # we try to save the original message at least. # So, we try to save article content from incoming queue. # Arguments: OBJ($self) OBJ($curproc) NUM($id) STR($article_file) # Side Effects: link(2) or rename(2). # Return Value: none sub _try_failover { my ($self, $curproc, $id, $article_file) = @_; my $queue_file = $curproc->incoming_message_get_cache_file_path(); # 0. nuke (must be) broken article file. if (-f $article_file) { unlink $article_file;} # 1. try link(2). if (link($queue_file, $article_file)) { $curproc->logwarn("article: linked queue to article file"); $curproc->log("article $id (faked)"); } # 2. try rename(2). elsif (rename($queue_file, $article_file)) { $curproc->logwarn("article: renamed queue to article file"); $curproc->log("article $id (faked)"); } else { $curproc->logerror("article: give up failover."); } } =head2 prepend($data) prepend the message into the article object. =head2 append($data) append the message into the article object. =cut # Descriptions: prepend the message into the article object. # Arguments: OBJ($self) HASH_REF($data) # Side Effects: update article object. # Return Value: none sub prepend { my ($self, $data) = @_; my $curproc = $self->{ _curproc }; my $body = $curproc->article_message_body(); my $head = $body->whole_message_body_head(); $head->prepend($data); } # Descriptions: append the message into the article object. # Arguments: OBJ($self) HASH_REF($data) # Side Effects: update article object. # Return Value: none sub append { my ($self, $data) = @_; my $curproc = $self->{ _curproc }; my $body = $curproc->article_message_body(); my $tail = $body->whole_message_body_tail(); $tail->append($data); } # Descriptions: add thread outline to article header or/and body. # Arguments: OBJ($self) HASH_REF($tdb_args) # Side Effects: none # Return Value: none sub add_outline { my ($self, $tdb_args) = @_; my $curproc = $self->{ _curproc }; use FML::Article::Outline; my $outline = new FML::Article::Outline $curproc; $outline->add_outline($tdb_args); } =head1 UTILITY =head2 filepath($id) return article file path. =head2 subdirpath($id) return subdir path. =cut # Descriptions: return article file path. # Arguments: OBJ($self) NUM($id) # Side Effects: none # Return Value: STR(file path) sub filepath { my ($self, $id) = @_; my ($file_path, $dir_path) = $self->_filepath($id); return $file_path; } # Descriptions: return subdir path for this article. # Arguments: OBJ($self) NUM($id) # Side Effects: none # Return Value: STR(file path) sub subdirpath { my ($self, $id) = @_; my ($file_path, $dir_path) = $self->_filepath($id); return $dir_path; } # Descriptions: return article file and dir path. # Arguments: OBJ($self) NUM($id) # Side Effects: none # Return Value: ARRAY( STR(file path), STR(dir path) ) sub _filepath { my ($self, $id) = @_; my $curproc = $self->{ _curproc }; my $config = $curproc->config(); my $spool_dir = $config->{ spool_dir }; my $use_subdir = $config->{ spool_type } eq 'subdir' ? 1 : 0; my $unit = $config->{ spool_subdir_unit }; use Mail::Message::Spool; my $spool = new Mail::Message::Spool; my $mms_args = { base_dir => $spool_dir, id => $id, use_subdir => $use_subdir, subdir_unit => $unit, } ; my $file = $spool->filepath($mms_args); my $dir = $spool->dirpath($mms_args); # spool/ or spool/$subdir/ return ($file, $dir); } =head1 SEE ALSO L, L =head1 CODING STYLE See C on fml coding style guide. =head1 AUTHOR Ken'ichi Fukamachi =head1 COPYRIGHT Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 HISTORY FML::Article first appeared in fml8 mailing list driver package. See C for more details. =cut 1;