mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
163 lines
4.5 KiB
C++
163 lines
4.5 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
#include <string>
|
|
#include <string_view>
|
|
#endif // __cplusplus
|
|
|
|
#ifdef __cplusplus
|
|
namespace wpi::log {
|
|
class DataLog;
|
|
} // namespace wpi::log
|
|
|
|
namespace wpi {
|
|
|
|
/**
|
|
* Centralized data log that provides automatic data log file management. It
|
|
* automatically cleans up old files when disk space is low and renames the file
|
|
* based either on current date/time or (if available) competition match number.
|
|
* The data file will be saved to a USB flash drive in a folder named "logs" if
|
|
* one is attached, or to /home/lvuser/logs otherwise.
|
|
*
|
|
* Log files are initially named "FRC_TBD_{random}.wpilog" until the DS
|
|
* connects. After the DS connects, the log file is renamed to
|
|
* "FRC_yyyyMMdd_HHmmss.wpilog" (where the date/time is UTC). If the FMS is
|
|
* connected and provides a match number, the log file is renamed to
|
|
* "FRC_yyyyMMdd_HHmmss_{event}_{match}.wpilog".
|
|
*
|
|
* On startup, all existing FRC_TBD log files are deleted. If there is less than
|
|
* 50 MB of free space on the target storage, FRC_ log files are deleted (oldest
|
|
* to newest) until there is 50 MB free OR there are 10 files remaining.
|
|
*
|
|
* By default, all NetworkTables value changes are stored to the data log.
|
|
*/
|
|
class DataLogManager final {
|
|
public:
|
|
DataLogManager() = delete;
|
|
|
|
/**
|
|
* Start data log manager. The parameters have no effect if the data log
|
|
* manager was already started (e.g. by calling another static function).
|
|
*
|
|
* @param dir if not empty, directory to use for data log storage
|
|
* @param filename filename to use; if none provided, the filename is
|
|
* automatically generated
|
|
* @param period time between automatic flushes to disk, in seconds;
|
|
* this is a time/storage tradeoff
|
|
*/
|
|
static void Start(std::string_view dir = "", std::string_view filename = "",
|
|
double period = 0.25);
|
|
|
|
/**
|
|
* Stop data log manager.
|
|
*/
|
|
static void Stop();
|
|
|
|
/**
|
|
* Log a message to the "messages" entry. The message is also printed to
|
|
* standard output (followed by a newline).
|
|
*
|
|
* @param message message
|
|
*/
|
|
static void Log(std::string_view message);
|
|
|
|
/**
|
|
* Get the managed data log (for custom logging). Starts the data log manager
|
|
* if not already started.
|
|
*
|
|
* @return data log
|
|
*/
|
|
static wpi::log::DataLog& GetLog();
|
|
|
|
/**
|
|
* Get the log directory.
|
|
*
|
|
* @return log directory
|
|
*/
|
|
static std::string_view GetLogDir();
|
|
|
|
/**
|
|
* Enable or disable logging of NetworkTables data. Note that unlike the
|
|
* network interface for NetworkTables, this will capture every value change.
|
|
* Defaults to enabled.
|
|
*
|
|
* @param enabled true to enable, false to disable
|
|
*/
|
|
static void LogNetworkTables(bool enabled);
|
|
|
|
/**
|
|
* Signal new DS data is available.
|
|
*/
|
|
static void SignalNewDSDataOccur();
|
|
};
|
|
|
|
} // namespace wpi
|
|
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
/** C-compatible data log (opaque struct). */
|
|
struct WPI_DataLog;
|
|
|
|
/**
|
|
* Start data log manager. The parameters have no effect if the data log
|
|
* manager was already started (e.g. by calling another static function).
|
|
*
|
|
* @param dir if not empty, directory to use for data log storage
|
|
* @param filename filename to use; if none provided, the filename is
|
|
* automatically generated
|
|
* @param period time between automatic flushes to disk, in seconds;
|
|
* this is a time/storage tradeoff
|
|
*/
|
|
void DLM_Start(const char* dir, const char* filename, double period);
|
|
|
|
/**
|
|
* Stop data log manager.
|
|
*/
|
|
void DLM_Stop(void);
|
|
|
|
/**
|
|
* Log a message to the "messages" entry. The message is also printed to
|
|
* standard output (followed by a newline).
|
|
*
|
|
* @param message message
|
|
*/
|
|
void DLM_Log(const char* message);
|
|
|
|
/**
|
|
* Get the managed data log (for custom logging). Starts the data log manager
|
|
* if not already started.
|
|
*
|
|
* @return data log
|
|
*/
|
|
WPI_DataLog* DLM_GetLog(void);
|
|
|
|
/**
|
|
* Get the log directory.
|
|
*
|
|
* @return log directory
|
|
*/
|
|
const char* DLM_GetLogDir(void);
|
|
|
|
/**
|
|
* Enable or disable logging of NetworkTables data. Note that unlike the
|
|
* network interface for NetworkTables, this will capture every value change.
|
|
* Defaults to enabled.
|
|
*
|
|
* @param enabled true to enable, false to disable
|
|
*/
|
|
void DLM_LogNetworkTables(int enabled);
|
|
|
|
/**
|
|
* Signal new DS data is available.
|
|
*/
|
|
void DLM_SignalNewDSDataOccur(void);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|