Как добавить вывод функции в переменную, используя luasql - PullRequest
0 голосов
/ 25 октября 2019

Я пытаюсь присвоить вывод функции переменной, но не могу этого сделать. : (

Я использую Lua 5.3.4 и luarocks 3.2.1 (+ luasql-postgres )

Myскрипт:

luasql = require "luasql.postgres"
value=arg[1]
current_time=os.date("%Y-%m-%d %H:%M:%S")
env = luasql.postgres()
con = assert (env:connect('postgres', 'postgres', 'postgres', '192.168.241.93','5432'))

function printvalues(res)
    row = res:fetch ({}, "a")
    while row do
            print(string.format("%-12s", row.client_addr))
            row = res:fetch (row, "a")
    end
    print()
end

res = assert (con:execute('select client_addr from pg_stat_replication order by replay_lag asc limit 1'))


--txn = res
a = {myfunc = printvalues(res)}

if a == '192.168.242.41' then
print("backend1")
elseif a == '192.168.241.76' then
print("backend2")
end

print(string.format("%-12s",a))
print(a)

Результат скрипта:

root@haproxy:/etc/haproxy# lua scripts/test.lua
192.168.1.76

table: 0x559fadf97080
table: 0x559fadf97080

Скажите, пожалуйста:

  1. Как я могу присвоить результат функциипеременная?

  2. Как убрать пустую строку в выводе функции printvalues ​​(res)

Ответы [ 2 ]

1 голос
/ 25 октября 2019
  1. вам нужно сделать оператор return в теле функции, чтобы вернуть значение
  2. , пустой строкой в ​​вашем примере является оператор print() в функции printvalues

Я вижу, что вы делаете запрос, используя limit 1, поскольку вы получите только одно значение, оператор цикла while бесполезен.

Надеюсь, это сработает для вас

local luasql = require "luasql.postgres"
local env = luasql.postgres()
local con = assert (env:connect(
  'postgres', 'postgres', 'postgres', '192.168.241.93', '5432'
))
local res = assert(con:execute(
  'select client_addr from pg_stat_replication order by replay_lag asc limit 1'
))
local row = res:fetch({}, 'a')
local a = string.format('%-12s', row.client_addr)

res:close()

if a == '192.168.242.41' then
  print('backend1')
elseif a == '192.168.241.76' then
  print('backend2')
end

print(a)

но если вам нужен пример с функцией:

local luasql = require "luasql.postgres"
local env = luasql.postgres()
local con = assert (env:connect(
  'postgres', 'postgres', 'postgres', '192.168.241.93', '5432'
))
local res = assert(con:execute(
  'select client_addr from pg_stat_replication order by replay_lag asc limit 1'
))

local function printvalues(res)
  local row = res:fetch({}, 'a')
  res:close()
  return string.format('%-12s', row.client_addr)
end

local a = printvalues(res)

if a == '192.168.242.41' then
  print('backend1')
elseif a == '192.168.241.76' then
  print('backend2')
end

print(a)

попробуйте использовать ключевое слово local перед переменными, это сделает их переменными области видимости

0 голосов
/ 28 октября 2019

Спасибо. Я закончил с использованием этого сценария:

luasql = require "luasql.postgres"
env = luasql.postgres()
con = assert (env:connect('postgres', 'postgres', 'postgres','333.333.333.333','5432')) --master

backend = function(txn)
res = assert (con:execute('select client_addr from pg_stat_replication order by replay_lag asc limit 1'))
row = res:fetch ({}, "a")
while row do
    ip = string.format("%-12s", row.client_addr)
    row = res:fetch (row, "a")
end
result = "backend1"
if ip == '111.111.111.111' then
result = "backend1"
elseif ip == '222.222.222.222' then
result = "backend2"
end
return result
end

core.register_fetches("choose_backend", backend)
...