lsst.pipe.tasks g12b8063833+2c5ef8e9f2
|
Public Member Functions | |
def | openRegistry (self, directory, create=False, dryrun=False, name="registry.sqlite3") |
def | createTable (self, conn, table=None, forceCreateTables=False) |
def | check (self, conn, info, table=None) |
def | addRow (self, conn, info, dryrun=False, create=False, table=None) |
Static Public Attributes | |
ConfigClass = RegisterConfig | |
string | placeHolder = '?' |
dictionary | typemap = {'text': str, 'int': int, 'double': float} |
def lsst.pipe.tasks.ingest.RegisterTask.addRow | ( | self, | |
conn, | |||
info, | |||
dryrun = False , |
|||
create = False , |
|||
table = None |
|||
) |
Add a row to the file table (typically 'raw'). @param conn Database connection @param info File properties to add to database @param table Name of table in database
Reimplemented in lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.
def lsst.pipe.tasks.ingest.RegisterTask.check | ( | self, | |
conn, | |||
info, | |||
table = None |
|||
) |
def lsst.pipe.tasks.ingest.RegisterTask.createTable | ( | self, | |
conn, | |||
table = None , |
|||
forceCreateTables = False |
|||
) |
Create the registry tables One table (typically 'raw') contains information on all files, and the other (typically 'raw_visit') contains information on all visits. @param conn Database connection @param table Name of table to create in database
Reimplemented in lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask, and lsst.pipe.tasks.ingestPgsql.PgsqlRegisterTask.
def lsst.pipe.tasks.ingest.RegisterTask.openRegistry | ( | self, | |
directory, | |||
create = False , |
|||
dryrun = False , |
|||
name = "registry.sqlite3" |
|||
) |
Open the registry and return the connection handle. @param directory Directory in which the registry file will be placed @param create Clobber any existing registry and create a new one? @param dryrun Don't do anything permanent? @param name Filename of the registry @return Database connection
Reimplemented in lsst.pipe.tasks.ingestPgsql.PgsqlRegisterTask, and lsst.pipe.tasks.ingestCalibs.CalibsRegisterTask.
|
static |
|
static |
|
static |