1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/* File: main_commands.h; Copyright and License: see below */
#ifndef MAIN_COMMANDS_H
#define MAIN_COMMANDS_H
/* public file for the doxygen documentation: */
/*!
* \file
* \brief Declares the main commands to be executed by this program
*/
#include "io_file_format.h"
#include "io_import_mode.h"
#include "io_data_file.h"
#include "utf8stream/utf8stream_writer.h"
#include "u8/u8_error_info.h"
#include "u8/u8_error.h"
#include <stdbool.h>
/*!
* \brief attributes of the main_commands object
*/
struct main_commands_struct {
int argc; /*!< the number of command line parameters */
char **argv; /*!< the list of parameters */
io_data_file_t *data_file; /*!< a pointer to a data_file struct */
};
typedef struct main_commands_struct main_commands_t;
/*!
* \brief initializes the main_commands_t struct
*
* \param start_gui true if a graphical window shall be started by main_commands
* \param argc number of command line arguments
* \param argv array of command line arguments
* \param this_ pointer to own object attributes
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_init ( main_commands_t *this_, bool start_gui, int argc, char **argv );
/*!
* \brief destroys the main_commands_t struct
*
* \param this_ pointer to own object attributes
*/
void main_commands_destroy ( main_commands_t *this_ );
/*!
* \brief repairs or checks the data_file
*
* \param this_ pointer to own object attributes
* \param data_file_path pathname of the data_file
* \param check_only true if the data_file shall not be modified
* \param out_english_report utf8stream_writer_t where to write a non-translated report to
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_repair ( main_commands_t *this_,
const char *data_file_path,
bool check_only,
utf8stream_writer_t *out_english_report
);
/*!
* \brief starts the graphical user interface
*
* \param this_ pointer to own object attributes
* \param data_file_path pathname of the data_file, may be NULL if no preselected data_file file
* \param out_english_report utf8stream_writer_t where to write a non-translated report to
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_start_gui ( main_commands_t *this_,
const char *data_file_path,
utf8stream_writer_t *out_english_report
);
/*!
* \brief exports the data_file in the selected data format to the export_directory
*
* \param this_ pointer to own object attributes
* \param data_file_path pathname of the data_file
* \param export_format format to export
* \param export_directory pathname of the directory where to write exported files to
* \param out_english_report utf8stream_writer_t where to write a non-translated report to
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_export ( main_commands_t *this_,
const char *data_file_path,
io_file_format_t export_format,
const char *export_directory,
utf8stream_writer_t *out_english_report
);
/*!
* \brief imports the data_file in the selected data format to the export_directory
*
* \param this_ pointer to own object attributes
* \param data_file_path pathname of the data_file
* \param import_mode import mode, e.g. check-only or update-overwrite
* \param import_file_path pathname of the file which to import
* \param out_english_report utf8stream_writer_t where to write a non-translated report to
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_import ( main_commands_t *this_,
const char *data_file_path,
io_import_mode_t import_mode,
const char *import_file_path,
utf8stream_writer_t *out_english_report
);
/*!
* \brief prints statistics to an utf8 writer
*
* \param this_ pointer to own object attributes
* \param stat statistics
* \param mode_name imported or exported
* \param out_english_report utf8stream_writer_t where to write a non-translated report to
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_private_report_stat ( main_commands_t *this_,
const data_stat_t *stat,
const char* mode_name,
utf8stream_writer_t *out_english_report
);
/*!
* \brief prints the error_info struct to an utf8 writer
*
* \param this_ pointer to own object attributes
* \param error_info the error_info struct to print
* \param out_english_report utf8stream_writer_t where to write a non-translated report to
* \return U8_ERROR_NONE in case of success
*/
u8_error_t main_commands_private_report_error_info ( main_commands_t *this_,
const u8_error_info_t *error_info,
utf8stream_writer_t *out_english_report
);
#endif /* MAIN_COMMANDS_H */
/*
Copyright 2021-2025 Andreas Warnke
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
|