]> Sergey Matveev's repositories - tofuproxy.git/blob - fifos/del.go
2ab755d7245b3f9d65832e4fa657049ef870051f
[tofuproxy.git] / fifos / del.go
1 /*
2 tofuproxy -- HTTP proxy with TLS certificates management
3 Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package fifos
19
20 import (
21         "bufio"
22         "log"
23         "os"
24         "sync"
25 )
26
27 func del(l *sync.RWMutex, deleter func(string), p string) {
28         for {
29                 fd, err := os.OpenFile(p, os.O_RDONLY, os.FileMode(0666))
30                 if err != nil {
31                         log.Fatalln(err)
32                 }
33                 var hosts []string
34                 scanner := bufio.NewScanner(fd)
35                 for scanner.Scan() {
36                         t := scanner.Text()
37                         if len(t) > 0 {
38                                 hosts = append(hosts, t)
39                         }
40                 }
41                 fd.Close()
42                 l.Lock()
43                 for _, host := range hosts {
44                         log.Printf("%s: deleting host %s\n", p, host)
45                         deleter(host)
46                 }
47                 l.Unlock()
48         }
49 }