YouCompleteMe/cpp/ycm/LetterNodeListMap.cpp

87 lines
2.2 KiB
C++
Raw Normal View History

2012-04-15 23:28:46 -04:00
// Copyright (C) 2011, 2012 Strahinja Val Markovic <val@markovic.io>
2012-04-15 19:57:10 -04:00
//
// This file is part of YouCompleteMe.
//
// YouCompleteMe is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// YouCompleteMe is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
2012-09-06 15:56:08 -04:00
#include "LetterNodeListMap.h"
#include "standard.h"
2012-04-15 19:57:10 -04:00
2013-01-19 23:10:52 -05:00
namespace YouCompleteMe {
2012-04-15 19:57:10 -04:00
const int kNumLetters = NUM_LETTERS;
static const int kLettersIndexStart = 0;
static const int kNumbersIndexStart = 26;
2012-04-29 22:56:16 -04:00
2012-04-15 19:57:10 -04:00
2013-01-19 23:10:52 -05:00
bool IsUppercase( char letter ) {
2012-04-15 19:57:10 -04:00
return 'A' <= letter && letter <= 'Z';
}
2012-04-29 22:56:16 -04:00
2013-01-19 23:10:52 -05:00
int IndexForChar( char letter ) {
2012-04-15 19:57:10 -04:00
if ( IsUppercase( letter ) )
return letter + ( 'a' - 'A' );
return letter;
}
2012-04-29 22:56:16 -04:00
2013-01-19 23:10:52 -05:00
LetterNodeListMap::LetterNodeListMap() {
2012-08-24 19:28:56 -04:00
letters_.resize( kNumLetters );
2012-04-15 19:57:10 -04:00
2013-01-19 23:10:52 -05:00
for ( uint i = 0; i < letters_.size(); ++i ) {
2012-08-24 19:28:56 -04:00
letters_[ i ] = NULL;
}
2012-04-15 19:57:10 -04:00
}
2012-04-29 22:56:16 -04:00
2013-01-19 23:10:52 -05:00
LetterNodeListMap::~LetterNodeListMap() {
for ( uint i = 0; i < letters_.size(); ++i ) {
2012-08-24 19:28:56 -04:00
delete letters_[ i ];
}
2012-04-15 19:57:10 -04:00
}
2012-04-29 22:56:16 -04:00
2013-01-19 23:10:52 -05:00
bool LetterNodeListMap::HasLetter( char letter ) {
2012-04-15 19:57:10 -04:00
int letter_index = IndexForChar( letter );
2013-01-19 23:10:52 -05:00
std::list< LetterNode * > *list = letters_[ letter_index ];
2012-04-15 19:57:10 -04:00
return list;
}
2013-01-19 23:10:52 -05:00
std::list< LetterNode * > &LetterNodeListMap::operator[] ( char letter ) {
2012-04-15 19:57:10 -04:00
int letter_index = IndexForChar( letter );
2013-01-19 23:10:52 -05:00
std::list< LetterNode * > *list = letters_[ letter_index ];
2012-04-15 19:57:10 -04:00
if ( list )
return *list;
2013-01-19 23:10:52 -05:00
letters_[ letter_index ] = new std::list< LetterNode * >();
2012-04-15 19:57:10 -04:00
return *letters_[ letter_index ];
}
2012-04-29 22:56:16 -04:00
2013-01-19 23:10:52 -05:00
std::list< LetterNode * > *LetterNodeListMap::ListPointerAt( char letter ) {
2012-04-15 19:57:10 -04:00
return letters_[ IndexForChar( letter ) ];
}
2012-04-29 22:56:16 -04:00
2013-01-19 23:10:52 -05:00
bool LetterNodeListMap::HasLetter( char letter ) const {
2012-04-15 19:57:10 -04:00
return letters_[ IndexForChar( letter ) ] != NULL;
}
} // namespace YouCompleteMe