Compare commits

...

3 Commits

Author SHA1 Message Date
Nakidai 9bddfa7a68 Add some compatibility
- Use GetTickCount64 function on Windows to get uptime
- Try to get Windows version from NetServerGetInfo function
2023-12-16 15:03:10 +03:00
Nakidai 5cf683e05f Change constants from const to define 2023-12-16 14:16:56 +03:00
Nakidai 322ee8417a Add CMake & Attempt to make it compile for Windows 2023-12-16 01:48:09 +03:00
4 changed files with 42 additions and 11 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
mycfetch mycfetch
build

4
CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 3.5)
project(mycfetch LANGUAGES C)
add_executable(mycfetch mycfetch.c)

View File

@ -1,8 +1,8 @@
#include "defs.h" #include "defs.h"
const int max_username_length = 128; #define MAX_USERNAME_LENGTH 128
const int max_hostname_length = 128; #define MAX_HOSTNAME_LENGTH 128
const int max_uptime_length = 40; #define MAX_UPTIME_LENGTH 40
struct art_entry arts[] = { struct art_entry arts[] = {
{ {

View File

@ -1,11 +1,19 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/utsname.h>
#include <unistd.h>
#include <time.h> #include <time.h>
#include <stdarg.h> #include <stdarg.h>
#include <string.h> #include <string.h>
#ifdef _WIN32
#include <sysinfoapi.h>
#include <winsock.h>
#include <Lm.h>
#include <winbase.h>
#else
#include <sys/utsname.h>
#include <unistd.h>
#endif /* _WIN32 */
#include "config.h" #include "config.h"
#include "defs.h" #include "defs.h"
@ -20,8 +28,13 @@ void die(int code, char *fmt, ...)
void getuptime(char *buffer, int max_length) void getuptime(char *buffer, int max_length)
{ {
#ifdef _WIN32
#define uptime.tv_sec uptime_seconds
long long uptime_seconds = GetTickCount64() / 1000;
#else
struct timespec uptime; struct timespec uptime;
clock_gettime(CLOCK_BOOTTIME, &uptime); clock_gettime(CLOCK_BOOTTIME, &uptime);
#endif /* _WIN32 */
int days = uptime.tv_sec / 86400; int days = uptime.tv_sec / 86400;
int hours = uptime.tv_sec / 3600 % 24; int hours = uptime.tv_sec / 3600 % 24;
int minutes = uptime.tv_sec / 60 % 60; int minutes = uptime.tv_sec / 60 % 60;
@ -36,6 +49,9 @@ void getuptime(char *buffer, int max_length)
else else
snprintf(buffer, max_length, "Up %d days, %d hours, %d minutes", days, hours, minutes); snprintf(buffer, max_length, "Up %d days, %d hours, %d minutes", days, hours, minutes);
} }
#ifdef _WIN32
#undef uptime.tv_sec
#endif /* _WIN32 */
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
@ -54,19 +70,29 @@ int main(int argc, char **argv)
art = arts[0].art; art = arts[0].art;
} }
char hostname[MAX_HOSTNAME_LENGTH];
char username[MAX_USERNAME_LENGTH];
char uptime[MAX_UPTIME_LENGTH];
#ifdef _WIN32
SERVER_INFO_101 host_info;
NetServerGetInfo(NULL, 101, &host_info);
GetUserNameA(username, MAX_USERNAME_LENGTH);
#else
struct utsname uname_buf; struct utsname uname_buf;
char hostname[max_hostname_length];
char username[max_username_length];
char uptime[max_uptime_length];
gethostname(hostname, max_hostname_length); getlogin_r(username, MAX_USERNAME_LENGTH);
getlogin_r(username, max_username_length);
getuptime(uptime, max_uptime_length);
uname(&uname_buf); uname(&uname_buf);
#endif /* _WIN32 */
gethostname(hostname, MAX_HOSTNAME_LENGTH);
getuptime(uptime, MAX_UPTIME_LENGTH);
printf("%s %s@%s\n", art[0], username, hostname); printf("%s %s@%s\n", art[0], username, hostname);
printf("%s --\n", art[1]); printf("%s --\n", art[1]);
#ifdef _WIN32
printf("%s NT %d.%d\n", art[2], host_info.sv101_version_major & MAJOR_VERSION_MASK, host_info.sv101_version_minor);
#else
printf("%s %s %s\n", art[2], uname_buf.sysname, uname_buf.release); printf("%s %s %s\n", art[2], uname_buf.sysname, uname_buf.release);
#endif /* _WIN32 */
printf("%s %s\n", art[3], uptime); printf("%s %s\n", art[3], uptime);
return 0; return 0;
} }