aboutsummaryrefslogtreecommitdiff
path: root/captain/captian.f90
blob: 24fc34c04cd567b9d5916a737704e9434e4c39da (plain)
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
program captain
use captain_db
use config
use logging, only: initialize_log => initialize, logunit
implicit none

    integer::mode
    integer, parameter::MODE_GEMINI   = 1, &
                        MODE_CGI_HTML = 2

    call random_seed() ! For possible crypto

    call parse_options()

    call initialize_db(database_filename)
    call initialize_log(log_filename)
    
    select case(mode)
        case(MODE_GEMINI)
            call handle_gemini()
    end select
    
    call shutdown_db()
    close(logunit)
    
contains

    subroutine usage()
    implicit none
    
        character(len=256)::pname
        
        call get_command_argument(0, pname)
    
        Print *, "Usage: "//trim(pname)//" <options>"
        Print *, " "
        
        Print *, "Options:"
        Print *, "    -h              Display this help"
        Print *, "    -c <configfile> Use the specified config file"
        Print *, "    -g              Operate in Gemini mode"
        Print *, "    -w              Operate in CGI mode (default)"
        
    end subroutine usage
    
    subroutine parse_options
    use config
    implicit none
    
        character(len=1024)::option
        logical::config_loaded
        integer::i

        config_loaded = .false.
        mode = MODE_CGI_HTML

        i = 1
        do while(i <= command_argument_count())
            call get_command_argument(i, option)
        
            if(trim(option) == "-h") then
                call usage()
                stop
            
            else if(trim(option) == "-g") then
                mode = MODE_GEMINI
            
            else if(trim(option) == "-c") then
                i = i + 1
                call get_command_argument(i, option)
                call load_configuration(trim(option))
                config_loaded = .true.

            end if
            
            i = i + 1
        end do
        
        ! Assign working directory from command if not specified
        if(.not. config_loaded) then
            Print *, "No configuration file specified"
            stop
        end if
                
    end subroutine parse_options
    
end program captain