aboutsummaryrefslogtreecommitdiff
path: root/driver.f90
blob: eae0b345d241c3ddd9cfc7c8fbb15f4ab82bc2a6 (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
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
! Copyright (c) 2022 Approximatrix, LLC <support@approximatrix.com>
!
! Permission is hereby granted, free of charge, to any person obtaining a copy
! of this software and associated documentation files (the "Software"), to deal
! in the Software without restriction, including without limitation the rights
! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
! copies of the Software, and to permit persons to whom the Software is
! furnished to do so, subject to the following conditions:
!
! The above copyright notice and this permission notice shall be included in
! all copies or substantial portions of the Software.
!
! The Software shall be used for Good, not Evil.
!
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
! AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
! LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
! OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
! SOFTWARE.

program driver
use fpoint_pptxzip
implicit none

    type(pptxtracted)::presentation
    !character(len=*), parameter::filename = "Welcome to PowerPoint.pptx" !"samplepptx.pptx"
    logical::verbose
    logical::notes
    integer::i, j
    character(len=:), pointer::filename, arg
    
    if(command_argument_count() < 1) then
        call usage()
        call exit(0)
    end if
    
    verbose = .false.
    notes = .false.
    filename => null()
    do i = 1, command_argument_count()
        
        call get_command_argument(i, length=j)
        allocate(character(len=j)::arg)
        call get_command_argument(i, value=arg)
        
        if(arg == "-n") then
            notes = .true.
        
        else if(arg == "-v") then
            verbose = .true.
            
        else
            filename => arg
            arg => null()
        
        end if
        
        if(associated(arg)) then
            deallocate(arg)
            arg => null()
        end if
        
    end do
    
    if(verbose) then
        call title()
    end if
    call maybe_print(verbose, "Loading "//filename)
    
    if(presentation%open(filename)) then
        
        call maybe_print(verbose, "File opened at "//trim(presentation%directory))
        
        call presentation%parse()
    
        write(*, '(A)') presentation%to_text()
    
        call presentation%close()
    
    else
        call maybe_print(verbose, "Failed on "//filename)
        call exit(1)
    end if
    
    call exit(0)
    
contains

    subroutine title()
    implicit none
    
        Print *, "FPoint - PowerPoint to Text Converter"
        Print *, "Copyright 2022 Approximatrix, LLC"
    
    end subroutine title

    subroutine usage()
    implicit none
    
        character(512)::prg
        
        call get_command_argument(0, prg)
        
        call title()
        
        Print *, " "
        Print *, "Usage: "//trim(prg)//" [options] <input filename>"
        Print *, " "
        Print *, "Options:"
        Print *, " "
        Print *, "    -n    Extract notes instead of slide contents"
        Print *, "    -v    Be somewhat verbose, probably not enough to be interesting"
        Print *, " "
        Print *, "Output is printed to standard out"
        Print *, " "
        
    end subroutine usage
    
    subroutine maybe_print(v, str)
    implicit none
        
        logical, intent(in)::v
        character(len=*), intent(in)::str
        
        if(v) then
            Print *, str
        end if
    end subroutine maybe_print
    
end program driver