]> Cypherpunks.ru repositories - nncp.git/blob - src/dirwatch_dummy.go
Note about buildability with 1.22
[nncp.git] / src / dirwatch_dummy.go
1 //go:build nofsnotify
2 // +build nofsnotify
3
4 // NNCP -- Node to Node copy, utilities for store-and-forward data exchange
5 // Copyright (C) 2016-2024 Sergey Matveev <stargrave@stargrave.org>
6 //
7 // This program is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, version 3 of the License.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 package nncp
20
21 import (
22         "time"
23 )
24
25 type DirWatcher struct {
26         C      chan struct{}
27         ticker *time.Ticker
28 }
29
30 func (ctx *Ctx) NewDirWatcher(dir string, d time.Duration) (*DirWatcher, error) {
31         dw := DirWatcher{C: make(chan struct{}), ticker: time.NewTicker(d)}
32         go func() {
33                 for range dw.ticker.C {
34                         dw.C <- struct{}{}
35                 }
36         }()
37         return &dw, nil
38 }
39
40 func (dw *DirWatcher) Close() {
41         dw.ticker.Stop()
42         for range dw.C {
43         }
44 }