pdf/plugin_impl/string_impl.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <cassert>
00028 #include "string_impl.h"
00029
00030 namespace pdf
00031 {
00032
00033 StringImpl::StringImpl()
00034 {
00035 assign = assign_impl;
00036 get_buffer = get_buffer_impl;
00037 size = size_impl;
00038 }
00039
00040 StringImpl::StringImpl(const char *str)
00041 : impl(str)
00042 {
00043 assign = assign_impl;
00044 get_buffer = get_buffer_impl;
00045 size = size_impl;
00046 }
00047
00048 StringImpl::StringImpl(const std::string& str)
00049 : impl(str)
00050 {
00051 assign = assign_impl;
00052 get_buffer = get_buffer_impl;
00053 size = size_impl;
00054 }
00055
00056 StringImpl::StringImpl(const StringImpl &src)
00057 : impl(src.impl)
00058 {
00059 assign = assign_impl;
00060 get_buffer = get_buffer_impl;
00061 size = size_impl;
00062 }
00063
00064 StringImpl::~StringImpl()
00065 {
00066 }
00067
00068 StringImpl& StringImpl::operator = (const StringImpl &right)
00069 {
00070 if (this != &right)
00071 {
00072 impl = right.impl;
00073 }
00074 return *this;
00075 }
00076
00077 bool StringImpl::operator == (const StringImpl &right)
00078 {
00079 return (impl == right.impl);
00080 }
00081
00082 StringImpl * StringImpl::down_cast(_UDSString * ptr)
00083 {
00084 return static_cast<StringImpl *>(ptr);
00085 }
00086
00087 const StringImpl * StringImpl::down_cast(const _UDSString * ptr)
00088 {
00089 return static_cast<const StringImpl *>(ptr);
00090 }
00091
00092 _UDSString * StringImpl::assign_impl(_UDSString * thiz,
00093 const char * src)
00094 {
00095 if (thiz == 0)
00096 {
00097 return 0;
00098 }
00099
00100 StringImpl * object = down_cast(thiz);
00101 object->impl = src;
00102 return thiz;
00103 }
00104
00105 const char* StringImpl::get_buffer_impl(const _UDSString *thiz)
00106 {
00107 if (thiz == 0)
00108 {
00109 return 0;
00110 }
00111
00112 const StringImpl * object = down_cast(thiz);
00113 return object->impl.c_str();
00114 }
00115
00116 unsigned int StringImpl::size_impl(const _UDSString *thiz)
00117 {
00118 if (thiz == 0)
00119 {
00120 return 0;
00121 }
00122
00123 const StringImpl * object = down_cast(thiz);
00124 return static_cast<unsigned int>(object->impl.size());
00125 }
00126
00127 };
00128
00129