2023-03-14 08:02:43 +03:00
|
|
|
/*
|
|
|
|
recast4j copyright (c) 2021 Piotr Piastucki piotr@jtilia.org
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Linq;
|
2023-04-06 12:48:36 +03:00
|
|
|
using DotRecast.Core;
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:09:10 +03:00
|
|
|
namespace DotRecast.Detour.Crowd
|
|
|
|
{
|
2023-06-08 15:38:02 +03:00
|
|
|
public class DtCrowdTelemetry
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
public const int TIMING_SAMPLES = 10;
|
|
|
|
private float _maxTimeToEnqueueRequest;
|
|
|
|
private float _maxTimeToFindPath;
|
2023-07-01 07:12:29 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
private readonly Dictionary<string, long> _executionTimings = new Dictionary<string, long>();
|
|
|
|
private readonly Dictionary<string, List<long>> _executionTimingSamples = new Dictionary<string, List<long>>();
|
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public float MaxTimeToEnqueueRequest()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
return _maxTimeToEnqueueRequest;
|
|
|
|
}
|
2023-03-16 19:09:10 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public float MaxTimeToFindPath()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
return _maxTimeToFindPath;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-07-01 07:12:29 +03:00
|
|
|
public List<RcTelemetryTick> ToExecutionTimings()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
2023-07-01 07:12:29 +03:00
|
|
|
return _executionTimings
|
|
|
|
.Select(e => new RcTelemetryTick(e.Key, e.Value))
|
|
|
|
.OrderByDescending(x => x.Ticks)
|
|
|
|
.ToList();
|
2023-03-16 19:48:49 +03:00
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public void Start()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
_maxTimeToEnqueueRequest = 0;
|
|
|
|
_maxTimeToFindPath = 0;
|
|
|
|
_executionTimings.Clear();
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public void RecordMaxTimeToEnqueueRequest(float time)
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
_maxTimeToEnqueueRequest = Math.Max(_maxTimeToEnqueueRequest, time);
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public void RecordMaxTimeToFindPath(float time)
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
_maxTimeToFindPath = Math.Max(_maxTimeToFindPath, time);
|
|
|
|
}
|
2023-07-22 13:00:12 +03:00
|
|
|
|
|
|
|
public IDisposable ScopedTimer(string name)
|
|
|
|
{
|
|
|
|
Start(name);
|
|
|
|
return new RcAnonymousDisposable(() => Stop(name));
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public void Start(string name)
|
2023-03-14 08:02:43 +03:00
|
|
|
{
|
2023-05-06 05:44:57 +03:00
|
|
|
_executionTimings.Add(name, RcFrequency.Ticks);
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public void Stop(string name)
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
2023-05-06 05:44:57 +03:00
|
|
|
long duration = RcFrequency.Ticks - _executionTimings[name];
|
2023-03-16 19:48:49 +03:00
|
|
|
if (!_executionTimingSamples.TryGetValue(name, out var s))
|
|
|
|
{
|
|
|
|
s = new List<long>();
|
|
|
|
_executionTimingSamples.Add(name, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s.Count == TIMING_SAMPLES)
|
|
|
|
{
|
|
|
|
s.RemoveAt(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Add(duration);
|
|
|
|
_executionTimings[name] = (long)s.Average();
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-16 19:09:10 +03:00
|
|
|
}
|