]> Sergey Matveev's repositories - tofuproxy.git/blob - fifos/del.go
Download link for 0.6.0 release
[tofuproxy.git] / fifos / del.go
1 // tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
2 //              manager, WARC/geminispace browser
3 // Copyright (C) 2021-2024 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 package fifos
18
19 import (
20         "bufio"
21         "log"
22         "os"
23         "sync"
24 )
25
26 func del(l *sync.RWMutex, deleter func(string), p string) {
27         for {
28                 fd, err := os.OpenFile(p, os.O_RDONLY, os.FileMode(0666))
29                 if err != nil {
30                         log.Fatalln(err)
31                 }
32                 var hosts []string
33                 scanner := bufio.NewScanner(fd)
34                 for scanner.Scan() {
35                         t := scanner.Text()
36                         if len(t) > 0 {
37                                 hosts = append(hosts, t)
38                         }
39                 }
40                 fd.Close()
41                 l.Lock()
42                 for _, host := range hosts {
43                         log.Printf("%s: deleting host %s\n", p, host)
44                         deleter(host)
45                 }
46                 l.Unlock()
47         }
48 }