diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2010-08-18 21:39:28 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2010-08-18 21:39:28 +0000 |
commit | 14831247bce771964b816f5863582e17f3d5bfbf (patch) | |
tree | 894a393ec77a3826a6b6e5ef211e5db36a87274e /cores/arduino | |
parent | 1f9520e226a1943d81ed7fd1f54ccd614a6b7204 (diff) |
Adding some basic error checking to the String class (i.e. checking for a non-null buffer before modifying its contents).
Diffstat (limited to 'cores/arduino')
-rw-r--r-- | cores/arduino/WString.cpp | 47 | ||||
-rw-r--r-- | cores/arduino/WString.h | 13 |
2 files changed, 35 insertions, 25 deletions
diff --git a/cores/arduino/WString.cpp b/cores/arduino/WString.cpp index f1288a6..d5ea11f 100644 --- a/cores/arduino/WString.cpp +++ b/cores/arduino/WString.cpp @@ -27,29 +27,35 @@ String::String( const char *value ) if ( value == NULL ) value = ""; getBuffer( _length = strlen( value ) ); - strcpy( _buffer, value ); + if ( _buffer != NULL ) + strcpy( _buffer, value ); } String::String( const String &value ) { getBuffer( _length = value._length ); - strcpy( _buffer, value._buffer ); + if ( _buffer != NULL ) + strcpy( _buffer, value._buffer ); } String::String( const char value ) { _length = 1; getBuffer(1); - _buffer[0] = value; - _buffer[1] = 0; + if ( _buffer != NULL ) { + _buffer[0] = value; + _buffer[1] = 0; + } } String::String( const unsigned char value ) { _length = 1; getBuffer(1); - _buffer[0] = value; - _buffer[1] = 0; + if ( _buffer != NULL) { + _buffer[0] = value; + _buffer[1] = 0; + } } String::String( const int value, const int base ) @@ -57,7 +63,8 @@ String::String( const int value, const int base ) char buf[33]; itoa((signed long)value, buf, base); getBuffer( _length = strlen(buf) ); - strcpy( _buffer, buf ); + if ( _buffer != NULL ) + strcpy( _buffer, buf ); } String::String( const unsigned int value, const int base ) @@ -65,7 +72,8 @@ String::String( const unsigned int value, const int base ) char buf[33]; ultoa((unsigned long)value, buf, base); getBuffer( _length = strlen(buf) ); - strcpy( _buffer, buf ); + if ( _buffer != NULL ) + strcpy( _buffer, buf ); } String::String( const long value, const int base ) @@ -73,7 +81,8 @@ String::String( const long value, const int base ) char buf[33]; ltoa(value, buf, base); getBuffer( _length = strlen(buf) ); - strcpy( _buffer, buf ); + if ( _buffer != NULL ) + strcpy( _buffer, buf ); } String::String( const unsigned long value, const int base ) @@ -81,7 +90,8 @@ String::String( const unsigned long value, const int base ) char buf[33]; ultoa(value, buf, 10); getBuffer( _length = strlen(buf) ); - strcpy( _buffer, buf ); + if ( _buffer != NULL ) + strcpy( _buffer, buf ); } char String::charAt( unsigned int loc ) const @@ -91,6 +101,7 @@ char String::charAt( unsigned int loc ) const void String::setCharAt( unsigned int loc, const char aChar ) { + if(_buffer == NULL) return; if(_length > loc) { _buffer[loc] = aChar; } @@ -116,8 +127,11 @@ const String & String::operator=( const String &rhs ) free(_buffer); getBuffer( rhs._length ); } - _length = rhs._length; - strcpy( _buffer, rhs._buffer ); + + if ( _buffer != NULL ) { + _length = rhs._length; + strcpy( _buffer, rhs._buffer ); + } return *this; } @@ -138,10 +152,12 @@ const String & String::operator+=( const String &other ) { char *temp = _buffer; getBuffer( _length ); - strcpy( _buffer, temp ); + if ( _buffer != NULL ) + strcpy( _buffer, temp ); free(temp); } - strcat( _buffer, other._buffer ); + if ( _buffer != NULL ) + strcat( _buffer, other._buffer ); return *this; } @@ -213,6 +229,7 @@ boolean String::equalsIgnoreCase( const String &s2 ) const String String::replace( char findChar, char replaceChar ) { + if ( _buffer == NULL ) return *this; String theReturn = _buffer; char* temp = theReturn._buffer; while( (temp = strchr( temp, findChar )) != 0 ) @@ -223,6 +240,7 @@ String String::replace( char findChar, char replaceChar ) String String::replace( const String& match, const String& replace ) { + if ( _buffer == NULL ) return *this; String temp = _buffer, newString; int loc; @@ -376,6 +394,7 @@ String String::toUpperCase() const String String::trim() const { + if ( _buffer == NULL ) return *this; String temp = _buffer; unsigned int i,j; diff --git a/cores/arduino/WString.h b/cores/arduino/WString.h index b4e160c..eede8ae 100644 --- a/cores/arduino/WString.h +++ b/cores/arduino/WString.h @@ -52,7 +52,7 @@ class String char operator []( unsigned int index ) const; char& operator []( unsigned int index ); //operator const char *() const { return _buffer; } - + // general methods char charAt( unsigned int index ) const; int compareTo( const String &anotherString ) const; @@ -89,7 +89,6 @@ class String unsigned int _length; // the String length (not counting the '\0') void getBuffer(unsigned int maxStrLen); - void doubleBuffer( ); private: @@ -100,15 +99,7 @@ inline void String::getBuffer(unsigned int maxStrLen) { _capacity = maxStrLen; _buffer = (char *) malloc(_capacity + 1); -} - -// double the buffer size -inline void String::doubleBuffer( ) -{ - char *temp = _buffer; - getBuffer( ++_capacity * 2 ); - strcpy( _buffer, temp ); - free(temp); + if (_buffer == NULL) _length = _capacity = 0; } inline String operator+( String lhs, const String &rhs ) |