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