aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/watch/watch.go
diff options
context:
space:
mode:
authorGravatar John Belamaric <jbelamaric@infoblox.com> 2018-06-27 07:45:32 -0700
committerGravatar GitHub <noreply@github.com> 2018-06-27 07:45:32 -0700
commit99287d091c2db4028e54782fd4de43f63ca4b040 (patch)
tree5e9908031dbf3256a0ad3e2a54c0a90251e88757 /plugin/pkg/watch/watch.go
parentb7480d5d1216aa87d80d240a31de750079eba904 (diff)
downloadcoredns-99287d091c2db4028e54782fd4de43f63ca4b040.tar.gz
coredns-99287d091c2db4028e54782fd4de43f63ca4b040.tar.zst
coredns-99287d091c2db4028e54782fd4de43f63ca4b040.zip
Watch feature (#1527)
* Add part 1 watch functionality. (squashed) * add funcs for service/endpoint fqdns * add endpoints watch * document exposed funcs * only send subset deltas * locking for watch map * tests and docs * add pod watch * remove debugs prints * feedback part 1 * add error reporting to proto * inform clients of server stop+errors * add grpc options param * use proper context * Review feedback: * Removed client (will move to another repo) * Use new log functions * Change watchChan to be for string not []string * Rework how k8s plugin stores watch tracking info to simplify * Normalize the qname on watch request * Add blank line back * Revert another spurious change * Fix tests * Add stop channel. Fix tests. Better docs for plugin interface. * fmt.Printf -> log.Warningf * Move from dnsserver to plugin/pkg/watch * gofmt * remove dead client watches * sate linter * linter omg
Diffstat (limited to 'plugin/pkg/watch/watch.go')
-rw-r--r--plugin/pkg/watch/watch.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugin/pkg/watch/watch.go b/plugin/pkg/watch/watch.go
new file mode 100644
index 000000000..7e77bb7b3
--- /dev/null
+++ b/plugin/pkg/watch/watch.go
@@ -0,0 +1,23 @@
+package watch
+
+// Chan is used to inform the server of a change. Whenever
+// a watched FQDN has a change in data, that FQDN should be
+// sent down this channel.
+type Chan chan string
+
+// Watchable is the interface watchable plugins should implement
+type Watchable interface {
+ // Name returns the plugin name.
+ Name() string
+
+ // SetWatchChan is called when the watch channel is created.
+ SetWatchChan(Chan)
+
+ // Watch is called whenever a watch is created for a FQDN. Plugins
+ // should send the FQDN down the watch channel when its data may have
+ // changed. This is an exact match only.
+ Watch(qname string) error
+
+ // StopWatching is called whenever all watches are canceled for a FQDN.
+ StopWatching(qname string)
+}