1/* 2 * name-hash.c 3 * 4 * Hashing names in the index state 5 * 6 * Copyright (C) 2008 Linus Torvalds 7 */ 8#define NO_THE_INDEX_COMPATIBILITY_MACROS 9#include"cache.h" 10 11/* 12 * This removes bit 5 if bit 6 is set. 13 * 14 * That will make US-ASCII characters hash to their upper-case 15 * equivalent. We could easily do this one whole word at a time, 16 * but that's for future worries. 17 */ 18staticinlineunsigned charicase_hash(unsigned char c) 19{ 20return c & ~((c &0x40) >>1); 21} 22 23static unsigned inthash_name(const char*name,int namelen) 24{ 25unsigned int hash =0x123; 26 27do{ 28unsigned char c = *name++; 29 c =icase_hash(c); 30 hash = hash*101+ c; 31}while(--namelen); 32return hash; 33} 34 35static voidhash_index_entry_directories(struct index_state *istate,struct cache_entry *ce) 36{ 37/* 38 * Throw each directory component in the hash for quick lookup 39 * during a git status. Directory components are stored with their 40 * closing slash. Despite submodules being a directory, they never 41 * reach this point, because they are stored without a closing slash 42 * in the cache. 43 * 44 * Note that the cache_entry stored with the directory does not 45 * represent the directory itself. It is a pointer to an existing 46 * filename, and its only purpose is to represent existence of the 47 * directory in the cache. It is very possible multiple directory 48 * hash entries may point to the same cache_entry. 49 */ 50unsigned int hash; 51void**pos; 52 53const char*ptr = ce->name; 54while(*ptr) { 55while(*ptr && *ptr !='/') 56++ptr; 57if(*ptr =='/') { 58++ptr; 59 hash =hash_name(ce->name, ptr - ce->name); 60 pos =insert_hash(hash, ce, &istate->name_hash); 61if(pos) { 62 ce->dir_next = *pos; 63*pos = ce; 64} 65} 66} 67} 68 69static voidhash_index_entry(struct index_state *istate,struct cache_entry *ce) 70{ 71void**pos; 72unsigned int hash; 73 74if(ce->ce_flags & CE_HASHED) 75return; 76 ce->ce_flags |= CE_HASHED; 77 ce->next = ce->dir_next = NULL; 78 hash =hash_name(ce->name,ce_namelen(ce)); 79 pos =insert_hash(hash, ce, &istate->name_hash); 80if(pos) { 81 ce->next = *pos; 82*pos = ce; 83} 84 85if(ignore_case) 86hash_index_entry_directories(istate, ce); 87} 88 89static voidlazy_init_name_hash(struct index_state *istate) 90{ 91int nr; 92 93if(istate->name_hash_initialized) 94return; 95for(nr =0; nr < istate->cache_nr; nr++) 96hash_index_entry(istate, istate->cache[nr]); 97 istate->name_hash_initialized =1; 98} 99 100voidadd_name_hash(struct index_state *istate,struct cache_entry *ce) 101{ 102 ce->ce_flags &= ~CE_UNHASHED; 103if(istate->name_hash_initialized) 104hash_index_entry(istate, ce); 105} 106 107static intslow_same_name(const char*name1,int len1,const char*name2,int len2) 108{ 109if(len1 != len2) 110return0; 111 112while(len1) { 113unsigned char c1 = *name1++; 114unsigned char c2 = *name2++; 115 len1--; 116if(c1 != c2) { 117 c1 =toupper(c1); 118 c2 =toupper(c2); 119if(c1 != c2) 120return0; 121} 122} 123return1; 124} 125 126static intsame_name(const struct cache_entry *ce,const char*name,int namelen,int icase) 127{ 128int len =ce_namelen(ce); 129 130/* 131 * Always do exact compare, even if we want a case-ignoring comparison; 132 * we do the quick exact one first, because it will be the common case. 133 */ 134if(len == namelen && !cache_name_compare(name, namelen, ce->name, len)) 135return1; 136 137if(!icase) 138return0; 139 140/* 141 * If the entry we're comparing is a filename (no trailing slash), then compare 142 * the lengths exactly. 143 */ 144if(name[namelen -1] !='/') 145returnslow_same_name(name, namelen, ce->name, len); 146 147/* 148 * For a directory, we point to an arbitrary cache_entry filename. Just 149 * make sure the directory portion matches. 150 */ 151returnslow_same_name(name, namelen, ce->name, namelen < len ? namelen : len); 152} 153 154struct cache_entry *index_name_exists(struct index_state *istate,const char*name,int namelen,int icase) 155{ 156unsigned int hash =hash_name(name, namelen); 157struct cache_entry *ce; 158 159lazy_init_name_hash(istate); 160 ce =lookup_hash(hash, &istate->name_hash); 161 162while(ce) { 163if(!(ce->ce_flags & CE_UNHASHED)) { 164if(same_name(ce, name, namelen, icase)) 165return ce; 166} 167if(icase && name[namelen -1] =='/') 168 ce = ce->dir_next; 169else 170 ce = ce->next; 171} 172 173/* 174 * Might be a submodule. Despite submodules being directories, 175 * they are stored in the name hash without a closing slash. 176 * When ignore_case is 1, directories are stored in the name hash 177 * with their closing slash. 178 * 179 * The side effect of this storage technique is we have need to 180 * remove the slash from name and perform the lookup again without 181 * the slash. If a match is made, S_ISGITLINK(ce->mode) will be 182 * true. 183 */ 184if(icase && name[namelen -1] =='/') { 185 ce =index_name_exists(istate, name, namelen -1, icase); 186if(ce &&S_ISGITLINK(ce->ce_mode)) 187return ce; 188} 189return NULL; 190}