通过内核fanotify监听文件事件实现配置文件热更新

简介: 通过内核的方式实现一遍

前2两篇文章,通过定时器,信号,实现了配置文件热更新


  1. 通过定时器实现配置文件热更新
  2. 通过信号实现配置文件热更新


接下来介绍第三种方式,通过内核fanotify,监听事件变化,来重新加载配置文件


fanotify.go  代码如下

packagemainimport (
"encoding/json""fmt""io/ioutil""log""time""github.com/fsnotify/fsnotify")
//全局自定义拦截varintercept []Intercept//文件时间varftint64varfilenamestring="intercept.json"typeInterceptstruct {
Urlstring`json:"url"`Methodstring`json:"method"`RespHeadermap[string]string`json:"resp_header"`RespBodyinterface{}       `json:"resp_body"`RespCodeint`json:"resp_code"`}
//读取自定义响应文件funcRead_resp() {
intercept_data, err :=ioutil.ReadFile(filename)
iferr!=nil {
log.Fatalln(err)
    }
err=json.Unmarshal(intercept_data, &intercept)
iferr!=nil {
log.Fatalln(err)
    }
}
funclisten(w*fsnotify.Watcher) {
err :=w.Add(filename)
iferr!=nil {
log.Fatal(err)
    }
}
funcmain() {
//初始读取Read_resp()
watcher, err :=fsnotify.NewWatcher()
iferr!=nil {
log.Fatal(err)
    }
deferwatcher.Close()
listen(watcher)
gofunc() {
for {
select {
caseevent, ok :=<-watcher.Events:
if!ok {
return                }
log.Println("event:", event)
ifevent.Op&fsnotify.Write==fsnotify.Write {
log.Println("modified file:", event.Name)
Read_resp()
                }
ifevent.Op&fsnotify.Rename==fsnotify.Rename {
listen(watcher)
Read_resp()
                }
caseerr, ok :=<-watcher.Errors:
if!ok {
return                }
log.Println("error:", err)
            }
        }
    }()
//循环打印for {
time.Sleep(1*time.Second)
iflen(intercept) >0 {
fmt.Println(intercept[0].RespBody)
        }
    }
}


配置文件 intercept.json 

[{
"url": "http://testing-ft2x-api.cloudcare.cn/api/v1/workspace/member/list",
"method": "get",
"resp_body": {"msg": "ehhjjj"},
"resp_header": {"Content-Type": "application/json"},
"resp_code": 200}]


运行程序

./fsnotify

然后更改配置文件

[{
"url": "http://testing-ft2x-api.cloudcare.cn/api/v1/workspace/member/list",
"method": "get",
"resp_body": {"msg": "ehhjjjjjjggg"},
"resp_header": {"Content-Type": "application/json"},
"resp_code": 200}]

程序输出

map[msg:ehh]
map[msg:ehh]
map[msg:ehh]
2021/11/13 09:45:22 event: "intercept.json": CHMOD
2021/11/13 09:45:22 event: "intercept.json": WRITE
2021/11/13 09:45:22 modified file: intercept.json
map[msg:ehhjjj]
map[msg:ehhjjj]
map[msg:ehhjjj]
map[msg:ehhjjj]
map[msg:ehhjjj]
map[msg:ehhjjj]
2021/11/13 09:45:29 event: "intercept.json": CHMOD
2021/11/13 09:45:29 event: "intercept.json": WRITE
2021/11/13 09:45:29 modified file: intercept.json
map[msg:ehhjjjjjj]
2021/11/13 09:45:30 event: "intercept.json": CHMOD
2021/11/13 09:45:30 event: "intercept.json": WRITE
2021/11/13 09:45:30 modified file: intercept.json
map[msg:ehhjjjjjjggg]
map[msg:ehhjjjjjjggg]
map[msg:ehhjjjjjjggg]
目录
相关文章
|
6月前
|
小程序 Windows
【微信小程序】全局配置和windows节点常用配置
【微信小程序】全局配置和windows节点常用配置
|
JavaScript
Vue 开启或关闭热更新
Vue 开启或关闭热更新
637 0
|
Java Linux Shell
如何在Linux中使SpringBoot项目关闭终端后不关闭项目进程
如何在Linux中使SpringBoot项目关闭终端后不关闭项目进程
139 0
如何在Linux中使SpringBoot项目关闭终端后不关闭项目进程
EMQ
|
算法 网络协议 物联网
配置热更新/支持 Reload、QUIC 桥接再升级
12月,NanoMQ稳步更新,最新的0.15版本将于近期发布,将增加配置热更新功能和Reload命令;MQTT over QUIC桥接再次得到升级,增加了拥塞控制和QoS消息优先传输。
EMQ
215 0
配置热更新/支持 Reload、QUIC 桥接再升级
|
前端开发
React修改项目启动的默认端口号
React修改项目启动的默认端口号
|
Java 容器
SpringBoot2.x基础篇:应用程序在启动时访问启动项参数
`SpringBoot`应用程序在启动时,我们可以传递自定义的参数来进行动态控制逻辑,比如我们使用`--debug`启动参数时就会使用`debug`启动应用程序,在控制台打印一些调试日志信息。
|
运维 NoSQL Java
从源码研究如何不重启项目实现redis配置动态切换
上一篇Websocket的续篇暂时还没有动手写,这篇算是插播吧。今天讲讲不重启项目动态切换redis服务。
从源码研究如何不重启项目实现redis配置动态切换
|
XML C# 数据格式
C#应用程序配置文件
C#应用程序配置文件
118 0
C#应用程序配置文件
|
UED
通过定时器实现配置文件热更新
配置文件修改及时生效
306 0
|
UED
通过信号实现配置文件热更新
通过信号来实现一遍配置文件热更新
334 0