-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.lua
197 lines (170 loc) · 6.56 KB
/
main.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
require "catui"
local love = love
local redis = require 'redis'
local settings = require 'settings'
local redisConfig = settings.redisConfig
local redisClient
local function connectRedis()
redisClient = redis.connect(redisConfig)
redisClient:select(redisConfig.db)
end
-- REDIS KEY类型
local REDIS_KEY_TYPE = {
[1] = 'string',
[2] = 'hash',
}
-- unicode_to_utf8
local function unicode_to_utf8(convertStr)
if type(convertStr) ~= "string" then
return convertStr
end
local bit = require("bit")
local resultStr = ""
local i = 1
while true do
local num1 = string.byte(convertStr, i)
local unicode
if num1 ~= nil and string.sub(convertStr, i, i + 1) == "\\u" then
unicode = tonumber("0x" .. string.sub(convertStr, i + 2, i + 5))
i = i + 6
elseif num1 ~= nil then
unicode = num1
i = i + 1
else
break
end
if unicode <= 0x007f then
resultStr = resultStr .. string.char(bit.band(unicode, 0x7f))
elseif unicode >= 0x0080 and unicode <= 0x07ff then
resultStr = resultStr .. string.char(bit.bor(0xc0, bit.band(bit.rshift(unicode, 6), 0x1f)))
resultStr = resultStr .. string.char(bit.bor(0x80, bit.band(unicode, 0x3f)))
elseif unicode >= 0x0800 and unicode <= 0xffff then
resultStr = resultStr .. string.char(bit.bor(0xe0, bit.band(bit.rshift(unicode, 12), 0x0f)))
resultStr = resultStr .. string.char(bit.bor(0x80, bit.band(bit.rshift(unicode, 6), 0x3f)))
resultStr = resultStr .. string.char(bit.bor(0x80, bit.band(unicode, 0x3f)))
end
end
resultStr = resultStr .. '\0'
return resultStr
end
function love.load(arg)
connectRedis()
love.graphics.setBackgroundColor(35, 42, 50, 255)
mgr = UIManager:getInstance()
local keys = redisClient:keys('*')
table.sort(keys, function(a, b) return a < b end) -- key排序
local len = #keys
local keyHight = 20
local keyWidth = 200
local contentKey = UIContent:new()
contentKey:setPos(0, 0)
contentKey:setSize(keyWidth, 600)
contentKey:setContentSize(keyWidth, keyHight * len)
mgr.rootCtrl.coreContainer:addChild(contentKey)
local contentValue = UIContent:new()
contentValue:setPos(200, 0)
contentValue:setSize(600, 600)
contentValue:setContentSize(600, 600)
mgr.rootCtrl.coreContainer:addChild(contentValue)
local keyTypeEdit = UIEditText:new()
keyTypeEdit:setPos(0, 0)
keyTypeEdit:setSize(600, 20)
contentValue:addChild(keyTypeEdit)
for i = 1, len do
local keyEditText = UIEditText:new()
keyEditText:setPos(0, (i - 1) * keyHight)
keyEditText:setSize(keyWidth, keyHight)
keyEditText:setText("\t" .. keys[i])
contentKey:addChild(keyEditText)
local hashContent
keyEditText.events:on(UI_CLICK, function()
if hashContent then
contentValue:removeChild(hashContent)
end
local keyType = redisClient:type(keys[i])
keyTypeEdit:setText(keyType .. "\t : \t" .. keys[i])
if keyType == REDIS_KEY_TYPE[1] then
local value = redisClient:get(keys[i])
hashContent = UIEditText:new()
hashContent:setPos(0, 20)
hashContent:setSize(600, 580)
hashContent:setText(value)
contentValue:addChild(hashContent)
elseif keyType == REDIS_KEY_TYPE[2] then
local hkeys = redisClient:hkeys(keys[i])
table.sort(hkeys, function(a, b) return a < b end)
local hashLen = #hkeys
hashContent = UIContent:new()
hashContent:setPos(0, 20)
hashContent:setSize(600, 580)
hashContent:setContentSize(600, 580)
contentValue:addChild(hashContent)
local tableHeadText = UIEditText:new()
tableHeadText:setPos(0, 0)
tableHeadText:setSize(600, keyHight)
tableHeadText:setText(string.format("%10s%20s%50s", 'row', 'key', 'value'))
hashContent:addChild(tableHeadText)
local tableHight = hashLen*keyHight + keyHight
tableHight = tableHight > 280 and 280 or tableHight
local list = redisClient:hgetall(keys[i])
for j = 1, hashLen do
local hashValueEdit = UIEditText:new()
hashValueEdit:setPos(0, (j-1)*keyHight + keyHight)
hashValueEdit:setSize(600, keyHight)
hashValueEdit:setText(string.format("%10s%20s%50s", j, hkeys[j], '...'))
hashContent:addChild(hashValueEdit)
local hashKeyEdit
local hashValueText
local hashValue = list[hkeys[j]]
hashValueEdit.events:on(UI_CLICK, function()
-- 增加key
if hashKeyEdit then
hashContent:removeChild(hashKeyEdit)
end
hashKeyEdit = UIEditText:new()
hashKeyEdit:setPos(0, tableHight)
hashKeyEdit:setSize(600, 50)
hashKeyEdit:setText("key\t:\t" .. hkeys[j])
hashContent:addChild(hashKeyEdit)
-- 显示value
if hashValueText then
hashContent:removeChild(hashValueText)
end
hashValueText = UIEditText:new()
hashValueText:setPos(0, tableHight+50)
hashValueText:setSize(600, 580 - (tableHight + 50))
hashValueText:setText("value\t:\t" .. hashValue)
hashContent:addChild(hashValueText)
end)
end
end
end)
end
end
function love.update(dt)
mgr:update(dt)
end
function love.draw()
mgr:draw()
end
function love.mousemoved(x, y, dx, dy)
mgr:mouseMove(x, y, dx, dy)
end
function love.mousepressed(x, y, button, isTouch)
mgr:mouseDown(x, y, button, isTouch)
end
function love.mousereleased(x, y, button, isTouch)
mgr:mouseUp(x, y, button, isTouch)
end
function love.keypressed(key, scancode, isrepeat)
mgr:keyDown(key, scancode, isrepeat)
end
function love.keyreleased(key)
mgr:keyUp(key)
end
function love.wheelmoved(x, y)
mgr:whellMove(x, y)
end
function love.textinput(text)
mgr:textInput(text)
end