PTLib
Version 2.18.8
|
A channel for sending/receiving RFC822 compliant mail messages. More...
#include <inetmail.h>
Public Types | |
enum | Direction { Sending, Receiving } |
![]() | |
enum | PXBlockType { PXReadBlock, PXWriteBlock, PXAcceptBlock, PXConnectBlock } |
enum | Errors { NoError, NotFound, FileExists, DiskFull, AccessDenied, DeviceInUse, BadParameter, NoMemory, NotOpen, Timeout, Interrupted, BufferTooSmall, Miscellaneous, ProtocolFailure, Unavailable, NumNormalisedErrors } |
Normalised error codes. More... | |
enum | ErrorGroup { LastReadError, LastWriteError, LastGeneralError, NumErrorGroups } |
Error groups. More... | |
typedef PNotifierTemplate < PChannel::AsyncContext & > | AsyncNotifier |
enum | ShutdownValue { ShutdownRead = 0, ShutdownWrite = 1, ShutdownReadAndWrite = 2 } |
![]() | |
enum | Comparison { LessThan = -1, EqualTo = 0, GreaterThan = 1 } |
Result of the comparison operation performed by the Compare() function. More... | |
Public Member Functions | |
PRFC822Channel (Direction direction) | |
Construct a RFC822 aware channel. More... | |
~PRFC822Channel () | |
Close the channel before destruction. More... | |
PBoolean | Close () |
Close the channel. More... | |
virtual PBoolean | Write (const void *buf, PINDEX len) |
Low level write to the channel. More... | |
void | NewMessage (Direction direction) |
Begin a new message. More... | |
PString | MultipartMessage () |
Enter multipart MIME message mode. More... | |
PBoolean | MultipartMessage (const PString &boundary) |
Enter multipart MIME message mode. More... | |
void | NextPart (const PString &boundary) |
Indicate that a new multipart message part is to begin. More... | |
void | SetFromAddress (const PString &fromAddress) |
Set the sender address. More... | |
void | SetToAddress (const PString &toAddress) |
Set the recipient address(es). More... | |
void | SetCC (const PString &ccAddress) |
Set the Carbon Copy address(es). More... | |
void | SetBCC (const PString &bccAddress) |
Set the Blind Carbon Copy address(es). More... | |
void | SetSubject (const PString &subject) |
Set the message subject. More... | |
void | SetContentType (const PString &contentType) |
Set the content type. More... | |
void | SetContentAttachment (const PFilePath &filename) |
Set the content disposition for attachments. More... | |
void | SetTransferEncoding (const PString &encoding, PBoolean autoTranslate=true) |
Set the content transfer encoding. More... | |
void | SetHeaderField (const PString &name, const PString &value) |
Set the and arbitrary header field. More... | |
![]() | |
PIndirectChannel () | |
Create a new indirect channel without any channels to redirect to. More... | |
~PIndirectChannel () | |
Close the indirect channel, deleting read/write channels if desired. More... | |
Comparison | Compare (const PObject &obj) const |
Determine if the two objects refer to the same indirect channel. More... | |
virtual PString | GetName () const |
Get the name of the channel. More... | |
virtual P_INT_PTR | GetHandle () const |
Get the OS specific handle for the PSoundChannel. More... | |
virtual PBoolean | IsOpen () const |
Determine if the channel is currently open and read and write operations can be executed on it. More... | |
virtual PBoolean | Read (void *buf, PINDEX len) |
Low level read from the channel. More... | |
virtual int | ReadChar () |
Read a single character from the channel. More... | |
virtual PBoolean | Shutdown (ShutdownValue option) |
Close one or both of the data streams associated with a channel. More... | |
virtual bool | SetLocalEcho (bool localEcho) |
Set local echo mode. More... | |
virtual PChannel * | GetBaseReadChannel () const |
This function returns the eventual base channel for reading of a series of indirect channels provided by descendents of PIndirectChannel . More... | |
virtual PChannel * | GetBaseWriteChannel () const |
This function returns the eventual base channel for writing of a series of indirect channels provided by descendents of PIndirectChannel . More... | |
virtual bool | CloseBaseReadChannel () |
Close the base channel of channel indirection using PIndirectChannel. More... | |
virtual bool | CloseBaseWriteChannel () |
Close the base channel of channel indirection using PIndirectChannel. More... | |
virtual PString | GetErrorText (ErrorGroup group=NumErrorGroups) const |
Get error message description. More... | |
PBoolean | Open (PChannel &channel) |
Set the channel for both read and write operations. More... | |
PBoolean | Open (PChannel *channel, PBoolean autoDelete=true) |
Set the channel for both read and write operations. More... | |
PBoolean | Open (PChannel *readChannel, PChannel *writeChannel, PBoolean autoDeleteRead=true, PBoolean autoDeleteWrite=true) |
Set the channel for both read and write operations. More... | |
PChannel * | Detach (ShutdownValue option=ShutdownReadAndWrite) |
Detach without closing the read/write channel. More... | |
PChannel * | GetReadChannel () const |
Get the channel used for read operations. More... | |
bool | SetReadChannel (PChannel *channel, bool autoDelete=true, bool closeExisting=false) |
Set the channel for read operations. More... | |
PChannel * | GetWriteChannel () const |
Get the channel used for write operations. More... | |
PBoolean | SetWriteChannel (PChannel *channel, bool autoDelete=true, bool closeExisting=false) |
Set the channel for read operations. More... | |
template<class ChannelClass > | |
ChannelClass * | FindChannel () |
Locate a channel of a specific class in the indirect chain. More... | |
![]() | |
PBoolean | SetErrorValues (Errors errorCode, int osError, ErrorGroup group=LastGeneralError) |
Set error values to those specified. More... | |
virtual PINDEX | HashFunction () const |
Calculate a hash value for use in sets and dictionaries. More... | |
FILE * | FDOpen (const char *mode) |
Re-open the device using the stdio library. More... | |
void | SetReadTimeout (const PTimeInterval &time) |
Set the timeout for read operations. More... | |
PTimeInterval | GetReadTimeout () const |
Get the timeout for read operations. More... | |
virtual PINDEX | GetLastReadCount () const |
Get the number of bytes read by the last Read() call. More... | |
virtual PINDEX | SetLastReadCount (PINDEX count) |
PBoolean | ReadBlock (void *buf, PINDEX len) |
Read len bytes into the buffer from the channel. More... | |
PString | ReadString (PINDEX len) |
Read len character into a string from the channel. More... | |
void | SetWriteTimeout (const PTimeInterval &time) |
Set the timeout for write operations to complete. More... | |
PTimeInterval | GetWriteTimeout () const |
Get the timeout for write operations to complete. More... | |
virtual PBoolean | Write (const void *buf, PINDEX len, const void *) |
Low level write to the channel with marker. More... | |
virtual PINDEX | GetLastWriteCount () const |
Get the number of bytes written by the last Write() call. More... | |
virtual PINDEX | SetLastWriteCount (PINDEX count) |
PBoolean | WriteChar (int c) |
Write a single character to the channel. More... | |
PBoolean | WriteString (const PString &str) |
Write a string to the channel. More... | |
~PChannel () | |
Close down the channel. More... | |
Errors | GetErrorCode (ErrorGroup group=NumErrorGroups) const |
Get normalised error code. More... | |
int | GetErrorNumber (ErrorGroup group=NumErrorGroups) const |
Get OS errro code. More... | |
virtual bool | ReadAsync (AsyncContext &context) |
Begin an asynchronous read from channel. More... | |
virtual void | OnReadComplete (AsyncContext &context) |
User callback function for when a ReadAsync() call has completed or timed out. More... | |
virtual bool | WriteAsync (AsyncContext &context) |
Begin an asynchronous write from channel. More... | |
virtual void | OnWriteComplete (AsyncContext &context) |
User callback function for when a WriteAsync() call has completed or timed out. More... | |
virtual bool | FlowControl (const void *flowData) |
Flow Control information Pass data to the channel for flowControl determination. More... | |
PBoolean | SetBufferSize (PINDEX newSize) |
Set the iostream buffer size for reads and writes. More... | |
PBoolean | SendCommandString (const PString &command) |
Send a command meta-string. More... | |
void | AbortCommandString () |
Abort a command string that is in progress. More... | |
![]() | |
__inline unsigned | GetTraceContextIdentifier () const |
Get PTRACE context identifier. More... | |
__inline void | SetTraceContextIdentifier (unsigned id) |
__inline void | SetTraceContextIdentifier (const PObject &obj) |
__inline void | SetTraceContextIdentifier (const PObject *obj) |
__inline void | CopyTraceContextIdentifier (PObject &obj) const |
__inline void | CopyTraceContextIdentifier (PObject *obj) const |
virtual | ~PObject () |
__inline const char * | GetClass () const |
__inline bool | IsClass (const char *name) const |
__inline const PObject * | PTraceObjectInstance () const |
virtual PObject * | Clone () const |
Create a copy of the class on the heap. More... | |
template<class CLS > | |
CLS * | CloneAs () const |
As for Clone() but converts to specified type. More... | |
virtual Comparison | CompareObjectMemoryDirect (const PObject &obj) const |
Determine the byte wise comparison of two objects. More... | |
bool | operator== (const PObject &obj) const |
Compare the two objects. More... | |
bool | operator!= (const PObject &obj) const |
Compare the two objects. More... | |
bool | operator< (const PObject &obj) const |
Compare the two objects. More... | |
bool | operator> (const PObject &obj) const |
Compare the two objects. More... | |
bool | operator<= (const PObject &obj) const |
Compare the two objects. More... | |
bool | operator>= (const PObject &obj) const |
Compare the two objects. More... | |
virtual void | PrintOn (ostream &strm) const |
Output the contents of the object to the stream. More... | |
virtual void | ReadFrom (istream &strm) |
Input the contents of the object from the stream. More... | |
Static Public Member Functions | |
static const PCaselessString & | MimeVersionTag () |
static const PCaselessString & | FromTag () |
static const PCaselessString & | ToTag () |
static const PCaselessString & | CCTag () |
static const PCaselessString & | BCCTag () |
static const PCaselessString & | SubjectTag () |
static const PCaselessString & | DateTag () |
static const PCaselessString & | ReturnPathTag () |
static const PCaselessString & | ReceivedTag () |
static const PCaselessString & | MessageIDTag () |
static const PCaselessString & | MailerTag () |
static const PCaselessString & | ContentTypeTag () |
static const PCaselessString & | ContentDispositionTag () |
static const PCaselessString & | ContentTransferEncodingTag () |
![]() | |
static PString | GetErrorText (Errors lastError, int osError=0) |
Get error message description. More... | |
![]() | |
static __inline void | CopyTraceContextIdentifier (PObject &to, const PObject &from) |
static __inline void | CopyTraceContextIdentifier (PObject &to, const PObject *from) |
static __inline void | CopyTraceContextIdentifier (PObject *to, const PObject &from) |
static __inline void | CopyTraceContextIdentifier (PObject *to, const PObject *from) |
static __inline const char * | Class () |
static __inline const PObject * | PTraceObjectInstance (const char *) |
static __inline const PObject * | PTraceObjectInstance (const PObject *obj) |
template<typename T > | |
static Comparison | Compare2 (T v1, T v2) |
Compare two types, returning Comparison type. More... | |
static Comparison | InternalCompareObjectMemoryDirect (const PObject *obj1, const PObject *obj2, PINDEX size) |
Internal function caled from CompareObjectMemoryDirect() More... | |
Protected Member Functions | |
PBoolean | OnOpen () |
This callback is executed when the Open() function is called with open channels. More... | |
![]() | |
PDECLARE_READ_WRITE_MUTEX (channelPointerMutex) | |
Race condition prevention on closing channel. More... | |
![]() | |
PChannel (const PChannel &) | |
PChannel & | operator= (const PChannel &) |
virtual PBoolean | ConvertOSError (P_INT_PTR libcReturnValue, ErrorGroup group=LastGeneralError) |
Convert an operating system error into platform independent error. More... | |
int | ReadCharWithTimeout (PTimeInterval &timeout) |
Read a character with specified timeout. More... | |
PBoolean | ReceiveCommandString (int nextChar, const PString &reply, PINDEX &pos, PINDEX start) |
bool | CheckNotOpen () |
virtual int | os_errno () const |
PBoolean | PXSetIOBlock (PXBlockType type, const PTimeInterval &timeout) |
P_INT_PTR | GetOSHandleAsInt () const |
int | PXClose () |
PDECLARE_MUTEX (px_threadMutex) | |
PDECLARE_MUTEX (px_writeMutex) | |
PChannel () | |
Create the channel. More... | |
![]() | |
PObject () | |
Constructor for PObject, made protected so cannot ever create one on its own. More... | |
Protected Attributes | |
bool | writeHeaders |
PMIMEInfo | headers |
bool | writePartHeaders |
PMIMEInfo | partHeaders |
PStringList | boundaries |
PBase64 * | base64 |
![]() | |
PChannel * | readChannel |
Channel for read operations. More... | |
PBoolean | readAutoDelete |
Automatically delete read channel on destruction. More... | |
PChannel * | writeChannel |
Channel for write operations. More... | |
PBoolean | writeAutoDelete |
Automatically delete write channel on destruction. More... | |
![]() | |
PTimeInterval | readTimeout |
Timeout for read operations. More... | |
PTimeInterval | writeTimeout |
Timeout for write operations. More... | |
atomic< P_INT_PTR > | os_handle |
The operating system file handle return by standard open() function. More... | |
PThreadLocalStorage< Status > | m_status [NumErrorGroups+1] |
PXBlockType | px_lastBlockType |
PThread * | px_readThread |
PThread * | px_writeThread |
PThread * | px_selectThread [3] |
PCriticalSection | px_selectMutex [3] |
![]() | |
unsigned | m_traceContextIdentifier |
A channel for sending/receiving RFC822 compliant mail messages.
This encpsulates all that is required to send an RFC822 compliant message via another channel. It automatically adds/strips header information from the stream so the Read() and Write() functions only deal with the message body. For example to send a message using the SMTP classes: PSMTPClient mail("mailserver"); if (mail.IsOpen()) { PRFC822Channel message; message.SetFromAddress("Me@here.com.au"); message.SetToAddress("Fred@somwhere.com"); if (message.Open(mail)) { if (mail.BeginMessage("Me@here.com.au", "Fred@somwhere.com")) { if (!message.Write(myMessageBody)) PError << "Mail write failed." << endl; if (!message.EndMessage()) PError << "Mail send failed." << endl; } } } else PError << "Mail conection failed." << endl;
PRFC822Channel::PRFC822Channel | ( | Direction | direction | ) |
Construct a RFC822 aware channel.
direction | /< Indicates are sending or receiving a message |
PRFC822Channel::~PRFC822Channel | ( | ) |
Close the channel before destruction.
|
static |
|
static |
|
virtual |
Close the channel.
This assures that all mime fields etc are closed off before closing the underliying channel.
Reimplemented from PIndirectChannel.
|
inlinestatic |
References PMIMEInfo::ContentDispositionTag().
|
inlinestatic |
References PMIMEInfo::ContentTransferEncodingTag().
|
inlinestatic |
References PMIMEInfo::ContentTypeTag().
|
static |
|
static |
|
static |
|
static |
|
static |
PString PRFC822Channel::MultipartMessage | ( | ) |
Enter multipart MIME message mode.
This indicates that the message, or individual part within a message as MIME is nestable, is a multipart message. This form returns the boundary indicator string generated internally which must then be used in all subsequent NextPart() calls.
Note this must be called before any writes are done to the message or part.
Enter multipart MIME message mode.
This indicates that the message, or individual part within a message as MIME is nestable, is a multipart message. In this form the user supplies a boundary indicator string which must then be used in all subsequent NextPart() calls.
Note this must be called before any writes are done to the message or part.
void PRFC822Channel::NewMessage | ( | Direction | direction | ) |
Begin a new message.
This may be used if the object is to encode 2 or more messages sequentially. It resets the internal state of the object.
direction | Indicates are sending or receiving a message |
void PRFC822Channel::NextPart | ( | const PString & | boundary | ) |
Indicate that a new multipart message part is to begin.
This will close off the previous part, and any nested multipart messages contained therein, and allow a new part to begin.
The user may adjust the parts content type and other header fields after this call and before the first write of the parts body. The default Content-Type is "text/plain".
Note that all header fields are cleared from the previous part.
|
protectedvirtual |
This callback is executed when the Open() function is called with open channels.
It may be used by descendent channels to do any handshaking required by the protocol that channel embodies.
The default behaviour is to simply return true.
Reimplemented from PIndirectChannel.
|
static |
|
static |
void PRFC822Channel::SetBCC | ( | const PString & | bccAddress | ) |
Set the Blind Carbon Copy address(es).
This must be called before any writes are done to the channel.
bccAddress | Recipients e-mail address (comma separated) |
void PRFC822Channel::SetCC | ( | const PString & | ccAddress | ) |
Set the Carbon Copy address(es).
This must be called before any writes are done to the channel.
ccAddress | Recipients e-mail address (comma separated) |
void PRFC822Channel::SetContentAttachment | ( | const PFilePath & | filename | ) |
Set the content disposition for attachments.
This must be called before any writes are done to the channel. It may be set again immediately after any call to NextPart() when multipart mime is being used.
Note that this will alter the Content-Type field to
filename | Attachment filename |
void PRFC822Channel::SetContentType | ( | const PString & | contentType | ) |
Set the content type.
This must be called before any writes are done to the channel. It may be set again immediately after any call to NextPart() when multipart mime is being used.
The default Content-Type is "text/plain".
contentType | Content type in form major/minor |
void PRFC822Channel::SetFromAddress | ( | const PString & | fromAddress | ) |
Set the sender address.
This must be called before any writes are done to the channel.
fromAddress | Senders e-mail address |
Set the and arbitrary header field.
This must be called before any writes are done to the channel.
name | MIME fields tag |
value | MIME fields contents |
void PRFC822Channel::SetSubject | ( | const PString & | subject | ) |
Set the message subject.
This must be called before any writes are done to the channel.
subject | Subject string |
void PRFC822Channel::SetToAddress | ( | const PString & | toAddress | ) |
Set the recipient address(es).
This must be called before any writes are done to the channel.
toAddress | Recipients e-mail address (comma separated) |
void PRFC822Channel::SetTransferEncoding | ( | const PString & | encoding, |
PBoolean | autoTranslate = true |
||
) |
Set the content transfer encoding.
This must be called before any writes are done to the channel. It may be set again immediately after any call to NextPart() when multipart mime is being used.
If the encoding is "base64" (case insensitive) and , all writes will be treated as binary and translated into base64 encoding before output to the underlying channel.
encoding | Encoding type |
autoTranslate | Automatically convert to encoding type |
|
static |
|
static |
|
virtual |
Low level write to the channel.
This override assures that the header is written before the body that will be output via this function.
buf | Pointer to a block of memory to write. |
len | Number of bytes to write. |
Reimplemented from PIndirectChannel.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |