Commit 5fb4c0a8 authored by Marko Mäkelä's avatar Marko Mäkelä

Clean up ut_list

ut_list_validate(), ut_list_map(): Add variants with const Functor&
so that these functions can be called with an rvalue.

Remove wrapper macros, and add #ifdef UNIV_DEBUG around debug-only code.
parent bdd6e33f
...@@ -175,13 +175,13 @@ buf_buddy_get( ...@@ -175,13 +175,13 @@ buf_buddy_get(
struct CheckZipFree { struct CheckZipFree {
CheckZipFree(ulint i) : m_i(i) {} CheckZipFree(ulint i) : m_i(i) {}
void operator()(const buf_buddy_free_t* elem) const void operator()(const buf_buddy_free_t* elem) const
{ {
ut_a(buf_buddy_stamp_is_free(elem)); ut_ad(buf_buddy_stamp_is_free(elem));
ut_a(elem->stamp.size <= m_i); ut_ad(elem->stamp.size <= m_i);
} }
ulint m_i; const ulint m_i;
}; };
/** Validate a buddy list. /** Validate a buddy list.
...@@ -193,8 +193,7 @@ buf_buddy_list_validate( ...@@ -193,8 +193,7 @@ buf_buddy_list_validate(
const buf_pool_t* buf_pool, const buf_pool_t* buf_pool,
ulint i) ulint i)
{ {
CheckZipFree check(i); ut_list_validate(buf_pool->zip_free[i], CheckZipFree(i));
ut_list_validate(buf_pool->zip_free[i], check);
} }
/**********************************************************************//** /**********************************************************************//**
......
...@@ -3533,7 +3533,7 @@ buf_flush_request_force( ...@@ -3533,7 +3533,7 @@ buf_flush_request_force(
/** Functor to validate the flush list. */ /** Functor to validate the flush list. */
struct Check { struct Check {
void operator()(const buf_page_t* elem) void operator()(const buf_page_t* elem) const
{ {
ut_a(elem->in_flush_list); ut_a(elem->in_flush_list);
} }
...@@ -3550,11 +3550,10 @@ buf_flush_validate_low( ...@@ -3550,11 +3550,10 @@ buf_flush_validate_low(
{ {
buf_page_t* bpage; buf_page_t* bpage;
const ib_rbt_node_t* rnode = NULL; const ib_rbt_node_t* rnode = NULL;
Check check;
ut_ad(buf_flush_list_mutex_own(buf_pool)); ut_ad(buf_flush_list_mutex_own(buf_pool));
ut_list_validate(buf_pool->flush_list, check); ut_list_validate(buf_pool->flush_list, Check());
bpage = UT_LIST_GET_FIRST(buf_pool->flush_list); bpage = UT_LIST_GET_FIRST(buf_pool->flush_list);
......
...@@ -5327,7 +5327,7 @@ fil_validate(void) ...@@ -5327,7 +5327,7 @@ fil_validate(void)
ut_a(fil_system->n_open == n_open); ut_a(fil_system->n_open == n_open);
UT_LIST_CHECK(fil_system->LRU); ut_list_validate(fil_system->LRU);
for (fil_node = UT_LIST_GET_FIRST(fil_system->LRU); for (fil_node = UT_LIST_GET_FIRST(fil_system->LRU);
fil_node != 0; fil_node != 0;
......
...@@ -2423,8 +2423,7 @@ struct CheckInLRUList { ...@@ -2423,8 +2423,7 @@ struct CheckInLRUList {
static void validate(const buf_pool_t* buf_pool) static void validate(const buf_pool_t* buf_pool)
{ {
CheckInLRUList check; ut_list_validate(buf_pool->LRU, CheckInLRUList());
ut_list_validate(buf_pool->LRU, check);
} }
}; };
...@@ -2437,8 +2436,7 @@ struct CheckInFreeList { ...@@ -2437,8 +2436,7 @@ struct CheckInFreeList {
static void validate(const buf_pool_t* buf_pool) static void validate(const buf_pool_t* buf_pool)
{ {
CheckInFreeList check; ut_list_validate(buf_pool->free, CheckInFreeList());
ut_list_validate(buf_pool->free, check);
} }
}; };
...@@ -2451,8 +2449,8 @@ struct CheckUnzipLRUAndLRUList { ...@@ -2451,8 +2449,8 @@ struct CheckUnzipLRUAndLRUList {
static void validate(const buf_pool_t* buf_pool) static void validate(const buf_pool_t* buf_pool)
{ {
CheckUnzipLRUAndLRUList check; ut_list_validate(buf_pool->unzip_LRU,
ut_list_validate(buf_pool->unzip_LRU, check); CheckUnzipLRUAndLRUList());
} }
}; };
#endif /* UNIV_DEBUG || defined UNIV_BUF_DEBUG */ #endif /* UNIV_DEBUG || defined UNIV_BUF_DEBUG */
......
/***************************************************************************** /*****************************************************************************
Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2019, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under This program 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 the terms of the GNU General Public License as published by the Free Software
...@@ -426,24 +427,19 @@ Gets the last node in a two-way list. ...@@ -426,24 +427,19 @@ Gets the last node in a two-way list.
@return last node, or NULL if the list is empty */ @return last node, or NULL if the list is empty */
#define UT_LIST_GET_LAST(BASE) (BASE).end #define UT_LIST_GET_LAST(BASE) (BASE).end
struct NullValidate { void operator()(const void* elem) { } }; struct NullValidate { void operator()(const void*) const {} };
/********************************************************************//** /** Iterate over all the elements and call the functor for each element.
Iterate over all the elements and call the functor for each element.
@param[in] list base node (not a pointer to it) @param[in] list base node (not a pointer to it)
@param[in,out] functor Functor that is called for each element in the list */ @param[in,out] functor Functor that is called for each element in the list */
template <typename List, class Functor> template <typename List, class Functor>
void inline void ut_list_map(const List& list, Functor& functor)
ut_list_map(
const List& list,
Functor& functor)
{ {
ulint count = 0; ulint count = 0;
UT_LIST_IS_INITIALISED(list); UT_LIST_IS_INITIALISED(list);
for (typename List::elem_type* elem = list.start; for (typename List::elem_type* elem = list.start; elem;
elem != 0;
elem = (elem->*list.node).next, ++count) { elem = (elem->*list.node).next, ++count) {
functor(elem); functor(elem);
...@@ -452,32 +448,50 @@ ut_list_map( ...@@ -452,32 +448,50 @@ ut_list_map(
ut_a(count == list.count); ut_a(count == list.count);
} }
template <typename List> /** Iterate over all the elements and call the functor for each element.
void @param[in] list base node (not a pointer to it)
ut_list_reverse(List& list) @param[in] functor Functor that is called for each element in the list */
template <typename List, class Functor>
inline void ut_list_map(const List& list, const Functor& functor)
{ {
ulint count = 0;
UT_LIST_IS_INITIALISED(list); UT_LIST_IS_INITIALISED(list);
for (typename List::elem_type* elem = list.start; for (typename List::elem_type* elem = list.start; elem;
elem = (elem->*list.node).next, ++count) {
functor(elem);
}
ut_a(count == list.count);
}
/** Check the consistency of a doubly linked list.
@param[in] list base node (not a pointer to it)
@param[in,out] functor Functor that is called for each element in the list */
template <typename List, class Functor>
void ut_list_validate(const List& list, Functor& functor)
{
ut_list_map(list, functor);
/* Validate the list backwards. */
ulint count = 0;
for (typename List::elem_type* elem = list.end;
elem != 0; elem != 0;
elem = (elem->*list.node).prev) { elem = (elem->*list.node).prev) {
(elem->*list.node).reverse(); ++count;
} }
list.reverse(); ut_a(count == list.count);
} }
#define UT_LIST_REVERSE(LIST) ut_list_reverse(LIST) /** Check the consistency of a doubly linked list.
@param[in] list base node (not a pointer to it)
/********************************************************************//** @param[in] functor Functor that is called for each element in the list */
Checks the consistency of a two-way list.
@param[in] list base node (not a pointer to it)
@param[in,out] functor Functor that is called for each element in the list */
template <typename List, class Functor> template <typename List, class Functor>
void inline void ut_list_validate(const List& list, const Functor& functor)
ut_list_validate(
const List& list,
Functor& functor)
{ {
ut_list_map(list, functor); ut_list_map(list, functor);
...@@ -493,12 +507,42 @@ ut_list_validate( ...@@ -493,12 +507,42 @@ ut_list_validate(
ut_a(count == list.count); ut_a(count == list.count);
} }
/** Check the consistency of a two-way list. template <typename List>
@param[in] LIST base node reference */ inline void ut_list_validate(const List& list)
#define UT_LIST_CHECK(LIST) do { \ {
NullValidate nullV; \ ut_list_validate(list, NullValidate());
ut_list_validate(LIST, nullV); \ }
} while (0)
#ifdef UNIV_DEBUG
template <typename List>
inline void ut_list_reverse(List& list)
{
UT_LIST_IS_INITIALISED(list);
for (typename List::elem_type* elem = list.start;
elem != 0;
elem = (elem->*list.node).prev) {
(elem->*list.node).reverse();
}
list.reverse();
}
/** Check if the given element exists in the list.
@param[in,out] list the list object
@param[in] elem the element of the list which will be checked */
template <typename List>
inline bool ut_list_exists(const List& list, typename List::elem_type* elem)
{
for (typename List::elem_type* e1 = UT_LIST_GET_FIRST(list); e1;
e1 = (e1->*list.node).next) {
if (elem == e1) {
return true;
}
}
return false;
}
#endif
/** Move the given element to the beginning of the list. /** Move the given element to the beginning of the list.
@param[in,out] list the list object @param[in,out] list the list object
...@@ -519,28 +563,6 @@ ut_list_move_to_front( ...@@ -519,28 +563,6 @@ ut_list_move_to_front(
} }
#ifdef UNIV_DEBUG #ifdef UNIV_DEBUG
/** Check if the given element exists in the list.
@param[in,out] list the list object
@param[in] elem the element of the list which will be checked */
template <typename List>
bool
ut_list_exists(
List& list,
typename List::elem_type* elem)
{
typename List::elem_type* e1;
for (e1 = UT_LIST_GET_FIRST(list); e1 != NULL;
e1 = (e1->*list.node).next) {
if (elem == e1) {
return(true);
}
}
return(false);
}
#endif #endif
#define UT_LIST_MOVE_TO_FRONT(LIST, ELEM) \
ut_list_move_to_front(LIST, ELEM)
#endif /* ut0lst.h */ #endif /* ut0lst.h */
...@@ -2738,7 +2738,7 @@ lock_move_granted_locks_to_front( ...@@ -2738,7 +2738,7 @@ lock_move_granted_locks_to_front(
if (!lock->is_waiting()) { if (!lock->is_waiting()) {
lock_t* prev = UT_LIST_GET_PREV(trx_locks, lock); lock_t* prev = UT_LIST_GET_PREV(trx_locks, lock);
ut_a(prev); ut_a(prev);
UT_LIST_MOVE_TO_FRONT(lock_list, lock); ut_list_move_to_front(lock_list, lock);
lock = prev; lock = prev;
} }
} }
...@@ -2826,7 +2826,7 @@ lock_move_reorganize_page( ...@@ -2826,7 +2826,7 @@ lock_move_reorganize_page(
lock_move_granted_locks_to_front(old_locks); lock_move_granted_locks_to_front(old_locks);
DBUG_EXECUTE_IF("do_lock_reverse_page_reorganize", DBUG_EXECUTE_IF("do_lock_reverse_page_reorganize",
UT_LIST_REVERSE(old_locks);); ut_list_reverse(old_locks););
for (lock = UT_LIST_GET_FIRST(old_locks); lock; for (lock = UT_LIST_GET_FIRST(old_locks); lock;
lock = UT_LIST_GET_NEXT(trx_locks, lock)) { lock = UT_LIST_GET_NEXT(trx_locks, lock)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment