少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include "os/c-api/il2cpp-config-platforms.h"
#if IL2CPP_PLATFORM_SUPPORTS_CPU_INFO
 
#if IL2CPP_TARGET_POSIX && !IL2CPP_TINY_WITHOUT_DEBUGGER
 
#include "os/CpuInfo.h"
#include <stdlib.h>
#include <stdio.h>
#include "utils/Memory.h"
#include "os/Time.h"
#include "os/Environment.h"
 
 
#include <sys/resource.h>
#include <sys/param.h>
#if IL2CPP_TARGET_DARWIN
#include <sys/sysctl.h>
#endif
 
#include <time.h>
 
#if IL2CPP_TARGET_LINUX
#include <sys/time.h>
#include <sys/resource.h>
#endif
 
struct Il2CppCpuUsageState
{
    int64_t kernel_time;
    int64_t user_time;
    int64_t current_time;
};
 
namespace il2cpp
{
namespace os
{
    void* CpuInfo::Create()
    {
        return IL2CPP_MALLOC_ZERO(sizeof(Il2CppCpuUsageState));
    }
 
    int32_t CpuInfo::Usage(void* previous)
    {
        Il2CppCpuUsageState* prev = (Il2CppCpuUsageState*)previous;
        int32_t cpu_usage = 0;
        int64_t cpu_total_time;
        int64_t cpu_busy_time;
 
        struct rusage resource_usage;
        int64_t current_time;
        int64_t kernel_time;
        int64_t user_time;
 
        if (getrusage(RUSAGE_SELF, &resource_usage) == -1)
        {
            return -1;
        }
 
        current_time = os::Time::GetTicks100NanosecondsMonotonic();
        kernel_time = resource_usage.ru_stime.tv_sec * 1000 * 1000 * 10 + resource_usage.ru_stime.tv_usec * 10;
        user_time = resource_usage.ru_utime.tv_sec * 1000 * 1000 * 10 + resource_usage.ru_utime.tv_usec * 10;
 
        cpu_busy_time = (user_time - (prev ? prev->user_time : 0)) + (kernel_time - (prev ? prev->kernel_time : 0));
        cpu_total_time = (current_time - (prev ? prev->current_time : 0)) * il2cpp::os::Environment::GetProcessorCount();
 
        if (prev)
        {
            prev->kernel_time = kernel_time;
            prev->user_time = user_time;
            prev->current_time = current_time;
        }
 
        if (cpu_total_time > 0 && cpu_busy_time > 0)
            cpu_usage = (int32_t)(cpu_busy_time * 100 / cpu_total_time);
 
        return cpu_usage;
    }
}
}
 
#endif
#endif