/*******************************************************************************
    Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
    This program 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 3 of the License, or (at your option)
    any later version.
    This program 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
    this program. If not, see .
    uname.cpp
    Print system information.
*******************************************************************************/
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#if !defined(VERSIONSTR)
#define VERSIONSTR "unknown version"
#endif
const unsigned long PRINT_KERNELNAME = 1UL << 0UL;
const unsigned long PRINT_NODENAME = 1UL << 1UL;
const unsigned long PRINT_KERNELREL = 1UL << 2UL;
const unsigned long PRINT_KERNELVER = 1UL << 3UL;
const unsigned long PRINT_MACHINE = 1UL << 4UL;
const unsigned long PRINT_PROCESSOR = 1UL << 5UL;
const unsigned long PRINT_HWPLATFORM = 1UL << 6UL;
const unsigned long PRINT_OPSYS = 1UL << 7UL;
const size_t INFOBUFSIZE = 256UL;
char infobuf[INFOBUFSIZE];
const char* GetProcessorArchitecture()
{
#if defined(__x86_64__)
	return "x86_64";
#elif defined(__i386__)
	return "i386";
#else
	return "unknown";
#endif
}
const char* GetKernelName()
{
	if ( kernelinfo("name", infobuf, INFOBUFSIZE) )
		return "unknown";
	return infobuf;
}
const char* GetNodeName()
{
	return "sortix";
}
const char* GetKernelRelease()
{
	if ( kernelinfo("version", infobuf, INFOBUFSIZE) )
		return "unknown";
	return infobuf;
}
const char* GetKernelVersion()
{
	if ( kernelinfo("builddate", infobuf, INFOBUFSIZE) )
		return "unknown";
	return infobuf;
}
const char* GetMachine()
{
	return GetProcessorArchitecture();
}
const char* GetProcessor()
{
	return GetProcessorArchitecture();
}
const char* GetHardwarePlatform()
{
	return GetProcessorArchitecture();
}
const char* GetOperatingSystem()
{
	return BRAND_OPERATING_SYSTEM_NAME;
}
bool has_printed = false;
void DoPrint(const char* msg)
{
	if ( has_printed )
		printf(" ");
	printf("%s", msg);
	has_printed = true;
}
void Usage(FILE* fp, const char* argv0)
{
	fprintf(fp, "Usage: %s [OPTION]...\n", argv0);
	fprintf(fp, "Print certain system information.\n");
}
void Help(FILE* fp, const char* argv0)
{
	Usage(fp, argv0);
}
void Version(FILE* fp, const char* argv0)
{
	fprintf(fp, "%s (Sortix) %s\n", argv0, VERSIONSTR);
	fprintf(fp, "License GPLv3+: GNU GPL version 3 or later .\n");
	fprintf(fp, "This is free software: you are free to change and redistribute it.\n");
	fprintf(fp, "There is NO WARRANTY, to the extent permitted by law.\n");
}
int main(int argc, char* argv[])
{
	const char* argv0 = argv[0];
	unsigned long flags = 0;
	for ( int i = 1; i < argc; i++ )
	{
		const char* arg = argv[i];
		if ( arg[0] != '-' )
		{
			fprintf(stderr, "%s: extra operand: %s\n", argv0, arg);
			Usage(stderr, argv0);
			exit(1);
		}
		if ( arg[1] != '-' )
			for ( size_t i = 1; arg[i]; i++ )
				switch ( arg[i] )
				{
				case 'a': flags |= LONG_MAX; break;
				case 's': flags |= PRINT_KERNELNAME; break;
				case 'n': flags |= PRINT_NODENAME; break;
				case 'r': flags |= PRINT_KERNELREL; break;
				case 'v': flags |= PRINT_KERNELVER; break;
				case 'm': flags |= PRINT_MACHINE; break;
				case 'p': flags |= PRINT_PROCESSOR; break;
				case 'i': flags |= PRINT_HWPLATFORM; break;
				case 'o': flags |= PRINT_OPSYS; break;
				default:
					fprintf(stderr, "%s: unknown option -- '%c'\n", argv0, arg[i]);
					Usage(stderr, argv0);
					exit(1);
				}
		else if ( !strcmp(arg, "--kernel-name") )
			flags |= PRINT_KERNELNAME;
		else if ( !strcmp(arg, "--nodename") )
			flags |= PRINT_NODENAME;
		else if ( !strcmp(arg, "--kernel-release") )
			flags |= PRINT_KERNELREL;
		else if ( !strcmp(arg, "--kernel-version") )
			flags |= PRINT_KERNELVER;
		else if ( !strcmp(arg, "--machine") )
			flags |= PRINT_MACHINE;
		else if ( !strcmp(arg, "--processor") )
			flags |= PRINT_PROCESSOR;
		else if ( !strcmp(arg, "--hardware-platform") )
			flags |= PRINT_HWPLATFORM;
		else if ( !strcmp(arg, "--operating-system") )
			flags |= PRINT_OPSYS;
		else if ( !strcmp(arg, "--help") ) { Help(stdout, argv0); exit(0); }
		else if ( !strcmp(arg, "--usage") ) { Usage(stdout, argv0); exit(0); }
		else if ( !strcmp(arg, "--version") ) { Version(stdout, argv0); exit(0); }
		else
		{
			fprintf(stderr, "%s: unknown option: %s\n", argv0, arg);
			Usage(stderr, argv0);
			exit(1);
		}
	}
	if ( !flags )
		flags = PRINT_KERNELNAME;
	if ( flags & PRINT_KERNELNAME )
		DoPrint(GetKernelName());
	if ( flags & PRINT_NODENAME )
		DoPrint(GetNodeName());
	if ( flags & PRINT_KERNELREL )
		DoPrint(GetKernelRelease());
	if ( flags & PRINT_KERNELVER )
		DoPrint(GetKernelVersion());
	if ( flags & PRINT_MACHINE )
		DoPrint(GetMachine());
	if ( flags & PRINT_PROCESSOR )
		DoPrint(GetProcessor());
	if ( flags & PRINT_HWPLATFORM )
		DoPrint(GetHardwarePlatform());
	if ( flags & PRINT_OPSYS )
		DoPrint(GetOperatingSystem());
	printf("\n");
	return 0;
}