-
Notifications
You must be signed in to change notification settings - Fork 64
/
splat2.cpp
110 lines (99 loc) · 3.45 KB
/
splat2.cpp
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <time.h>
#include <windows.h>
#include "fast_pipe.h"
int main(int ArgCount, char **Args)
{
int FastPipeAvailable = USE_FAST_PIPE_IF_AVAILABLE();
#if _WIN32
if(!FastPipeAvailable)
{
// NOTE(casey): Need to set UTF-8 output page if we are using the antiquated Windows terminal system
SetConsoleOutputCP(65001);
}
#endif
HANDLE StdOut = GetStdHandle(STD_OUTPUT_HANDLE);
int VTEnabled = 0;
double Elapsed = 0.0;
size_t TotalTransfer = 0;
size_t BufferSize = 64*1024*1024;
char *Buffer = (char *)malloc(BufferSize);
if(Buffer)
{
for(int ArgIndex = 1;
ArgIndex < ArgCount;
++ArgIndex)
{
int LongLine = (strcmp(Args[ArgIndex], "-longline") == 0);
int ManyLine = (strcmp(Args[ArgIndex], "-manyline") == 0);
if(LongLine || ManyLine)
{
int TotalCharCount = ManyLine ? 27 : 26;
for(size_t At = 0; At < BufferSize; ++At)
{
int Pick = rand()%TotalCharCount;
Buffer[At] = 'a' + Pick;
if(ManyLine && (Pick == 26)) Buffer[At] = '\n';
}
clock_t Start = clock();
while(TotalTransfer < 1024*1024*1024)
{
DWORD ByteCount = 0;
WriteFile(StdOut, Buffer, (DWORD)BufferSize, &ByteCount, 0);
TotalTransfer += ByteCount;
}
clock_t End = clock();
Elapsed += (double)(End - Start) / (double)CLOCKS_PER_SEC;
}
else if(strcmp(Args[ArgIndex], "-vt") == 0)
{
#if _WIN32
if(!FastPipeAvailable)
{
DWORD WinConMode = 0;
DWORD EnableVirtualTerminalProcessing = 0x0004;
GetConsoleMode(StdOut, &WinConMode);
SetConsoleMode(StdOut, WinConMode | EnableVirtualTerminalProcessing);
}
#endif
VTEnabled = 1;
}
else
{
char *FileName = Args[ArgIndex];
HANDLE File = CreateFileA(FileName, GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL, 0);
if(File != INVALID_HANDLE_VALUE)
{
clock_t Start = clock();
DWORD ByteCount = 0;
while(ReadFile(File, Buffer, (DWORD)BufferSize, &ByteCount, 0) && ByteCount)
{
WriteFile(StdOut, Buffer, (DWORD)ByteCount, &ByteCount, 0);
TotalTransfer += ByteCount;
}
clock_t End = clock();
Elapsed += (double)(End - Start) / (double)CLOCKS_PER_SEC;
CloseHandle(File);
}
else
{
fprintf(stderr, "Unable to open \"%s\".\n", FileName);
}
}
}
if(VTEnabled)
{
fprintf(stdout, "\x1b[0m");
}
double GBs = 0;
if(Elapsed)
{
GBs = TotalTransfer / (1024.0*1024.0*1024.0*Elapsed);
}
fprintf(stdout, "\n\nTotal sink time: %.03fs (%fgb/s)\n", Elapsed, GBs);
free(Buffer);
}
return 0;
}