2013-10-19 14:43:24 +02:00
|
|
|
/*
|
2022-07-14 17:58:12 +02:00
|
|
|
* Copyright 2003-2022 The Music Player Daemon Project
|
2013-10-19 14:43:24 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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 Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2021-05-15 16:16:49 +02:00
|
|
|
#include "Serial.hxx"
|
|
|
|
#include "Compiler.h"
|
2013-10-19 14:43:24 +02:00
|
|
|
|
|
|
|
#include <atomic>
|
2016-12-28 22:17:59 +01:00
|
|
|
#include <chrono>
|
2013-10-19 14:43:24 +02:00
|
|
|
|
2021-05-15 16:16:49 +02:00
|
|
|
static std::atomic_uint next_serial;
|
2013-10-19 14:43:24 +02:00
|
|
|
|
|
|
|
int
|
2021-05-15 16:16:49 +02:00
|
|
|
GenerateSerial() noexcept
|
2013-10-19 14:43:24 +02:00
|
|
|
{
|
2021-05-15 16:16:49 +02:00
|
|
|
unsigned serial = ++next_serial;
|
2013-10-19 14:43:24 +02:00
|
|
|
if (gcc_unlikely(serial < 16)) {
|
|
|
|
/* first-time initialization: seed with a clock value,
|
|
|
|
which is random enough for our use */
|
|
|
|
|
|
|
|
/* this code is not race-free, but good enough */
|
2016-12-28 22:17:59 +01:00
|
|
|
using namespace std::chrono;
|
|
|
|
const auto now = steady_clock::now().time_since_epoch();
|
|
|
|
const auto now_ms = duration_cast<milliseconds>(now);
|
|
|
|
const unsigned seed = now_ms.count();
|
2021-05-15 16:16:49 +02:00
|
|
|
next_serial = serial = seed;
|
2013-10-19 14:43:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return serial;
|
|
|
|
}
|
|
|
|
|