【发布时间】:2014-08-08 20:55:27
【问题描述】:
问题
我想修改 awesome-wm 中的 awful.widget.textclock 小部件,以立即反映系统时区的变化。这个小部件和所有 awesome-wm 配置都是用 lua 编写的。
目前,如果系统时区发生更改,小部件将继续根据运行时设置的时区显示时间。小部件使用os.time 函数检索时间,但这与系统时间不匹配。
如下提供的解决方案
lua 脚本:
local tz=require"luatz";
require "luatz.tzcache".clear_tz_cache()
print("Before Changes (America/Los_Angeles)")
print(os.date("!%H:%M",tz.time_in()))
os.execute("timedatectl set-timezone America/Chicago")
require "luatz.tzcache".clear_tz_cache()
print("America/Chicago")
print(os.date("!%H:%M",tz.time_in()))
os.execute("timedatectl set-timezone America/New_York")
require "luatz.tzcache".clear_tz_cache()
print("America/New_York")
print(os.date("!%H:%M",tz.time_in()))
输出:
Before Changes (America/Los_Angeles)
15:33
America/Chicago
17:33
America/New_York
18:33
解决方法
这可以通过重新启动出色的窗口管理器来解决,这会导致小部件再次获得正确的时区。当然,如果时区发生变化,这需要再次重新启动窗口管理器。
期望的效果是在时区发生变化时从系统更新时区,无论是定期还是每次调用 os.time 函数时。
用例
如果您好奇,可以使用笔记本电脑。我经常旅行并在systemd timer 上运行tzupdate。我想自动更改我的时区。这很好用,只是实际显示时间的小部件不会注意到系统时区的变化。
到目前为止尝试过
- 取消设置“$TZ”环境变量。但是 Arch Linux 从一开始就没有设置这个变量,所以我不确定 lua 是如何确定正确的时区的。
- 使用
luatz库,特别是tzcache.clear_tz_cache()函数。这似乎没有效果。 - 使用
os.time()以外的函数检索系统时间:luatz.time()和luatz.gettime.gettime()。这些函数的检索时间与其他函数相同。 - 使用
luatz.time_in()函数,但这会返回将时区偏移量两次应用于UTC 时间的时间。luatz.time()返回正确的本地时间,但应该返回 UTC 时间。
更新luatz
我尝试按照建议使用 luatz 库,但它似乎没有重新检查系统时区,即使在调用 tzcache.clear_tz_cache() 函数之后也是如此。
我克隆了luatz 存储库并将luatz 复制到系统模块目录。该脚本似乎可以正确加载,但并没有改变忽略系统时区更改的效果。据我所知,这与os.time() 函数没有什么不同。
luatz 测试脚本:
local luatz = require "luatz"
local tzcache = require "luatz.tzcache"
local gettime = require "luatz.gettime"
print ("\nBefore Change - System TZ is ")
os.execute("timedatectl | grep 'Time zone' | awk '{ print $3 }'")
print("\nos.time(): "..os.date("%H:%M", os.time()))
print("luatz.time(): "..os.date("%H:%M", luatz.time()))
print("gettime..gettime(): "..os.date("%H:%M", gettime.gettime()))
print("\nTime zone changed to America/New_York")
os.execute("timedatectl set-timezone America/New_York")
tzcache.clear_tz_cache()
print ("\nAfter Change - System TZ is ")
os.execute("timedatectl | grep 'Time zone' | awk '{ print $3 }'")
print ("\nos.time(): "..os.date("%H:%M", os.time()))
print ("luatz.time(): "..os.date("%H:%M", luatz.time()))
print("gettime.gettime(): "..os.date("%H:%M", gettime.gettime()))
输出:
Before Change - System TZ is
America/Los_Angeles
os.time(): 11:54
luatz.time(): 11:54
gettime..gettime(): 11:54
Time zone changed to America/New_York
After Change - System TZ is
America/New_York
os.time(): 11:54
luatz.time(): 11:54
gettime.gettime(): 11:54
luatz.time_in()
所以luatz.time_in() 函数会随着系统时区的变化而更新,我对此感到很兴奋!但是,time_in() 不显示正确的本地时间。它将时区偏移添加到正确的本地时间,导致时间落后几个小时。我尝试设置TZ 环境变量,但这没有效果。出于某种原因,luatz.time() 返回本地时间,luatz.time_in() 返回应用两次时区偏移的结果。
lua 脚本:
local tz=require"luatz";
require "luatz.tzcache".clear_tz_cache()
print("Before Changes (America/Los_Angeles)")
print(os.date("%H:%M",tz.time_in()))
os.execute("timedatectl set-timezone America/Chicago")
require "luatz.tzcache".clear_tz_cache()
print("America/Chicago")
print(os.date("%H:%M",tz.time_in()))
os.execute("timedatectl set-timezone America/New_York")
require "luatz.tzcache".clear_tz_cache()
print("America/New_York")
print(os.date("%H:%M",tz.time_in()))
输出:
Before Changes (America/Los_Angeles)
08:59
America/Chicago
10:59
America/New_York
11:59
实际系统当地时间:15:59。
【问题讨论】:
标签: lua timezone awesome-wm