56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/**
|
|
* @file dpm_interface.hpp
|
|
* @brief Interface declarations for the DPM command-line functionality
|
|
*
|
|
* Defines the public interface methods that provide human-readable interaction
|
|
* with the DPM core functionality, including module path validation and
|
|
* module listing capabilities.
|
|
*
|
|
* @copyright Copyright (c) 2025 SILO GROUP LLC
|
|
* @author Chris Punches <chris.punches@silogroup.org>
|
|
*
|
|
* Part of the Dark Horse Linux Package Manager (DPM)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For bug reports or contributions, please contact the dhlp-contributors
|
|
* mailing list at: https://lists.darkhorselinux.org/mailman/listinfo/dhlp-contributors
|
|
*/
|
|
|
|
#pragma once
|
|
#include <iostream>
|
|
#include <getopt.h>
|
|
#include <vector>
|
|
#include <dlfcn.h>
|
|
#include <iomanip>
|
|
#include <filesystem>
|
|
|
|
#include "error.hpp"
|
|
#include "ModuleLoader.hpp"
|
|
#include "dpm_interface_helpers.hpp"
|
|
|
|
/*
|
|
*
|
|
* DPM Interface methods. These are wrappers of DPM functionality that are meant to handle user view, turning
|
|
* error codes into human-presentable information, etc. Features are defined internally, these will only ever be
|
|
* wrappers of existing features to provide the human/cli interface.
|
|
*
|
|
*/
|
|
|
|
// check if the module path exists
|
|
int main_check_module_path(const ModuleLoader& loader);
|
|
|
|
// list the modules
|
|
int main_list_modules(const ModuleLoader& loader);
|