libreoffice-online/loolwsd/test/countloolkits.hpp
Tor Lillqvist 42fdb3b079 Drop always-defaulted 'timeoutMs' parameter to countLoolKitProcesses()
Also, drop the pointless use of POLL_TIMEOUT_MS, we first multiplied by
it and then divided.
2016-09-16 12:52:55 +03:00

98 lines
2.9 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_COUNTLOOLKITPROCESSES_HPP
#define INCLUDED_COUNTLOOLKITPROCESSES_HPP
#include <Poco/DirectoryIterator.h>
#include <Poco/StringTokenizer.h>
/// Counts the number of LoolKit process instances without wiating.
static
int getLoolKitProcessCount()
{
int result = 0;
for (auto i = Poco::DirectoryIterator(std::string("/proc")); i != Poco::DirectoryIterator(); ++i)
{
try
{
Poco::Path procEntry = i.path();
const std::string& fileName = procEntry.getFileName();
int pid;
std::size_t endPos = 0;
try
{
pid = std::stoi(fileName, &endPos);
}
catch (const std::invalid_argument&)
{
pid = 0;
}
if (pid > 1 && endPos == fileName.length())
{
Poco::FileInputStream stat(procEntry.toString() + "/stat");
std::string statString;
Poco::StreamCopier::copyToString(stat, statString);
Poco::StringTokenizer tokens(statString, " ");
if (tokens.count() > 3 && tokens[1] == "(loolkit)")
{
switch (tokens[2].c_str()[0])
{
case 'x':
case 'X': // Kinds of dead-ness.
case 'Z': // zombies
break; // ignore
default:
result++;
break;
}
// std::cout << "Process:" << pid << ", '" << tokens[1] << "'" << " state: " << tokens[2] << std::endl;
}
}
}
catch (const Poco::Exception&)
{
}
}
std::cerr << "Number of loolkit processes: " << result << std::endl;
return result;
}
static
int countLoolKitProcesses(const int expected)
{
// Fairly random number, I don't think there is any actual reason for using exactly this repeat
// count.
const size_t repeat = 21;
auto count = getLoolKitProcessCount();
for (size_t i = 0; i < repeat; ++i)
{
if (count == expected)
{
return count;
}
// Give polls in the lool processes time to time out etc
Poco::Thread::sleep(POLL_TIMEOUT_MS / 2);
count = getLoolKitProcessCount();
}
if (expected != count)
{
std::cerr << "Found " << count << " LoKit processes but was expecting " << expected << "." << std::endl;
}
return count;
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */