/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef COSV_STRINGDATA_HXX #define COSV_STRINGDATA_HXX #include #include namespace csv { /** @tpl CHAR The expression CHAR(0) has to be valid. */ template class StringData { public: typedef StringData self; typedef str::size size_type; typedef str::position position_type; // LIFECYCLE StringData(); /** @precond i_pData != 0 @precond i_nValidLength <= strlen(i_pData) */ StringData( const CHAR * i_pData, size_type i_nValidLength ); ~StringData(); // OPERATORS // OPERATIONS // INQUIRY const CHAR * Data() const; /** @returns the allocated number of CHAR. This may be different from the number of bytes. There is actually allocated one more CHAR, which is guaranteed to be CHAR(0) in all circumstances. */ size_type Size() const; private: /* Because this is used only within a refcounted structure, these functions are forbidden - at least yet. */ StringData(const self&); self & operator=(const self&); // DATA DYN CHAR * dpData; size_type nSize; /// The allocated size - 1 (for the finishing 0). }; // IMPLEMENTATION template StringData::StringData() : dpData( new CHAR[1] ), nSize(0) { *dpData = CHAR(0); } template StringData::StringData( const CHAR * i_pData, size_type i_nValidLength ) : dpData( new CHAR[i_nValidLength + 1] ), nSize(i_nValidLength) { memcpy( dpData, i_pData, i_nValidLength * sizeof(CHAR) ); dpData[nSize] = CHAR(0); } template StringData::~StringData() { delete [] dpData; } template const CHAR * StringData::Data() const { return dpData; } template typename StringData::size_type StringData::Size() const { return nSize; } } // namespace csv #endif