ACE_Char_Codeset_Translator Class Reference

Codeset translation routines common to both Output and Input CDR streams. More...

#include <CDR_Stream.h>

List of all members.

Public Member Functions

virtual ~ACE_Char_Codeset_Translator ()
virtual ACE_CDR::Boolean read_char (ACE_InputCDR &, ACE_CDR::Char &)=0
virtual ACE_CDR::Boolean read_string (ACE_InputCDR &, ACE_CDR::Char *&)=0
virtual ACE_CDR::Boolean read_char_array (ACE_InputCDR &, ACE_CDR::Char *, ACE_CDR::ULong)=0
virtual ACE_CDR::Boolean write_char (ACE_OutputCDR &, ACE_CDR::Char)=0
virtual ACE_CDR::Boolean write_string (ACE_OutputCDR &, ACE_CDR::ULong, const ACE_CDR::Char *)=0
virtual ACE_CDR::Boolean write_char_array (ACE_OutputCDR &, const ACE_CDR::Char *, ACE_CDR::ULong)=0
virtual ACE_CDR::ULong ncs ()=0
virtual ACE_CDR::ULong tcs ()=0

Protected Member Functions

ACE_CDR::Boolean read_1 (ACE_InputCDR &input, ACE_CDR::Octet *x)
ACE_CDR::Boolean write_1 (ACE_OutputCDR &output, const ACE_CDR::Octet *x)
ACE_CDR::Boolean read_array (ACE_InputCDR &input, void *x, size_t size, size_t align, ACE_CDR::ULong length)
ACE_CDR::Boolean write_array (ACE_OutputCDR &output, const void *x, size_t size, size_t align, ACE_CDR::ULong length)
int adjust (ACE_OutputCDR &out, size_t size, size_t align, char *&buf)
void good_bit (ACE_OutputCDR &out, bool bit)
 Used by derived classes to set errors in the CDR stream.

ACE_CDR::Octet major_version (ACE_InputCDR &input)
 Obtain the CDR Stream's major & minor version values.

ACE_CDR::Octet minor_version (ACE_InputCDR &input)
ACE_CDR::Octet major_version (ACE_OutputCDR &output)
ACE_CDR::Octet minor_version (ACE_OutputCDR &output)


Detailed Description

Codeset translation routines common to both Output and Input CDR streams.

This class is a base class for defining codeset translation routines to handle the character set translations required by both CDR Input streams and CDR Output streams.

Translators are reference counted. This allows for stateful as well as stateless translators. Stateless translators will be allocated once whereas CDR Streams own their own copy of a stateful translator.

Definition at line 995 of file CDR_Stream.h.


Constructor & Destructor Documentation

ACE_Char_Codeset_Translator::~ACE_Char_Codeset_Translator  )  [virtual]
 

Definition at line 1690 of file CDR_Stream.cpp.

01691 {
01692 }


Member Function Documentation

ACE_INLINE int ACE_Char_Codeset_Translator::adjust ACE_OutputCDR out,
size_t  size,
size_t  align,
char *&  buf
[protected]
 

Exposes the stream implementation of , this is useful in many cases to minimize memory allocations during marshaling. On success will contain a contiguous area in the CDR stream that can hold bytes aligned to . Results

Definition at line 1602 of file CDR_Stream.inl.

References ACE_OutputCDR::adjust().

01606 {
01607   return out.adjust(size, align, buf);
01608 }

ACE_INLINE void ACE_Char_Codeset_Translator::good_bit ACE_OutputCDR out,
bool  bit
[protected]
 

Used by derived classes to set errors in the CDR stream.

Definition at line 1611 of file CDR_Stream.inl.

References ACE_OutputCDR::good_bit_.

01612 {
01613   out.good_bit_ = bit;
01614 }

ACE_INLINE ACE_CDR::Octet ACE_Char_Codeset_Translator::major_version ACE_OutputCDR output  )  [protected]
 

Definition at line 1629 of file CDR_Stream.inl.

References ACE_OutputCDR::major_version_.

01630 {
01631   return output.major_version_;
01632 }

ACE_INLINE ACE_CDR::Octet ACE_Char_Codeset_Translator::major_version ACE_InputCDR input  )  [protected]
 

Obtain the CDR Stream's major & minor version values.

Definition at line 1617 of file CDR_Stream.inl.

References ACE_InputCDR::major_version_.

01618 {
01619   return input.major_version_;
01620 }

ACE_INLINE ACE_CDR::Octet ACE_Char_Codeset_Translator::minor_version ACE_OutputCDR output  )  [protected]
 

Definition at line 1635 of file CDR_Stream.inl.

References ACE_OutputCDR::minor_version_.

01636 {
01637   return output.minor_version_;
01638 }

ACE_INLINE ACE_CDR::Octet ACE_Char_Codeset_Translator::minor_version ACE_InputCDR input  )  [protected]
 

Definition at line 1623 of file CDR_Stream.inl.

References ACE_InputCDR::minor_version_.

01624 {
01625   return input.minor_version_;
01626 }

virtual ACE_CDR::ULong ACE_Char_Codeset_Translator::ncs  )  [pure virtual]
 

ACE_INLINE ACE_CDR::Boolean ACE_Char_Codeset_Translator::read_1 ACE_InputCDR input,
ACE_CDR::Octet x
[protected]
 

Children have access to low-level routines because they cannot use read_char or something similar (it would recurse).

Definition at line 1568 of file CDR_Stream.inl.

References ACE_CDR::Octet, and ACE_InputCDR::read_1().

01570 {
01571   return input.read_1 (x);
01572 }

ACE_INLINE ACE_CDR::Boolean ACE_Char_Codeset_Translator::read_array ACE_InputCDR input,
void *  x,
size_t  size,
size_t  align,
ACE_CDR::ULong  length
[protected]
 

Efficiently read elements of size each from into ; the data must be aligned to .

Definition at line 1582 of file CDR_Stream.inl.

References ACE_InputCDR::read_array(), and ACE_CDR::ULong.

01587 {
01588   return in.read_array (x, size, align, length);
01589 }

virtual ACE_CDR::Boolean ACE_Char_Codeset_Translator::read_char ACE_InputCDR ,
ACE_CDR::Char
[pure virtual]
 

Read a single character from the stream, converting from the stream codeset to the native codeset

Referenced by ACE_InputCDR::read_char().

virtual ACE_CDR::Boolean ACE_Char_Codeset_Translator::read_char_array ACE_InputCDR ,
ACE_CDR::Char ,
ACE_CDR::ULong 
[pure virtual]
 

Read an array of characters from the stream, converting the characters from the stream codeset to the native codeset.

Referenced by ACE_InputCDR::read_char_array().

virtual ACE_CDR::Boolean ACE_Char_Codeset_Translator::read_string ACE_InputCDR ,
ACE_CDR::Char *& 
[pure virtual]
 

Read a string from the stream, including the length, converting the characters from the stream codeset to the native codeset

Referenced by ACE_InputCDR::read_string().

virtual ACE_CDR::ULong ACE_Char_Codeset_Translator::tcs  )  [pure virtual]
 

ACE_INLINE ACE_CDR::Boolean ACE_Char_Codeset_Translator::write_1 ACE_OutputCDR output,
const ACE_CDR::Octet x
[protected]
 

Definition at line 1575 of file CDR_Stream.inl.

References ACE_CDR::Octet, and ACE_OutputCDR::write_1().

01577 {
01578   return output.write_1 (x);
01579 }

ACE_INLINE ACE_CDR::Boolean ACE_Char_Codeset_Translator::write_array ACE_OutputCDR output,
const void *  x,
size_t  size,
size_t  align,
ACE_CDR::ULong  length
[protected]
 

Efficiently write elements of size from into . Before inserting the elements enough padding is added to ensure that the elements will be aligned to in the stream.

Definition at line 1592 of file CDR_Stream.inl.

References ACE_CDR::ULong, and ACE_OutputCDR::write_array().

01597 {
01598   return out.write_array(x, size, align, length);
01599 }

virtual ACE_CDR::Boolean ACE_Char_Codeset_Translator::write_char ACE_OutputCDR ,
ACE_CDR::Char 
[pure virtual]
 

Write a single character to the stream, converting from the native codeset to the stream codeset

Referenced by ACE_OutputCDR::write_char().

virtual ACE_CDR::Boolean ACE_Char_Codeset_Translator::write_char_array ACE_OutputCDR ,
const ACE_CDR::Char ,
ACE_CDR::ULong 
[pure virtual]
 

Write an array of characters to the stream, converting from the native codeset to the stream codeset

Referenced by ACE_OutputCDR::write_char_array().

virtual ACE_CDR::Boolean ACE_Char_Codeset_Translator::write_string ACE_OutputCDR ,
ACE_CDR::ULong  ,
const ACE_CDR::Char
[pure virtual]
 

Write a string to the stream, including the length, converting from the native codeset to the stream codeset

Referenced by ACE_OutputCDR::write_string().


The documentation for this class was generated from the following files:
Generated on Thu Nov 9 11:20:37 2006 for ACE by doxygen 1.3.6