2013-12-10 14:55:33 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import os
|
2014-01-20 17:21:19 +01:00
|
|
|
import time
|
2013-12-12 09:04:40 +01:00
|
|
|
import json
|
|
|
|
import socket
|
2013-12-10 14:55:33 +01:00
|
|
|
import subprocess
|
|
|
|
|
2013-12-12 09:04:40 +01:00
|
|
|
__all__ = ['parse_statusdata', 'run_mysql_query', 'run_pgsql_query',
|
|
|
|
'LiveStatusSocket']
|
2013-12-10 14:55:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
MYSQL_PARAMS = b"-t -D icinga -u icinga --password=icinga -e".split()
|
|
|
|
MYSQL_SEPARATOR = '|'
|
|
|
|
|
|
|
|
PGSQL_PARAMS = b"-nq -U icinga -d icinga -c".split()
|
|
|
|
PGSQL_SEPARATOR = '|'
|
|
|
|
PGSQL_ENVIRONMENT = {
|
|
|
|
b'PGPASSWORD': b'icinga'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def parse_statusdata(data, intelligent_cast=True):
|
|
|
|
parsed_data, data_type, type_data = {}, '', {}
|
|
|
|
for line in (l for l in data.split(os.linesep)
|
|
|
|
if l and not l.startswith('#')):
|
|
|
|
if '{' in line:
|
|
|
|
data_type = line.partition('{')[0].strip()
|
|
|
|
elif '}' in line:
|
|
|
|
parsed_data.setdefault(data_type, []).append(type_data)
|
|
|
|
else:
|
|
|
|
key, _, value = line.partition('=')
|
|
|
|
|
|
|
|
if intelligent_cast:
|
|
|
|
value = _cast_status_value(value)
|
|
|
|
|
|
|
|
type_data[key.strip()] = value
|
|
|
|
|
|
|
|
return parsed_data
|
|
|
|
|
|
|
|
|
|
|
|
def _cast_status_value(value):
|
|
|
|
try:
|
|
|
|
return int(value)
|
|
|
|
except ValueError:
|
|
|
|
try:
|
|
|
|
return float(value)
|
|
|
|
except ValueError:
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
def run_mysql_query(query, path):
|
|
|
|
p = subprocess.Popen([path] + MYSQL_PARAMS + [query.encode('utf-8')],
|
|
|
|
stdout=subprocess.PIPE)
|
|
|
|
return _parse_mysql_result([l.decode('utf-8') for l in p.stdout.readlines()])
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_mysql_result(resultset):
|
|
|
|
result, header = [], None
|
|
|
|
for line in (l for l in resultset if MYSQL_SEPARATOR in l):
|
|
|
|
columns = [c.strip() for c in line[1:-3].split(MYSQL_SEPARATOR)]
|
|
|
|
if header is None:
|
|
|
|
header = columns
|
|
|
|
else:
|
2014-01-20 17:21:19 +01:00
|
|
|
result.append(dict((header[i], v if v != 'NULL' else None)
|
|
|
|
for i, v in enumerate(columns)))
|
2013-12-10 14:55:33 +01:00
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def run_pgsql_query(query, path):
|
|
|
|
p = subprocess.Popen([path] + PGSQL_PARAMS + [query.encode('utf-8')],
|
|
|
|
stdout=subprocess.PIPE, env=PGSQL_ENVIRONMENT)
|
|
|
|
return _parse_pgsql_result([l.decode('utf-8') for l in p.stdout.readlines()])
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_pgsql_result(resultset):
|
|
|
|
result, header = [], None
|
|
|
|
for line in (l for l in resultset if PGSQL_SEPARATOR in l):
|
|
|
|
columns = [c.strip() for c in line.split(PGSQL_SEPARATOR)]
|
|
|
|
if header is None:
|
|
|
|
header = columns
|
|
|
|
else:
|
|
|
|
result.append(dict((header[i], v) for i, v in enumerate(columns)))
|
|
|
|
return result
|
|
|
|
|
2013-12-12 09:04:40 +01:00
|
|
|
|
2013-12-16 15:39:31 +01:00
|
|
|
class LiveStatusError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2013-12-12 09:04:40 +01:00
|
|
|
class LiveStatusSocket(object):
|
|
|
|
options = [
|
|
|
|
'KeepAlive: on',
|
2013-12-16 15:39:31 +01:00
|
|
|
'OutputFormat: json',
|
2013-12-12 09:04:40 +01:00
|
|
|
'ResponseHeader: fixed16'
|
|
|
|
]
|
|
|
|
|
|
|
|
def __init__(self, path):
|
|
|
|
self.path = path
|
|
|
|
|
2014-01-20 17:21:19 +01:00
|
|
|
self._connected = False
|
|
|
|
|
2013-12-12 09:04:40 +01:00
|
|
|
def __enter__(self):
|
|
|
|
self.connect()
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, tb):
|
|
|
|
self.close()
|
|
|
|
|
|
|
|
def connect(self):
|
|
|
|
self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
|
|
|
self.sock.connect(self.path)
|
2014-01-20 17:21:19 +01:00
|
|
|
self._connected = True
|
|
|
|
|
|
|
|
def reconnect(self, timeout=30):
|
|
|
|
start = time.time()
|
|
|
|
while not self._connected and time.time() - start < timeout:
|
|
|
|
try:
|
|
|
|
self.connect()
|
|
|
|
except socket.error, error:
|
|
|
|
if error.errno != 111:
|
|
|
|
raise
|
2013-12-12 09:04:40 +01:00
|
|
|
|
|
|
|
def close(self):
|
2014-01-20 17:21:19 +01:00
|
|
|
if self._connected:
|
|
|
|
self.sock.shutdown(socket.SHUT_RDWR)
|
|
|
|
self.sock.close()
|
|
|
|
self._connected = False
|
2013-12-12 09:04:40 +01:00
|
|
|
|
|
|
|
def query(self, command):
|
2013-12-16 15:39:31 +01:00
|
|
|
self.send(command)
|
|
|
|
statuscode, response = self.recv()
|
|
|
|
|
|
|
|
if statuscode != 200:
|
|
|
|
raise LiveStatusError(statuscode, response)
|
|
|
|
|
|
|
|
return response
|
2013-12-12 09:04:40 +01:00
|
|
|
|
|
|
|
def send(self, query):
|
2014-01-20 17:21:19 +01:00
|
|
|
if not self._connected:
|
|
|
|
raise RuntimeError('Tried to write to closed socket')
|
|
|
|
|
2013-12-16 15:39:31 +01:00
|
|
|
full_query = '\n'.join([query] + self.options)
|
|
|
|
self.sock.sendall((full_query + '\n\n').encode('utf-8'))
|
2013-12-12 09:04:40 +01:00
|
|
|
|
|
|
|
def recv(self):
|
2014-01-20 17:21:19 +01:00
|
|
|
if not self._connected:
|
|
|
|
raise RuntimeError('Tried to read from closed socket')
|
|
|
|
|
2013-12-16 15:39:31 +01:00
|
|
|
response = b''
|
2013-12-12 09:04:40 +01:00
|
|
|
response_header = self.sock.recv(16)
|
|
|
|
response_code = int(response_header[:3])
|
|
|
|
response_length = int(response_header[3:].strip())
|
2013-12-16 15:39:31 +01:00
|
|
|
|
|
|
|
if response_length > 0:
|
|
|
|
while len(response) < response_length:
|
|
|
|
response += self.sock.recv(response_length - len(response))
|
|
|
|
|
|
|
|
response = response.decode('utf-8')
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = json.loads(response)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return response_code, response
|
2013-12-12 09:04:40 +01:00
|
|
|
|