CharBuffer.cpp

00001 /*
00002  *  Copyright (C) 2010  Regents of the University of Michigan
00003  *
00004  *   This program is free software: you can redistribute it and/or modify
00005  *   it under the terms of the GNU General Public License as published by
00006  *   the Free Software Foundation, either version 3 of the License, or
00007  *   (at your option) any later version.
00008  *
00009  *   This program is distributed in the hope that it will be useful,
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *   GNU General Public License for more details.
00013  *
00014  *   You should have received a copy of the GNU General Public License
00015  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 #include <stdlib.h>
00019 #include "CharBuffer.h"
00020 
00021 CharBuffer::CharBuffer()
00022     : myBuffer(NULL)
00023 {
00024     myBuffer = (char *) malloc(DEFAULT_BUFFER_SIZE);
00025     myBufferAllocatedLen = DEFAULT_BUFFER_SIZE;
00026     reset();
00027 }
00028 
00029 
00030 CharBuffer::CharBuffer(int32_t initialSize)
00031     : myBuffer(NULL)
00032 {
00033     myBuffer = (char *) malloc(initialSize);
00034     myBufferAllocatedLen = DEFAULT_BUFFER_SIZE;
00035 
00036     reset();
00037 }
00038 
00039 
00040 CharBuffer::~CharBuffer()
00041 {
00042     reset();
00043     if(myBuffer != NULL)
00044     {
00045         delete myBuffer;
00046         myBuffer = NULL;
00047     }
00048 }
00049 
00050 
00051 // Copy Constructor   
00052 CharBuffer::CharBuffer(const CharBuffer& buffer)
00053     : myBuffer(NULL)
00054 {
00055     myBuffer = 
00056         (char *) malloc(DEFAULT_BUFFER_SIZE);
00057     myBufferAllocatedLen = DEFAULT_BUFFER_SIZE;
00058 
00059     reset();
00060 
00061     copy(buffer);
00062 }
00063 
00064 
00065 // Overload operator = to copy the passed in buffer into this buffer.
00066 CharBuffer& CharBuffer::operator = (const CharBuffer& buffer)
00067 {
00068     copy(buffer);
00069     return(*this);
00070 }
00071 
00072 
00073 // Overload operator = to copy the passed in buffer into this buffer.
00074 CharBuffer& CharBuffer::operator = (const std::string& stringBuffer)
00075 {
00076     // First check lengh
00077     if(prepareNewLength(stringBuffer.length()))
00078     {
00079         memcpy(myBuffer, stringBuffer.c_str(), stringBuffer.length());
00080     }
00081     // TODO: on failure of prepareNewLength, should it throw an exception?
00082     
00083     return(*this);
00084 }
00085 
00086 
00087 bool CharBuffer::copy(const CharBuffer& buffer)
00088 {
00089     // Check to see if the passed in value is the same as this.
00090     if(this == &buffer)
00091     {
00092         return(true);
00093     }
00094 
00095     // Copy the buffer.
00096     // First check lengh
00097     prepareNewLength(buffer.myBufferLen);
00098 
00099     memcpy(myBuffer, buffer.myBuffer, buffer.myBufferLen);
00100     myBufferLen = buffer.myBufferLen;
00101 
00102     return(true);
00103 }
00104 
00105 
00106 // Reset the buffer for a new entry, clearing out previous values.
00107 void CharBuffer::reset()
00108 {
00109     myBufferLen = 0;
00110     if(myBuffer != NULL)
00111     {
00112         myBuffer[0] = 0;
00113     }
00114 }
00115 
00116 
00117 // Read from a file into the buffer.  length is the amount of data to read.
00118 // Returns the number of bytes read.
00119 int CharBuffer::readFromFile(IFILE filePtr, int32_t length)
00120 {
00121     if(filePtr == NULL)
00122     {
00123         return(0);
00124     }
00125 
00126     if(prepareNewLength(length))
00127     {
00128         return(ifread(filePtr, myBuffer, length));
00129     }
00130     // failed to setup the buffer, return false.
00131     return(false);
00132 }
00133 
00134 
00135 // newLen is the new length that this buffer needs to be.
00136 bool CharBuffer::prepareNewLength(int32_t newLen)
00137 {
00138     if(newLen < 0)
00139     {
00140         // Invalid length.
00141         return(false);
00142     }
00143     
00144     // myBufferAllocatedLen must be bigger than new length, because the
00145     // newLen position is set to 0.
00146     if(myBufferAllocatedLen <= newLen)
00147     {
00148         // Not enough space is allocated, so allocate more space.
00149         char* tmpBufferPtr = (char *)realloc(myBuffer, newLen);
00150         if(tmpBufferPtr == NULL)
00151         {
00152             // FAILED to allocate memory
00153             fprintf(stderr, "FAILED TO ALLOCATE MEMORY!!!");
00154             // myStatus.addError(GlfStatus::FAIL_MEM, "Failed Memory Allocation.");
00155             return(false);
00156         }
00157         // Successfully allocated memory, so set myRecordPtr.
00158         myBuffer = tmpBufferPtr;
00159         myBufferAllocatedLen = newLen;
00160     }
00161     myBufferLen = newLen;
00162     myBuffer[newLen] = 0;
00163     return(true);
00164 }
00165 
Generated on Wed Nov 17 15:38:28 2010 for StatGen Software by  doxygen 1.6.3