`sync_bounded_queue::size` may return an incorrect value
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 2/5
- Tiempo estimado
- 1-3 horas
- Aptitud para principiantes
- 58/100
- Tipo de issue
- Error
- Claridad
- Bien especificado
- Estado de actividad
- Estancado
- Stack tecnológico
- cpp
- Área
- distributed-systems
Línea de trabajo
Comienza con include/boost/thread/concurrent_queues/sync_bounded_queue.hpp e inspecciona la implementación de size junto con full(), capacity() y el estado in_/out_. Reproduce la secuencia de wraparound del issue y después añade o adapta una prueba de regresión que cubra ciclos de push y pull; se considera terminado cuando size() coincide con el número de elementos encolados después del wraparound.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
Bug Report: sync_bounded_queue::size may return an incorrect value
Description
The sync_bounded_queue::size method can return an incorrect value under specific conditions.
Steps to Reproduce
- Create a
sync_bounded_queuewith a fixed capacity (e.g., 5). - Fill the queue to its maximum capacity using
try_push. - Empty the queue completely using
try_pull. - Push a single element into the queue.
After these steps, calling size() returns 0 instead of the expected 1. However, the empty() method correctly returns false.
Minimal Reproducible Example
#include <iostream>
#include <boost/thread/concurrent_queues/sync_bounded_queue.hpp>
int main() {
const size_t capacity = 5;
boost::sync_bounded_queue<int> queue(capacity);
size_t test_size = 0;
for (size_t i = 0; i < capacity; ++i) {
if (queue.try_push(i)) {
++test_size;
}
}
for (size_t i = 0; i < capacity; ++i) {
if (queue.try_pull()) {
--test_size;
}
}
if (queue.try_push(1)) {
++test_size;
}
std::cout << "size = " << queue.size() << "\ttest_size = " << test_size << std::endl;
std::cout << "empty = " << queue.empty() << "\ttest_empty = " << (test_size == 0) << std::endl;
std::cout << "[ TEST " << (queue.size() == test_size ? "PASSED" : "FAILED") << "]" << std::endl;
return 0;
}
Live Demo: https://godbolt.org/z/hMTvTT6Kq
Actual Output
size = 0 test_size = 1
empty = 0 test_empty = 0
[ TEST FAILED]
Expected Output
size = 1 test_size = 1
empty = 0 test_empty = 0
[ TEST PASSED]
Proposed Fix
The issue seems to be in the size method implementation. The current logic incorrectly handles the calculation when the queue has been wrapped around. The proposed fix simplifies the calculation:
--- a/include/boost/thread/concurrent_queues/sync_bounded_queue.hpp
+++ b/include/boost/thread/concurrent_queues/sync_bounded_queue.hpp
@@ -126,8 +126,7 @@ namespace concurrent
}
inline size_type size(lock_guard<mutex>& lk) const BOOST_NOEXCEPT
{
- if (full(lk)) return capacity(lk);
- return ((in_+capacity(lk)-out_) % capacity(lk));
+ return ((in_+capacity_-out_) % capacity_);
}
Validation
A comprehensive test has been created to verify the fix works correctly across multiple operations:
#include <iostream>
#include <boost/thread/concurrent_queues/sync_bounded_queue.hpp>
bool test_queue(boost::sync_bounded_queue<int>& queue, size_t& test_size, size_t count) {
for (size_t i = 0; i < 2 * queue.capacity(); ++i) {
for (size_t j = 0; j < count; ++j) {
++test_size;
if (!queue.try_push(0) || queue.size() != test_size) {
std::cout << "[ TEST FAILED ]" << std::endl;
return false;
}
}
for (size_t j = 0; j < count; ++j) {
--test_size;
if (!queue.try_pull() || queue.size() != test_size) {
std::cout << "[ TEST FAILED ]" << std::endl;
return false;
}
}
}
return true;
}
int main() {
const size_t capacity = 5;
boost::sync_bounded_queue<int> queue(capacity);
size_t test_size = 0;
for (size_t i = 1; i <= capacity; ++i) {
if (!test_queue(queue, test_size, i)) {
return 1;
}
}
return 0;
}
Test with current implementation (fails): https://godbolt.org/z/48nTe4zYP
Test with proposed fix (passes): https://godbolt.org/z/33Ysr9hsE
Environment
- Compiler: (any, reproduced on Godbolt with various compilers)
- Platform: (any)
- Lenguaje dominante
- C++
- Estrellas
- 213
- Forks
- 171
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de boostorg/thread
-
Dificultad 1/5 Menos de una hora Aptitud para principiantes 65/100
-
Dificultad 3/5 1-2 días Aptitud para principiantes 64/100
-
Dificultad 3/5 1-2 días Aptitud para principiantes 42/100
-
Dificultad 4/5 3-5 días Aptitud para principiantes 45/100
-
Dificultad 3/5 1-2 días Aptitud para principiantes 45/100
Todos los issues de boostorg/thread
Issues similares
-
Dificultad 1/5 Menos de una hora Aptitud para principiantes 90/100
AXERA-TECH/ax-llm#77 ·
-
Dificultad 1/5 Menos de una hora Aptitud para principiantes 90/100
games-on-whales/wolf#509 ·
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 74/100
-
bug-unconfirmed
Dificultad 2/5 1-3 horas Aptitud para principiantes 76/100
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 74/100
NVIDIA/cuda-samples#453 ·