Config file and package tracking utility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
3.6 KiB

/*
* Copyright (C) 2021-2022 Riyyi
*
* SPDX-License-Identifier: MIT
*/
#include <cstdio> // fprintf, perror, stderr
#include <filesystem>
3 years ago
#include <string>
#include <unistd.h> // gethostname
#include <vector>
3 years ago
#include "config.h"
#include "dotfile.h"
#include "package.h"
3 years ago
#include "util/argparser.h"
#include "util/file.h"
#include "util/system.h"
#include "util/timer.h"
3 years ago
// void* operator new(size_t size)
// {
// std::cout << "@Allocating '" << size << "' bytes" << std::endl;
3 years ago
// return std::malloc(size);
// }
// void operator delete(void* pointer, size_t size)
// {
// std::cout << "@Freeing '" << size << "' bytes" << std::endl;
3 years ago
// free(pointer);
// }
int main(int argc, const char* argv[])
{
bool fileOperation = false;
bool packageOperation = false;
bool helpOperation = false;
3 years ago
bool addOrAur = false;
bool install = false;
bool pull = false;
bool pushOrStore = false;
bool verbose = false;
3 years ago
std::vector<std::string> targets {};
3 years ago
Util::ArgParser argParser;
argParser.addOption(fileOperation, 'F', "file", nullptr, nullptr);
argParser.addOption(packageOperation, 'P', "package", nullptr, nullptr);
argParser.addOption(helpOperation, 'h', "help", nullptr, nullptr);
argParser.addOption(addOrAur, 'a', "add", nullptr, nullptr);
argParser.addOption(install, 'i', "install", nullptr, nullptr);
argParser.addOption(pull, 'l', "pull", nullptr, nullptr);
argParser.addOption(pushOrStore, 's', "push", nullptr, nullptr);
argParser.addOption(verbose, 'v', "verbose", nullptr, nullptr);
argParser.addArgument(targets, "targets", nullptr, nullptr, Util::ArgParser::Required::No);
argParser.parse(argc, argv);
if (fileOperation + packageOperation + helpOperation > 1) {
fprintf(stderr, "\033[31;1mError:\033[0m only one operation may be used at a time\n");
return 1;
}
Util::Timer t;
Config::the().setVerbose(verbose);
if (fileOperation) {
Dotfile::the().setExcludePaths({
{ Dotfile::ExcludeType::File, "dotfiles.sh" },
{ Dotfile::ExcludeType::File, "packages" },
{ Dotfile::ExcludeType::EndsWith, ".md" },
{ Dotfile::ExcludeType::EndsWith, "README.org" },
{ Dotfile::ExcludeType::Directory, ".git" },
{ Dotfile::ExcludeType::File, "screenshot.png" },
{ Dotfile::ExcludeType::Directory, ".cache" },
{ Dotfile::ExcludeType::Directory, "CMakeFiles" },
{ Dotfile::ExcludeType::Directory, "cppcheck-cppcheck-build-dir" },
});
Dotfile::the().setSystemDirectories({ "/boot", "/etc", "/usr/share" });
if (addOrAur) {
Dotfile::the().add(targets);
}
if (pull) {
Dotfile::the().pull(targets);
}
if (pushOrStore) {
Dotfile::the().push(targets);
}
if (!addOrAur && !pull && !pushOrStore) {
Dotfile::the().list(targets);
}
}
else if (packageOperation) {
Package package;
if (addOrAur) {
// TODO install tracked AUR packages
}
if (install) {
// TODO install tracked repo packages
}
if (pushOrStore) {
package.store();
}
if (!addOrAur && !install && !pushOrStore) {
package.list(targets);
}
}
else if (helpOperation) {
// TODO open manpage
}
else {
// TODO open manpage
}
printf("%fms\n", t.elapsedNanoseconds() / 1000000.0);
3 years ago
return 0;
}
// cp -a <> <>
// -a = -dR --preserve=all
// -d = --no-dereference --preserve=links
// -P, --no-dereference = never follow symbolic links in SOURCE
// -R = recursive
// --preserve = preserve attributes (default: mode,ownership,timestamps), additional: context,links,xattr,all
// # Files that are stored in the repository but shouldn't get copied (regex)
// excludeFiles="${0#??}|$packageFile|.*.md$|.*README.org$|.git|screenshot.png"
// exclude: files, folders, ends-with