Subversion Repositories Tewi

Rev

Rev 36 | Rev 50 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: main.c 43 2024-09-18 09:19:03Z nishi $ */

#define SOURCE

#include "../config.h"

#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <signal.h>

#ifndef NO_SSL
#include <openssl/opensslv.h>
#endif

#include <cm_log.h>

#include "tw_config.h"
#include "tw_server.h"
#include "tw_version.h"

extern bool cm_do_log;
extern struct tw_config config;

char tw_server[2048];

int main(int argc, char** argv) {
        int i;
        const char* confpath = PREFIX "/etc/tewi.conf";
        for(i = 1; i < argc; i++) {
                if(argv[i][0] == '-') {
                        if(strcmp(argv[i], "--verbose") == 0 || strcmp(argv[i], "-v") == 0) {
                                if(!cm_do_log) {
                                        cm_do_log = true;
#ifndef NO_SSL
                                        cm_log("", "This is Tewi HTTPd, version %s, using %s", tw_get_version(), OPENSSL_VERSION_TEXT);
#else
                                        cm_log("", "This is Tewi HTTPd, version %s", tw_get_version());
#endif
                                } else {
                                        cm_do_log = true;
                                }
                        } else if(strcmp(argv[i], "--config") == 0 || strcmp(argv[i], "-C") == 0) {
                                i++;
                                if(argv[i] == NULL) {
                                        fprintf(stderr, "Missing argument\n");
                                        return 1;
                                }
                                confpath = argv[i];
                        } else if(strcmp(argv[i], "--version") == 0 || strcmp(argv[i], "-V") == 0) {
                                printf("Tewi HTTPd Tewi/%s\n", tw_get_version());
                                printf("Under public domain.\n");
                                printf("Original by 2024 Nishi\n");
                                printf("\n");
                                printf("Usage: %s [--config|-C config] [--verbose|-v] [--version|-V]\n", argv[0]);
                                printf("--config  | -C config     : Specify config\n");
                                printf("--verbose | -v            : Verbose mode\n");
                                printf("--version | -V            : Version information\n");
                                return 0;
                        } else {
                                fprintf(stderr, "Unknown option: %s\n", argv[i]);
                                return 1;
                        }
                }
        }
        tw_config_init();
        if(tw_config_read(confpath) != 0) {
                fprintf(stderr, "Could not read the config\n");
                return 1;
        }
        if(tw_server_init() != 0) {
                fprintf(stderr, "Could not initialize the server\n");
                return 1;
        }
        sprintf(tw_server, "Tewi/%s (%s)%s", tw_get_version(), tw_get_platform(), config.extension == NULL ? "" : config.extension);
        cm_log("Daemon", "Ready, server: %s", tw_server);
#ifndef __MINGW32__
        signal(SIGCHLD, SIG_IGN);
#endif
        tw_server_loop();
}