mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-20 23:06:47 +00:00
9842b8df98
also ensure off_t is always 64-bit (required at work) This was SVN commit r6858.
117 lines
3.1 KiB
C++
117 lines
3.1 KiB
C++
/* Copyright (C) 2009 Wildfire Games.
|
|
* This file is part of 0 A.D.
|
|
*
|
|
* 0 A.D. 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.
|
|
*
|
|
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* gathers statistics from all file modules.
|
|
*/
|
|
|
|
#ifndef INCLUDED_FILE_STATS
|
|
#define INCLUDED_FILE_STATS
|
|
|
|
#define FILE_STATS_ENABLED 1
|
|
|
|
|
|
enum FileIOImplentation { FI_LOWIO, FI_AIO, FI_BCACHE, FI_MAX_IDX };
|
|
enum FileOp { FO_READ, FO_WRITE };
|
|
enum CacheRet { CR_HIT, CR_MISS };
|
|
|
|
#include "lib/file/io/block_cache.h" // BlockId
|
|
|
|
#if FILE_STATS_ENABLED
|
|
|
|
// vfs
|
|
extern void stats_vfs_file_add(size_t file_size);
|
|
extern void stats_vfs_file_remove(size_t file_size);
|
|
extern void stats_vfs_init_start();
|
|
extern void stats_vfs_init_finish();
|
|
|
|
// file
|
|
|
|
// currently not called because string_pool is now in lib/allocators
|
|
extern void stats_unique_name(size_t name_len);
|
|
extern void stats_open();
|
|
extern void stats_close();
|
|
|
|
// file_buf
|
|
extern void stats_buf_alloc(size_t size, size_t alignedSize);
|
|
extern void stats_buf_free();
|
|
extern void stats_buf_ref();
|
|
|
|
// file_io
|
|
extern void stats_io_user_request(size_t user_size);
|
|
|
|
// this is used to measure effective throughput for the two
|
|
// synchronous IO variants.
|
|
// note: improved measurements of the actual aio throughput by instrumenting
|
|
// issue/wait doesn't work because IOManager's decompression may cause us to
|
|
// miss the exact end of IO, thus throwing off measurements.
|
|
class ScopedIoMonitor
|
|
{
|
|
public:
|
|
ScopedIoMonitor();
|
|
~ScopedIoMonitor();
|
|
void NotifyOfSuccess(FileIOImplentation fi, char mode, off_t size);
|
|
|
|
private:
|
|
double m_startTime;
|
|
};
|
|
|
|
extern void stats_io_check_seek(BlockId& blockId);
|
|
extern void stats_cb_start();
|
|
extern void stats_cb_finish();
|
|
|
|
// file_cache
|
|
extern void stats_cache(CacheRet cr, size_t size);
|
|
extern void stats_block_cache(CacheRet cr);
|
|
|
|
// archive builder
|
|
extern void stats_ab_connection(bool already_exists);
|
|
|
|
extern void file_stats_dump();
|
|
|
|
#else
|
|
|
|
#define stats_vfs_file_add(file_size)
|
|
#define stats_vfs_file_remove(file_size)
|
|
#define stats_vfs_init_start()
|
|
#define stats_vfs_init_finish()
|
|
#define stats_unique_name(name_len)
|
|
#define stats_open()
|
|
#define stats_close()
|
|
#define stats_buf_alloc(size, alignedSize)
|
|
#define stats_buf_free()
|
|
#define stats_buf_ref()
|
|
#define stats_io_user_request(user_size)
|
|
class ScopedIoMonitor
|
|
{
|
|
public:
|
|
ScopedIoMonitor() {}
|
|
~ScopedIoMonitor() {}
|
|
void NotifyOfSuccess(FileIOImplentation fi, char mode, off_t size) {}
|
|
};
|
|
#define stats_io_check_seek(blockId)
|
|
#define stats_cb_start()
|
|
#define stats_cb_finish()
|
|
#define stats_cache(cr, size)
|
|
#define stats_block_cache(cr)
|
|
#define stats_ab_connection(already_exists)
|
|
#define file_stats_dump()
|
|
|
|
#endif
|
|
|
|
#endif // #ifndef INCLUDED_FILE_STATS
|