gspamprocessor.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2001-2013 Graeme Walker <graeme_walker@users.sourceforge.net>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 // ===
20 
21 #ifndef G_SMTP_SPAM_PROCESSOR_H
22 #define G_SMTP_SPAM_PROCESSOR_H
23 
24 #include "gdef.h"
25 #include "gsmtp.h"
26 #include "gprocessor.h"
27 #include "gclientptr.h"
28 #include "gspamclient.h"
29 
31 namespace GSmtp
32 {
33  class SpamProcessor ;
34 }
35 
44 {
45 public:
46  SpamProcessor( const std::string & , unsigned int connection_timeout , unsigned int response_timeout ) ;
48 
49  virtual ~SpamProcessor() ;
51 
52  virtual G::Signal1<bool> & doneSignal() ;
54 
55  virtual void start( const std::string & path ) ;
57 
58  virtual void abort() ;
60 
61  virtual std::string text() const ;
63 
64  virtual bool cancelled() const ;
66 
67  virtual bool repoll() const ;
69 
70 private:
71  SpamProcessor( const SpamProcessor & ) ; // not implemented
72  void operator=( const SpamProcessor & ) ; // not implemented
73  void clientEvent( std::string , std::string ) ;
74 
75 private:
76  G::Signal1<bool> m_done_signal ;
77  GNet::ResolverInfo m_resolver_info ;
78  unsigned int m_connection_timeout ;
79  unsigned int m_response_timeout ;
81  std::string m_text ;
82 } ;
83 
84 #endif
SMTP and message-store classes.
An interface for processing message files.
Definition: gprocessor.h:51
virtual bool cancelled() const
Final override from GSmtp::Processor.
virtual void abort()
Final override from GSmtp::Processor.
A class that holds a host/service name pair and optionally the results of a name-to-address lookup...
Definition: gresolverinfo.h:48
virtual void start(const std::string &path)
Final override from GSmtp::Processor.
A Processor class that passes the body of a message file to a remote process over the network and sto...
virtual G::Signal1< bool > & doneSignal()
Final override from GSmtp::Processor.
virtual ~SpamProcessor()
Destructor.
SpamProcessor(const std::string &, unsigned int connection_timeout, unsigned int response_timeout)
Constructor.
A smart pointer class for GNet::HeapClient.
Definition: gclientptr.h:60
virtual std::string text() const
Final override from GSmtp::Processor.
virtual bool repoll() const
Final override from GSmtp::Processor.