summaryrefslogtreecommitdiff
path: root/ACE/ace/Encoding_Converter.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 14:51:23 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 14:51:23 +0000
commit99aa8c60282c7b8072eb35eb9ac815702f5bf586 (patch)
treebda96bf8c3a4c2875a083d7b16720533c8ffeaf4 /ACE/ace/Encoding_Converter.h
parentc4078c377d74290ebe4e66da0b4975da91732376 (diff)
downloadATCD-99aa8c60282c7b8072eb35eb9ac815702f5bf586.tar.gz
undoing accidental deletion
Diffstat (limited to 'ACE/ace/Encoding_Converter.h')
-rw-r--r--ACE/ace/Encoding_Converter.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/ACE/ace/Encoding_Converter.h b/ACE/ace/Encoding_Converter.h
new file mode 100644
index 00000000000..7d5bd39b512
--- /dev/null
+++ b/ACE/ace/Encoding_Converter.h
@@ -0,0 +1,70 @@
+// -*- C++ -*-
+
+//=========================================================================
+/**
+ * @file Encoding_Converter.h
+ *
+ * $Id$
+ *
+ * This class is the base class for all encoding converters that convert
+ * to and from UTF-8.
+ *
+ * @author Chad Elliott <elliott_c@ociweb.com>
+ */
+//=========================================================================
+
+#ifndef ACE_ENCODING_CONVERTER_H
+#define ACE_ENCODING_CONVERTER_H
+
+#include /**/ "ace/pre.h"
+
+#include "ace/Basic_Types.h"
+
+#if defined (ACE_USES_WCHAR)
+#include /**/ "ace/ACE_export.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+/** The base class for all ACE UTF Encoding Converters.
+ * This class provides a generic interface that is used to implement
+ * various UTF encoding conversion classes.
+ */
+class ACE_Export ACE_Encoding_Converter
+{
+public:
+ /// This enum describes the various states that can be returned
+ /// from the to_utf8() and from_utf8() methods which depends on
+ /// both the source buffer and the size of the target buffer.
+ enum Result {CONVERSION_OK,
+ SOURCE_EXHAUSTED,
+ TARGET_EXHAUSTED,
+ SOURCE_ILLEGAL
+ };
+
+ /// This destructor is here (and virtual) because we have virtual
+ /// functions.
+ virtual ~ACE_Encoding_Converter (void);
+
+ /// Convert the source (which can be in any encoding) to UTF-8 and
+ /// store it in the provided target buffer.
+ virtual Result to_utf8 (const void* source,
+ size_t source_size,
+ ACE_Byte* target,
+ size_t target_size,
+ bool strict = true) = 0;
+
+ /// Convert the UTF-8 source into an alternate encoding and store it
+ /// in the provided target buffer.
+ virtual Result from_utf8 (const ACE_Byte* source,
+ size_t source_size,
+ void* target,
+ size_t target_size,
+ bool strict = true) = 0;
+};
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+#endif /* ACE_USES_WCHAR */
+
+#include /**/ "ace/post.h"
+
+#endif /* ACE_ENCODING_CONVERTER_H */