ladybird/Userland/Utilities/nproc.cpp
Ali Mohammad Pur a91a49337c LibCore+Everywhere: Move OpenMode out of IODevice
...and make it an enum class so people don't omit "OpenMode".
2021-05-12 11:00:45 +01:00

32 lines
671 B
C++

/*
* Copyright (c) 2021, Peter Elliott <pelliott@ualberta.ca>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/JsonObject.h>
#include <LibCore/File.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main()
{
if (pledge("stdio rpath", nullptr) < 0) {
perror("pledge");
return 1;
}
auto file = Core::File::construct("/proc/cpuinfo");
if (!file->open(Core::OpenMode::ReadOnly)) {
perror("Core::File::open()");
return 1;
}
auto json = JsonValue::from_string({ file->read_all() });
auto cpuinfo_array = json.value().as_array();
outln("{}", cpuinfo_array.size());
return 0;
}