conky-config/drawing/Power.lua

178 lines
4.5 KiB
Lua
Raw Normal View History

local M = {}
2018-02-18 20:50:49 -05:00
local Patterns = require 'Patterns'
2017-07-19 00:36:15 -04:00
local Text = require 'Text'
2018-02-18 20:50:49 -05:00
local TextColumn = require 'TextColumn'
2017-07-19 00:36:15 -04:00
local Line = require 'Line'
local ScalePlot = require 'ScalePlot'
local Util = require 'Util'
2017-07-19 00:36:15 -04:00
2021-02-02 18:21:32 -05:00
local _MODULE_Y_ = 364
2017-07-19 00:36:15 -04:00
local _TEXT_SPACING_ = 20
local _PLOT_SEC_BREAK_ = 20
2021-02-02 18:21:32 -05:00
local _PLOT_HEIGHT_ = 56
2017-07-19 00:36:15 -04:00
local power_label_function = function(watts) return watts..' W' end
local calculate_power = function(cr, prev_cnt, cnt, update_frequency)
if cnt > prev_cnt then
return (cnt - prev_cnt) * update_frequency * 0.000001
else
return 0
end
end
local header = _G_Widget_.Header{
2017-07-19 00:36:15 -04:00
x = _G_INIT_DATA_.RIGHT_X,
y = _MODULE_Y_,
width = _G_INIT_DATA_.SECTION_WIDTH,
header = 'POWER'
}
local _RIGHT_X_ = _G_INIT_DATA_.RIGHT_X + _G_INIT_DATA_.SECTION_WIDTH
local pkg0 = {
2018-08-05 18:04:22 -04:00
label = _G_Widget_.Text{
2021-02-02 18:21:32 -05:00
x = _G_INIT_DATA_.RIGHT_X,
y = header.bottom_y,
2018-08-05 18:04:22 -04:00
text = 'PKG0',
2018-02-18 20:50:49 -05:00
},
2018-08-05 18:04:22 -04:00
value = _G_Widget_.Text{
2021-02-02 18:21:32 -05:00
x = _RIGHT_X_,
y = header.bottom_y,
x_align = 'right',
text_color = Patterns.BLUE,
text = '<core>',
append_end = ' W',
2018-02-18 20:50:49 -05:00
},
2018-08-05 18:04:22 -04:00
plot = _G_Widget_.ScalePlot{
x = _G_INIT_DATA_.RIGHT_X,
y = header.bottom_y + _PLOT_SEC_BREAK_,
width = _G_INIT_DATA_.SECTION_WIDTH,
height = _PLOT_HEIGHT_,
y_label_func = power_label_function,
2018-02-18 20:50:49 -05:00
},
2017-07-19 00:36:15 -04:00
}
2018-08-05 18:04:22 -04:00
local _CORE_Y_ = header.bottom_y + _TEXT_SPACING_ + _PLOT_SEC_BREAK_ + _PLOT_HEIGHT_
2017-07-19 00:36:15 -04:00
2018-02-18 20:50:49 -05:00
local dram = {
label = _G_Widget_.Text{
2017-07-19 00:36:15 -04:00
x = _G_INIT_DATA_.RIGHT_X,
2018-02-10 13:41:10 -05:00
y = _CORE_Y_,
2017-07-19 00:36:15 -04:00
text = 'DRAM'
},
value = _G_Widget_.Text{
2017-07-19 00:36:15 -04:00
x = _RIGHT_X_,
2018-02-10 13:41:10 -05:00
y = _CORE_Y_,
2017-07-19 00:36:15 -04:00
x_align = 'right',
text_color = _G_Patterns_.BLUE,
2017-07-19 00:36:15 -04:00
text = '<dram>',
append_end = ' W'
},
plot = _G_Widget_.ScalePlot{
2017-07-19 00:36:15 -04:00
x = _G_INIT_DATA_.RIGHT_X,
2018-02-10 13:41:10 -05:00
y = _CORE_Y_ + _PLOT_SEC_BREAK_,
2017-07-19 00:36:15 -04:00
width = _G_INIT_DATA_.SECTION_WIDTH,
height = _PLOT_HEIGHT_,
y_label_func = power_label_function,
}
}
2018-02-10 13:41:10 -05:00
local _BATTERY_DRAW_Y_ = _CORE_Y_ + _PLOT_SEC_BREAK_ * 2 + _PLOT_HEIGHT_
2017-07-19 00:36:15 -04:00
local battery_draw = {
label = _G_Widget_.Text{
2017-07-19 00:36:15 -04:00
x = _G_INIT_DATA_.RIGHT_X,
y = _BATTERY_DRAW_Y_,
spacing = _TEXT_SPACING_,
text = 'Battery Draw'
},
value = _G_Widget_.CriticalText{
2017-07-19 00:36:15 -04:00
x = _RIGHT_X_,
y = _BATTERY_DRAW_Y_,
x_align = 'right',
},
plot = _G_Widget_.ScalePlot{
2017-07-19 00:36:15 -04:00
x = _G_INIT_DATA_.RIGHT_X,
y = _BATTERY_DRAW_Y_ + _PLOT_SEC_BREAK_,
width = _G_INIT_DATA_.SECTION_WIDTH,
height = _PLOT_HEIGHT_,
y_label_func = power_label_function,
}
}
local PKG0_PATH = '/sys/class/powercap/intel-rapl:0/energy_uj'
local DRAM_PATH = '/sys/class/powercap/intel-rapl:0:2/energy_uj'
local prev_pkg0_uj_cnt = Util.read_file(PKG0_PATH, nil, '*n')
local prev_dram_uj_cnt = Util.read_file(DRAM_PATH, nil, '*n')
2017-07-19 00:36:15 -04:00
local update = function(cr, update_frequency, is_using_ac)
local pkg0_uj_cnt = Util.read_file(PKG0_PATH, nil, '*n')
local dram_uj_cnt = Util.read_file(DRAM_PATH, nil, '*n')
2018-02-10 13:41:10 -05:00
2017-07-19 00:36:15 -04:00
local pkg0_power = calculate_power(cr, prev_pkg0_uj_cnt, pkg0_uj_cnt, update_frequency)
2018-08-05 18:04:22 -04:00
Text.set(pkg0.value, cr, Util.precision_round_to_string(pkg0_power, 3))
2018-02-18 20:50:49 -05:00
2018-08-05 18:04:22 -04:00
ScalePlot.update(pkg0.plot, cr, pkg0_power)
2017-07-19 00:36:15 -04:00
2018-02-18 20:50:49 -05:00
local dram_power = calculate_power(cr, prev_dram_uj_cnt, dram_uj_cnt, update_frequency)
Text.set(dram.value, cr, Util.precision_round_to_string(dram_power, 3))
ScalePlot.update(dram.plot, cr, dram_power)
2017-07-19 00:36:15 -04:00
prev_pkg0_uj_cnt = pkg0_uj_cnt
prev_dram_uj_cnt = dram_uj_cnt
if is_using_ac then
Text.set(battery_draw.value, cr, 'A/C')
ScalePlot.update(battery_draw.plot, cr, 0)
else
local current = Util.read_file('/sys/class/power_supply/BAT0/current_now', nil, '*n')
local voltage = Util.read_file('/sys/class/power_supply/BAT0/voltage_now', nil, '*n')
2017-07-19 00:36:15 -04:00
local power = current * voltage * 0.000000000001
Text.set(battery_draw.value, cr, Util.precision_round_to_string(power, 3)..' W')
2017-07-19 00:36:15 -04:00
ScalePlot.update(battery_draw.plot, cr, power)
end
end
2018-02-18 20:50:49 -05:00
Patterns = nil
2017-07-19 00:36:15 -04:00
_MODULE_Y_ = nil
_TEXT_SPACING_ = nil
_PLOT_SEC_BREAK_ = nil
_PLOT_HEIGHT_ = nil
_RIGHT_X_ = nil
2018-02-10 13:41:10 -05:00
_CORE_Y_ = nil
2017-07-19 00:36:15 -04:00
_BATTERY_DRAW_Y_ = nil
local draw_static = function(cr)
2018-08-05 14:29:52 -04:00
Text.draw(header.text, cr)
Line.draw(header.underline, cr)
2018-08-05 18:04:22 -04:00
Text.draw(pkg0.label, cr)
2018-08-05 14:29:52 -04:00
Text.draw(dram.label, cr)
Text.draw(battery_draw.label, cr)
end
local draw_dynamic = function(cr, update_frequency, is_using_ac)
2018-08-05 11:08:37 -04:00
update(cr, update_frequency, is_using_ac)
2018-08-05 18:04:22 -04:00
Text.draw(pkg0.value, cr)
2018-08-05 14:29:52 -04:00
ScalePlot.draw_dynamic(pkg0.plot, cr)
2017-07-19 00:36:15 -04:00
2018-08-05 11:08:37 -04:00
Text.draw(dram.value, cr)
2018-08-05 14:29:52 -04:00
ScalePlot.draw_dynamic(dram.plot, cr)
2017-07-19 00:36:15 -04:00
2018-08-05 11:08:37 -04:00
Text.draw(battery_draw.value, cr)
2018-08-05 14:29:52 -04:00
ScalePlot.draw_dynamic(battery_draw.plot, cr)
2017-07-19 00:36:15 -04:00
end
M.draw_static = draw_static
M.draw_dynamic = draw_dynamic
return M