postgresql_tablespace: remove extra lines from the doc, add docstrings (#57534)
This commit is contained in:
parent
c5dc48de81
commit
17c5e0e016
2 changed files with 92 additions and 13 deletions
|
@ -218,11 +218,11 @@ class PgCopyData(object):
|
|||
|
||||
Arguments:
|
||||
module (AnsibleModule) -- object of AnsibleModule class
|
||||
cursor (cursor) -- cursor objec of psycopg2 library
|
||||
cursor (cursor) -- cursor object of psycopg2 library
|
||||
|
||||
Attributes:
|
||||
module (AnsibleModule) -- object of AnsibleModule class
|
||||
cursor (cursor) -- cursor objec of psycopg2 library
|
||||
cursor (cursor) -- cursor object of psycopg2 library
|
||||
changed (bool) -- something was changed after execution or not
|
||||
executed_queries (list) -- executed queries
|
||||
dst (str) -- data destination table (when copy_from)
|
||||
|
|
|
@ -78,25 +78,17 @@ options:
|
|||
type: str
|
||||
aliases:
|
||||
- login_db
|
||||
|
||||
notes:
|
||||
- I(state=absent) and I(state=present) (the second one if the tablespace doesn't exist) do not
|
||||
support check mode because the corresponding PostgreSQL DROP and CREATE TABLESPACE commands
|
||||
can not be run inside the transaction block.
|
||||
- The default authentication assumes that you are either logging in as or
|
||||
sudo'ing to the postgres account on the host.
|
||||
- To avoid "Peer authentication failed for user postgres" error,
|
||||
use postgres user as a I(become_user).
|
||||
- This module uses psycopg2, a Python PostgreSQL database adapter. You must
|
||||
ensure that psycopg2 is installed on the host before using this module.
|
||||
- If the remote host is the PostgreSQL server (which is the default case), then
|
||||
PostgreSQL must also be installed on the remote host.
|
||||
- For Ubuntu-based systems, install the postgresql, libpq-dev, and python-psycopg2 packages
|
||||
on the remote host before using this module.
|
||||
requirements: [ psycopg2 ]
|
||||
|
||||
author:
|
||||
- Flavien Chantelot (@Dorn-)
|
||||
- Antoine Levy-Lambert (@antoinell)
|
||||
- Andrew Klychkov (@Andersson007)
|
||||
|
||||
extends_documentation_fragment: postgres
|
||||
'''
|
||||
|
||||
|
@ -186,6 +178,26 @@ from ansible.module_utils._text import to_native
|
|||
|
||||
|
||||
class PgTablespace(object):
|
||||
|
||||
"""Class for working with PostgreSQL tablespaces.
|
||||
|
||||
Args:
|
||||
module (AnsibleModule) -- object of AnsibleModule class
|
||||
cursor (cursor) -- cursor object of psycopg2 library
|
||||
name (str) -- name of the tablespace
|
||||
|
||||
Attrs:
|
||||
module (AnsibleModule) -- object of AnsibleModule class
|
||||
cursor (cursor) -- cursor object of psycopg2 library
|
||||
name (str) -- name of the tablespace
|
||||
exists (bool) -- flag the tablespace exists in the DB or not
|
||||
owner (str) -- tablespace owner
|
||||
location (str) -- path to the tablespace directory in the file system
|
||||
executed_queries (list) -- list of executed queries
|
||||
new_name (str) -- new name for the tablespace
|
||||
opt_not_supported (bool) -- flag indicates a tablespace option is supported or not
|
||||
"""
|
||||
|
||||
def __init__(self, module, cursor, name):
|
||||
self.module = module
|
||||
self.cursor = cursor
|
||||
|
@ -201,6 +213,8 @@ class PgTablespace(object):
|
|||
self.get_info()
|
||||
|
||||
def get_info(self):
|
||||
"""Get tablespace information."""
|
||||
|
||||
# Check that spcoptions exists:
|
||||
opt = self.__exec_sql("SELECT 1 FROM information_schema.columns "
|
||||
"WHERE table_name = 'pg_tablespace' "
|
||||
|
@ -250,13 +264,34 @@ class PgTablespace(object):
|
|||
self.location = res[0][2]
|
||||
|
||||
def create(self, location):
|
||||
"""Create tablespace.
|
||||
|
||||
Return True if success, otherwise, return False.
|
||||
|
||||
args:
|
||||
location (str) -- tablespace directory path in the FS
|
||||
"""
|
||||
|
||||
query = ("CREATE TABLESPACE %s LOCATION '%s'" % (pg_quote_identifier(self.name, 'database'), location))
|
||||
return self.__exec_sql(query, ddl=True)
|
||||
|
||||
def drop(self):
|
||||
"""Drop tablespace.
|
||||
|
||||
Return True if success, otherwise, return False.
|
||||
"""
|
||||
|
||||
return self.__exec_sql("DROP TABLESPACE %s" % pg_quote_identifier(self.name, 'database'), ddl=True)
|
||||
|
||||
def set_owner(self, new_owner):
|
||||
"""Set tablespace owner.
|
||||
|
||||
Return True if success, otherwise, return False.
|
||||
|
||||
args:
|
||||
new_owner (str) -- name of a new owner for the tablespace"
|
||||
"""
|
||||
|
||||
if new_owner == self.owner:
|
||||
return False
|
||||
|
||||
|
@ -264,11 +299,28 @@ class PgTablespace(object):
|
|||
return self.__exec_sql(query, ddl=True)
|
||||
|
||||
def rename(self, newname):
|
||||
"""Rename tablespace.
|
||||
|
||||
Return True if success, otherwise, return False.
|
||||
|
||||
args:
|
||||
newname (str) -- new name for the tablespace"
|
||||
"""
|
||||
|
||||
query = "ALTER TABLESPACE %s RENAME TO %s" % (pg_quote_identifier(self.name, 'database'), newname)
|
||||
self.new_name = newname
|
||||
return self.__exec_sql(query, ddl=True)
|
||||
|
||||
def set_settings(self, new_settings):
|
||||
"""Set tablespace settings (options).
|
||||
|
||||
If some setting has been changed, set changed = True.
|
||||
After all settings list is handling, return changed.
|
||||
|
||||
args:
|
||||
new_settings (list) -- list of new settings
|
||||
"""
|
||||
|
||||
# settings must be a dict {'key': 'value'}
|
||||
if self.opt_not_supported:
|
||||
return False
|
||||
|
@ -288,14 +340,41 @@ class PgTablespace(object):
|
|||
return changed
|
||||
|
||||
def __reset_setting(self, setting):
|
||||
"""Reset tablespace setting.
|
||||
|
||||
Return True if success, otherwise, return False.
|
||||
|
||||
args:
|
||||
setting (str) -- string in format "setting_name = 'setting_value'"
|
||||
"""
|
||||
|
||||
query = "ALTER TABLESPACE %s RESET (%s)" % (pg_quote_identifier(self.name, 'database'), setting)
|
||||
return self.__exec_sql(query, ddl=True)
|
||||
|
||||
def __set_setting(self, setting):
|
||||
"""Set tablespace setting.
|
||||
|
||||
Return True if success, otherwise, return False.
|
||||
|
||||
args:
|
||||
setting (str) -- string in format "setting_name = 'setting_value'"
|
||||
"""
|
||||
|
||||
query = "ALTER TABLESPACE %s SET (%s)" % (pg_quote_identifier(self.name, 'database'), setting)
|
||||
return self.__exec_sql(query, ddl=True)
|
||||
|
||||
def __exec_sql(self, query, ddl=False, add_to_executed=True):
|
||||
"""Execute SQL query.
|
||||
|
||||
Return a query result if possible or True/False if ddl=True arg was passed.
|
||||
It's necessary for statements that don't return any result (like DDL queries).
|
||||
|
||||
args:
|
||||
query (str) -- SQL query to execute
|
||||
ddl (bool) -- must return True or False instead of rows (typical for DDL queries)
|
||||
add_to_executed (bool) -- append the query to self.executed_queries list
|
||||
"""
|
||||
|
||||
try:
|
||||
self.cursor.execute(query)
|
||||
|
||||
|
|
Loading…
Reference in a new issue