[1] | 1 | /* |
---|
| 2 | * xhtab.c - Remote access embedded hash table implementation. |
---|
| 3 | * |
---|
[23] | 4 | * Author Alain Greiner (2016,2017) |
---|
[1] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[14] | 24 | #include <kernel_config.h> |
---|
[1] | 25 | #include <hal_types.h> |
---|
| 26 | #include <hal_special.h> |
---|
| 27 | #include <hal_remote.h> |
---|
| 28 | #include <xlist.h> |
---|
| 29 | #include <remote_rwlock.h> |
---|
| 30 | #include <string.h> |
---|
| 31 | #include <printk.h> |
---|
| 32 | #include <xhtab.h> |
---|
| 33 | #include <vfs.h> |
---|
| 34 | |
---|
| 35 | |
---|
[23] | 36 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
[188] | 37 | // Item type specific functions (three functions for each item type). |
---|
[23] | 38 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 39 | |
---|
| 40 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
[188] | 41 | // This functions compute the hash index from the key when item is a vfs_dentry_t. |
---|
| 42 | // The key is the directory entry name. |
---|
[23] | 43 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
[188] | 44 | // @ key : local pointer on name. |
---|
[23] | 45 | // @ return the index value, from 0 to (HASHTAB_SIZE - 1) |
---|
| 46 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
[188] | 47 | static uint32_t xhtab_dentry_index_from_key( void * key ) |
---|
[23] | 48 | { |
---|
| 49 | char * name = key; |
---|
| 50 | uint32_t index = 0; |
---|
| 51 | while( *name ) |
---|
| 52 | { |
---|
| 53 | index = index + (*(name++) ^ index); |
---|
| 54 | } |
---|
[188] | 55 | return index % XHASHTAB_SIZE; |
---|
[23] | 56 | } |
---|
| 57 | |
---|
[188] | 58 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 59 | // This functions returns the extended pointer on the item, from the extended pointer |
---|
| 60 | // on xlist contained in the item, when the item is a vfs_entry_t. |
---|
| 61 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 62 | // @ xlist_xp : extended pointer on embedded xlist entry. |
---|
| 63 | // @ return the extended pointer on the dentry containing this xlist entry. |
---|
| 64 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 65 | static xptr_t xhtab_dentry_item_from_xlist( xptr_t xlist_xp ) |
---|
| 66 | { |
---|
| 67 | return XLIST_ELEMENT( xlist_xp , vfs_dentry_t , list ); |
---|
| 68 | } |
---|
| 69 | |
---|
[23] | 70 | //////////////////////////////////////////////////////////////////////////////////////////// |
---|
[188] | 71 | // This function compare the identifier of an item to a given <key>. For a vfs_entry_t, |
---|
| 72 | // it returns true when the directory name matches the name pointed by the <key> argument. |
---|
[23] | 73 | //////////////////////////////////////////////////////////////////////////////////////////// |
---|
[188] | 74 | // @ item_xp : extended pointer on item. |
---|
| 75 | // @ key : pointer on searched item identifier. |
---|
| 76 | // returns true if given name matches directory entry name. |
---|
[23] | 77 | //////////////////////////////////////////////////////////////////////////////////////////// |
---|
[204] | 78 | static bool_t xhtab_dentry_item_match_key( xptr_t item_xp, |
---|
[188] | 79 | void * key ) |
---|
[1] | 80 | { |
---|
[204] | 81 | char name[CONFIG_VFS_MAX_NAME_LENGTH]; |
---|
[23] | 82 | |
---|
[188] | 83 | // get dentry cluster and local pointer |
---|
[204] | 84 | cxy_t dentry_cxy = GET_CXY( item_xp ); |
---|
| 85 | vfs_dentry_t * dentry_ptr = (vfs_dentry_t *)GET_PTR( item_xp ); |
---|
[23] | 86 | |
---|
[188] | 87 | // make a local copy of directory entry name |
---|
| 88 | hal_remote_strcpy( XPTR( local_cxy , name ) , |
---|
| 89 | XPTR( dentry_cxy , &dentry_ptr->name ) ); |
---|
[23] | 90 | |
---|
[188] | 91 | return( strcmp( name , (char*)key ) == 0 ); |
---|
[1] | 92 | } |
---|
[204] | 93 | |
---|
| 94 | //////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 95 | // This function print the item key, that is the name for a vfs_entry_t, |
---|
| 96 | //////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 97 | // @ item_xp : extended pointer on item. |
---|
| 98 | //////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 99 | static void xhtab_dentry_item_print_key( xptr_t item_xp ) |
---|
| 100 | { |
---|
| 101 | char name[CONFIG_VFS_MAX_NAME_LENGTH]; |
---|
| 102 | |
---|
| 103 | // get dentry cluster and local pointer |
---|
| 104 | cxy_t dentry_cxy = GET_CXY( item_xp ); |
---|
| 105 | vfs_dentry_t * dentry_ptr = (vfs_dentry_t *)GET_PTR( item_xp ); |
---|
| 106 | |
---|
| 107 | // make a local copy of directory entry name |
---|
| 108 | hal_remote_strcpy( XPTR( local_cxy , name ) , |
---|
| 109 | XPTR( dentry_cxy , &dentry_ptr->name ) ); |
---|
| 110 | |
---|
| 111 | // print dentry name |
---|
| 112 | printk("%s , ", name ); |
---|
| 113 | } |
---|
| 114 | |
---|
[23] | 115 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 116 | // Generic access functions |
---|
| 117 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 118 | |
---|
| 119 | ////////////////////////////////////////// |
---|
| 120 | void xhtab_init( xhtab_t * xhtab, |
---|
| 121 | xhtab_item_type_t type ) |
---|
[1] | 122 | { |
---|
| 123 | uint32_t i; |
---|
| 124 | |
---|
| 125 | // initialize readlock |
---|
| 126 | remote_rwlock_init( XPTR( local_cxy , &xhtab->lock) ); |
---|
| 127 | |
---|
[204] | 128 | xhtab->items = 0; |
---|
| 129 | xhtab->current_index = 0; |
---|
| 130 | xhtab->current_xlist_xp = XPTR_NULL; |
---|
[1] | 131 | |
---|
| 132 | if( type == XHTAB_DENTRY_TYPE ) |
---|
| 133 | { |
---|
[188] | 134 | xhtab->item_match_key = &xhtab_dentry_item_match_key; |
---|
| 135 | xhtab->index_from_key = &xhtab_dentry_index_from_key; |
---|
| 136 | xhtab->item_from_xlist = &xhtab_dentry_item_from_xlist; |
---|
[204] | 137 | xhtab->item_print_key = &xhtab_dentry_item_print_key; |
---|
[1] | 138 | } |
---|
| 139 | else |
---|
| 140 | { |
---|
| 141 | printk("\n[PANIC] in %s : illegal item type\n", __FUNCTION__ ); |
---|
| 142 | hal_core_sleep(); |
---|
| 143 | } |
---|
| 144 | |
---|
[188] | 145 | for( i=0 ; i < XHASHTAB_SIZE ; i++ ) |
---|
[1] | 146 | { |
---|
| 147 | xlist_root_init( XPTR( local_cxy , &xhtab->roots[i] ) ); |
---|
| 148 | } |
---|
[188] | 149 | |
---|
| 150 | } // end xhtab_init() |
---|
| 151 | |
---|
| 152 | ////////////////////////////////////// |
---|
| 153 | xptr_t xhtab_scan( xptr_t xhtab_xp, |
---|
| 154 | uint32_t index, |
---|
| 155 | void * key ) |
---|
| 156 | { |
---|
[204] | 157 | xptr_t xlist_xp; // xlist_entry_t (iterator) |
---|
| 158 | xptr_t item_xp; // associated item |
---|
| 159 | xhtab_t * xhtab_ptr; // hash table local pointer |
---|
| 160 | cxy_t xhtab_cxy; // hash table cluster |
---|
| 161 | item_from_xlist_t * item_from_xlist; // function pointer |
---|
| 162 | item_match_key_t * item_match_key; // function pointer |
---|
[188] | 163 | |
---|
| 164 | // get hash table cluster and local pointer |
---|
| 165 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 166 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
| 167 | |
---|
[204] | 168 | // get pointer on "item_from_xlist" function |
---|
| 169 | item_from_xlist = (item_from_xlist_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 170 | &xhtab_ptr->item_from_xlist ) ); |
---|
| 171 | // get pointer on "item_match_key" function |
---|
| 172 | item_match_key = (item_match_key_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 173 | &xhtab_ptr->item_match_key ) ); |
---|
| 174 | |
---|
[188] | 175 | // scan sub-list[index] |
---|
| 176 | XLIST_FOREACH( XPTR( xhtab_cxy , &xhtab_ptr->roots[index] ) , xlist_xp ) |
---|
| 177 | { |
---|
| 178 | // get extended pointer on item containing the xlist entry |
---|
[204] | 179 | item_xp = item_from_xlist( xlist_xp ); |
---|
[188] | 180 | |
---|
| 181 | // check matching |
---|
[204] | 182 | if( item_match_key( item_xp , key ) ) return item_xp; |
---|
[188] | 183 | } |
---|
| 184 | |
---|
| 185 | // No matching item found |
---|
| 186 | return XPTR_NULL; |
---|
[1] | 187 | |
---|
[204] | 188 | } // end xhtab_scan() |
---|
| 189 | |
---|
[1] | 190 | /////////////////////////////////////// |
---|
[23] | 191 | error_t xhtab_insert( xptr_t xhtab_xp, |
---|
| 192 | void * key, |
---|
| 193 | xptr_t xlist_xp ) |
---|
[1] | 194 | { |
---|
[204] | 195 | xptr_t item_xp; |
---|
| 196 | uint32_t index; |
---|
| 197 | cxy_t xhtab_cxy; |
---|
| 198 | xhtab_t * xhtab_ptr; |
---|
| 199 | index_from_key_t * index_from_key; // function pointer |
---|
| 200 | |
---|
[1] | 201 | // get xhtab cluster and local pointer |
---|
[204] | 202 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 203 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
[1] | 204 | |
---|
[204] | 205 | // get pointer on "index_from_key" function |
---|
| 206 | index_from_key = (index_from_key_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 207 | &xhtab_ptr->index_from_key ) ); |
---|
[1] | 208 | // compute index from key |
---|
[204] | 209 | index = index_from_key( key ); |
---|
[1] | 210 | |
---|
| 211 | // take the lock protecting hash table |
---|
| 212 | remote_rwlock_wr_lock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 213 | |
---|
[23] | 214 | // search a matching item |
---|
[204] | 215 | item_xp = xhtab_scan( xhtab_xp , index , key ); |
---|
[1] | 216 | |
---|
[23] | 217 | if( item_xp != XPTR_NULL ) // error if found |
---|
| 218 | { |
---|
| 219 | // release the lock protecting hash table |
---|
| 220 | remote_rwlock_wr_unlock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
[1] | 221 | |
---|
[23] | 222 | return EINVAL; |
---|
| 223 | } |
---|
| 224 | else // insert item if not found |
---|
| 225 | { |
---|
| 226 | // register item in hash table |
---|
| 227 | xlist_add_last( XPTR( xhtab_cxy , &xhtab_ptr->roots[index] ) , xlist_xp ); |
---|
[1] | 228 | |
---|
[23] | 229 | // update number of registered items |
---|
| 230 | hal_remote_atomic_add( XPTR( xhtab_cxy , &xhtab_ptr->items ) , 1 ); |
---|
| 231 | |
---|
| 232 | // release the lock protecting hash table |
---|
| 233 | remote_rwlock_wr_unlock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 234 | |
---|
| 235 | return 0; |
---|
| 236 | } |
---|
| 237 | } // end xhtab_insert() |
---|
| 238 | |
---|
[1] | 239 | ///////////////////////////////////// |
---|
[23] | 240 | error_t xhtab_remove( xptr_t xhtab_xp, |
---|
| 241 | void * key, |
---|
| 242 | xptr_t xlist_entry_xp ) |
---|
[1] | 243 | { |
---|
[204] | 244 | xptr_t item_xp; |
---|
| 245 | uint32_t index; |
---|
| 246 | cxy_t xhtab_cxy; |
---|
| 247 | xhtab_t * xhtab_ptr; |
---|
| 248 | index_from_key_t * index_from_key; // function pointer |
---|
| 249 | |
---|
[1] | 250 | // get xhtab cluster and local pointer |
---|
[204] | 251 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 252 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
[1] | 253 | |
---|
[204] | 254 | // get pointer on "index_from_key" function |
---|
| 255 | index_from_key = (index_from_key_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 256 | &xhtab_ptr->index_from_key ) ); |
---|
[23] | 257 | // compute index from key |
---|
[204] | 258 | index = index_from_key( key ); |
---|
[23] | 259 | |
---|
[1] | 260 | // take the lock protecting hash table |
---|
| 261 | remote_rwlock_wr_lock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 262 | |
---|
| 263 | // get extended pointer on item to remove |
---|
[204] | 264 | item_xp = xhtab_scan( xhtab_xp , index , key ); |
---|
[1] | 265 | |
---|
[23] | 266 | if( item_xp == XPTR_NULL ) // error if not found |
---|
[1] | 267 | { |
---|
| 268 | // release the lock protecting hash table |
---|
| 269 | remote_rwlock_wr_unlock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
[23] | 270 | |
---|
| 271 | return EINVAL; |
---|
[1] | 272 | } |
---|
| 273 | else // remove item if found |
---|
| 274 | { |
---|
| 275 | // remove item from hash table <=> unlink xlist_entry_t |
---|
[23] | 276 | xlist_unlink( xlist_entry_xp ); |
---|
[1] | 277 | |
---|
| 278 | // update number of registered items |
---|
| 279 | hal_remote_atomic_add( XPTR( xhtab_cxy , &xhtab_ptr->items ) , -1 ); |
---|
| 280 | |
---|
| 281 | // release the lock protecting hash table |
---|
| 282 | remote_rwlock_wr_unlock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
[23] | 283 | |
---|
| 284 | return 0; |
---|
[1] | 285 | } |
---|
[23] | 286 | } // end xhtab_remove() |
---|
[1] | 287 | |
---|
| 288 | ///////////////////////////////////////// |
---|
| 289 | xptr_t xhtab_lookup( xptr_t xhtab_xp, |
---|
| 290 | void * key ) |
---|
| 291 | { |
---|
[204] | 292 | xptr_t item_xp; |
---|
| 293 | uint32_t index; |
---|
| 294 | cxy_t xhtab_cxy; |
---|
| 295 | xhtab_t * xhtab_ptr; |
---|
| 296 | index_from_key_t * index_from_key; // function pointer |
---|
[1] | 297 | |
---|
| 298 | // get xhtab cluster and local pointer |
---|
[204] | 299 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 300 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
[1] | 301 | |
---|
[204] | 302 | // get pointer on "index_from_key" function |
---|
| 303 | index_from_key = (index_from_key_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 304 | &xhtab_ptr->index_from_key ) ); |
---|
[1] | 305 | // compute index from key |
---|
[204] | 306 | index = index_from_key( key ); |
---|
[1] | 307 | |
---|
| 308 | // take the lock protecting hash table |
---|
| 309 | remote_rwlock_rd_lock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 310 | |
---|
| 311 | // scan sub-list |
---|
[188] | 312 | item_xp = xhtab_scan( xhtab_xp , index , key ); |
---|
[1] | 313 | |
---|
| 314 | // release the lock protecting hash table |
---|
| 315 | remote_rwlock_rd_unlock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 316 | |
---|
| 317 | return item_xp; |
---|
| 318 | |
---|
| 319 | } // end xhtab_lookup() |
---|
| 320 | |
---|
[188] | 321 | /////////////////////////////////////// |
---|
| 322 | void xhtab_read_lock( xptr_t xhtab_xp ) |
---|
| 323 | { |
---|
| 324 | // get xhtab cluster and local pointer |
---|
| 325 | cxy_t xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 326 | xhtab_t * xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
[1] | 327 | |
---|
[188] | 328 | // take the lock protecting hash table |
---|
| 329 | remote_rwlock_rd_lock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 330 | } |
---|
| 331 | |
---|
| 332 | ///////////////////////////////////////// |
---|
| 333 | void xhtab_read_unlock( xptr_t xhtab_xp ) |
---|
| 334 | { |
---|
| 335 | // get xhtab cluster and local pointer |
---|
| 336 | cxy_t xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 337 | xhtab_t * xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
| 338 | |
---|
| 339 | // release the lock protecting hash table |
---|
| 340 | remote_rwlock_rd_unlock( XPTR( xhtab_cxy , &xhtab_ptr->lock ) ); |
---|
| 341 | } |
---|
| 342 | |
---|
| 343 | ///////////////////////////////////////// |
---|
| 344 | xptr_t xhtab_get_first( xptr_t xhtab_xp ) |
---|
| 345 | { |
---|
[204] | 346 | uint32_t index; |
---|
| 347 | cxy_t xhtab_cxy; |
---|
| 348 | xhtab_t * xhtab_ptr; |
---|
| 349 | xptr_t xlist_xp; |
---|
| 350 | xptr_t item_xp; |
---|
| 351 | xptr_t root_xp; |
---|
| 352 | item_from_xlist_t * item_from_xlist; // function pointer |
---|
[188] | 353 | |
---|
| 354 | // get xhtab cluster and local pointer |
---|
[204] | 355 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 356 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
[188] | 357 | |
---|
[204] | 358 | // get pointer on "item_from_xlist" function |
---|
| 359 | item_from_xlist = (item_from_xlist_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 360 | &xhtab_ptr->item_from_xlist ) ); |
---|
[188] | 361 | //loop on subsets |
---|
| 362 | for( index = 0 ; index < XHASHTAB_SIZE ; index++ ) |
---|
| 363 | { |
---|
| 364 | // get root of subset |
---|
| 365 | root_xp = XPTR( xhtab_cxy , &xhtab_ptr->roots[index] ); |
---|
| 366 | |
---|
| 367 | // get first item |
---|
| 368 | xlist_xp = xlist_next( root_xp , root_xp ); |
---|
| 369 | |
---|
| 370 | if( xlist_xp != XPTR_NULL ) // first item found |
---|
| 371 | { |
---|
| 372 | // get extended pointer on item containing the xlist entry |
---|
[204] | 373 | item_xp = item_from_xlist( xlist_xp ); |
---|
[188] | 374 | |
---|
| 375 | // register item in hash table header |
---|
| 376 | hal_remote_sw ( XPTR( xhtab_cxy , &xhtab_ptr->current_index ) , index ); |
---|
| 377 | hal_remote_swd( XPTR( xhtab_cxy , &xhtab_ptr->current_xlist_xp ) , xlist_xp ); |
---|
| 378 | |
---|
| 379 | return item_xp; |
---|
| 380 | } |
---|
| 381 | } |
---|
| 382 | |
---|
| 383 | // item not found |
---|
| 384 | return XPTR_NULL; |
---|
| 385 | |
---|
| 386 | } // end xhtab_get_first() |
---|
| 387 | |
---|
| 388 | //////////////////////////////////////// |
---|
| 389 | xptr_t xhtab_get_next( xptr_t xhtab_xp ) |
---|
| 390 | { |
---|
[204] | 391 | uint32_t index; |
---|
| 392 | cxy_t xhtab_cxy; |
---|
| 393 | xhtab_t * xhtab_ptr; |
---|
| 394 | xptr_t xlist_xp; |
---|
| 395 | xptr_t item_xp; |
---|
| 396 | xptr_t root_xp; |
---|
| 397 | item_from_xlist_t * item_from_xlist; // function pointer |
---|
[188] | 398 | |
---|
| 399 | uint32_t current_index; |
---|
| 400 | xptr_t current_xlist_xp; |
---|
| 401 | |
---|
| 402 | // get xhtab cluster and local pointer |
---|
[204] | 403 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 404 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
[188] | 405 | |
---|
| 406 | // get current item pointers |
---|
| 407 | current_index = hal_remote_lw ( XPTR( xhtab_cxy , &xhtab_ptr->current_index ) ); |
---|
| 408 | current_xlist_xp = hal_remote_lwd( XPTR( xhtab_cxy , &xhtab_ptr->current_xlist_xp ) ); |
---|
| 409 | |
---|
[204] | 410 | // get pointer on "item_from_xlist" function |
---|
| 411 | item_from_xlist = (item_from_xlist_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 412 | &xhtab_ptr->item_from_xlist ) ); |
---|
[188] | 413 | //loop on subsets |
---|
| 414 | for( index = current_index ; index < XHASHTAB_SIZE ; index++ ) |
---|
| 415 | { |
---|
| 416 | // get root of subset |
---|
| 417 | root_xp = XPTR( xhtab_cxy , &xhtab_ptr->roots[index] ); |
---|
| 418 | |
---|
| 419 | // get next item |
---|
[204] | 420 | if( index == current_index ) xlist_xp = xlist_next( root_xp , current_xlist_xp ); |
---|
| 421 | else xlist_xp = xlist_next( root_xp , root_xp ); |
---|
[188] | 422 | |
---|
| 423 | if( xlist_xp != XPTR_NULL ) // next item found |
---|
| 424 | { |
---|
| 425 | // get extended pointer on item containing the xlist entry |
---|
[204] | 426 | item_xp = item_from_xlist( xlist_xp ); |
---|
[188] | 427 | |
---|
| 428 | // register item in hash table header |
---|
| 429 | hal_remote_sw ( XPTR( xhtab_cxy , &xhtab_ptr->current_index ) , index ); |
---|
| 430 | hal_remote_swd( XPTR( xhtab_cxy , &xhtab_ptr->current_xlist_xp ) , xlist_xp ); |
---|
| 431 | |
---|
| 432 | return item_xp; |
---|
| 433 | } |
---|
| 434 | } |
---|
| 435 | |
---|
| 436 | // item not found |
---|
| 437 | return XPTR_NULL; |
---|
| 438 | |
---|
| 439 | } // end xhtab_get_next() |
---|
| 440 | |
---|
[204] | 441 | ///////////////////////////////////// |
---|
| 442 | void xhtab_display( xptr_t xhtab_xp ) |
---|
| 443 | { |
---|
| 444 | uint32_t index; |
---|
| 445 | cxy_t xhtab_cxy; |
---|
| 446 | xhtab_t * xhtab_ptr; |
---|
| 447 | xptr_t root_xp; |
---|
| 448 | xptr_t iter_xp; |
---|
| 449 | xptr_t item_xp; |
---|
| 450 | item_from_xlist_t * item_from_xlist; // function pointer |
---|
| 451 | item_print_key_t * item_print_key; // function pointer |
---|
[188] | 452 | |
---|
[204] | 453 | // get xhtab cluster and local pointer |
---|
| 454 | xhtab_cxy = GET_CXY( xhtab_xp ); |
---|
| 455 | xhtab_ptr = (xhtab_t *)GET_PTR( xhtab_xp ); |
---|
| 456 | |
---|
| 457 | // get pointer on "item_from_xlist" function |
---|
| 458 | item_from_xlist = (item_from_xlist_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 459 | &xhtab_ptr->item_from_xlist ) ); |
---|
| 460 | // get pointer on "item_print_key" function |
---|
| 461 | item_print_key = (item_print_key_t *)hal_remote_lpt( XPTR( xhtab_cxy , |
---|
| 462 | &xhtab_ptr->item_print_key ) ); |
---|
| 463 | //loop on subsets |
---|
| 464 | for( index = 0 ; index < XHASHTAB_SIZE ; index++ ) |
---|
| 465 | { |
---|
| 466 | printk(" index = %d : ", index ); |
---|
| 467 | |
---|
| 468 | // get root of subset |
---|
| 469 | root_xp = XPTR( xhtab_cxy , &xhtab_ptr->roots[index] ); |
---|
| 470 | |
---|
| 471 | // loop on xlist |
---|
| 472 | XLIST_FOREACH( root_xp , iter_xp ) |
---|
| 473 | { |
---|
| 474 | // get item from xlist |
---|
| 475 | item_xp = item_from_xlist( iter_xp ); |
---|
| 476 | |
---|
| 477 | // print item identifier |
---|
| 478 | item_print_key( item_xp ); |
---|
| 479 | } |
---|
| 480 | |
---|
| 481 | printk("\n"); |
---|
| 482 | } |
---|
| 483 | } // end xhtab_display() |
---|