Class to generate PDS labels based on templates
Project description
Introduction
pdstemplate
is a Python module that provide the PdsTemplate
class, used to generate
PDS labels based on templates. Although specifically designed to facilitate data
deliveries by PDS data providers, the template system is generic and could be used to
generate files from templates for other purposes.
pdstemplate
is a product of the PDS Ring-Moon Systems Node.
Installation
The pdstemplate
module is available via the rms-pdstemplate
package on PyPI and can be
installed with:
pip install rms-template
Getting Started
The general procedure is as follows:
-
Create a template object by calling the
PdsTemplate
constructor to read a template file:template = PdsTemplate(template_file_path)
-
Create a dictionary that contains the parameter values to use inside the label.
-
Construct the label as follows:
template.write(dictionary, label_file)
This will create a new label of the given name, using the values in the given dictionary. Once the template has been constructed, steps 2 and 3 can be repeated any number of times.
Details of the PdsTemplate
class are available in the module documentation.
SUBSTITUTIONS
A template file will look generally like a label file, except for certain embedded expressions that will be replaced when the template's write() method is called.
In general, everything between dollar signs $
in the template is interpreted as a
Python expression to be evaluated. The result of this expression then replaces it
inside the label. For example, if dictionary['INSTRUMENT_ID'] == 'ISSWA'
, then
<instrument_id>$INSTRUMENT_ID$</instrument_id>
in the template will become
<instrument_id>ISSWA</instrument_id>
in the label. The expression between $
in the template can include indexes, function
calls, or just about any other Python expression. As another example, using the same
dictionary above,
<camera_fov>$"Narrow" if INSTRUMENT_ID == "ISSNA" else "Wide"$</camera_fov>
in the template will become
<camera_fov>Wide</camera_fov>
in the label.
An expression in the template of the form $name=expression$
, where the name
is a
valid Python variable name, will also also have the side-effect of defining this
variable so that it can be re-used later in the template. For example, if this appears
as an expression,
$cruise_or_saturn=('cruise' if START_TIME < 2004 else 'saturn')$
then later in the template, one can write:
<lid_reference>
urn:nasa:pds:cassini_iss_$cruise_or_saturn$:data_raw:cum-index
</lid_reference>
To embed a literal $
inside a label, enter $$
into the template.
PRE-DEFINED FUNCTIONS
The following pre-defined functions can be used inside any expression in the template.
-
BASENAME(filepath)
: The basename offilepath
, with leading directory path removed. -
BOOL(value, true='true', false='false')
: Returntrue
ifvalue
evaluates to Boolean True; otherwise, returnfalse
. -
COUNTER(name, reset=False)
: The current value of a counter identified byname
, starting at 1. Ifreset
is True, the counter is reset to 0. -
CURRENT_TIME(date_only=False)
: The current time in the local time zone as a string of the form "yyyy-mm-ddThh:mm:sss" ifdate_only=False
or "yyyy-mm-dd" ifdate_only=True
. -
CURRENT_ZULU(date_only=False)
: The current UTC time as a string of the form "yyyy-mm-ddThh:mm:sssZ" ifdate_only=False
or "yyyy-mm-dd" ifdate_only=True
. -
DATETIME(time, offset=0, digits=None)
: Converttime
as an arbitrary date/time string or TDB seconds to an ISO date format with a trailing "Z". An optionaloffset
in seconds can be applied. The returned string contains an appropriate number of decimal digits in the seconds field unlessdigits
is specified explicitly. Iftime
is "UNK", then "UNK" is returned. -
DATETIME_DOY(time, offset=0, digits=None)
: Converttime
as an arbitrary date/time string or TDB seconds to an ISO date of the form "yyyy-dddThh:mm:ss[.fff]Z". An optionaloffset
in seconds can be applied. The returned string contains an appropriate number of decimal digits in the seconds field unlessdigits
is specified explicitly. Iftime
is "UNK", then "UNK" is returned. -
DAYSECS(string)
: The number of elapsed seconds since the most recent midnight.time
can be a date/time string, a time string, or TDB seconds. -
FILE_BYTES(filepath)
: The size in bytes of the file specified byfilepath
. -
FILE_MD5(filepath)
: The MD5 checksum of the file specified byfilepath
. -
FILE_RECORDS(filepath)
: The number of records in the the file specified byfilepath
if it is ASCII; 0 if the file is binary. -
FILE_TIME(filepath)
: The modification time in the local time zone of the file specified byfilepath
in the form "yyyy-mm-ddThh:mm:ss". -
FILE_ZULU(filepath)
: The UTC modification time of the the file specified byfilepath
in the form "yyyy-mm-ddThh:mm:ssZ". -
LABEL_PATH()
: The full directory path to the label file being written. -
NOESCAPE(text)
: If the template is XML, evaluated expressions are "escaped" to ensure that they are suitable for embedding in a PDS4 label. For example, ">" inside a string will be replaced by>
. This function preventstext
from being escaped in the label, allowing it to contain literal XML. -
RAISE(exception, message)
: Raise an exception with the given classexception
and themessage
. -
REPLACE_NA(value, if_na, flag='N/A')
: Returnif_na
ifvalue
equals "N/A" (orflag
if specified); otherwise, returnvalue
. -
REPLACE_UNK(value, if_unk)
: Returnif_unk
ifvalue
equals "UNK"; otherwise, returnvalue
. -
TEMPLATE_PATH()
: The directory path to the template file. -
VERSION_ID()
: Version ID of this module, e.g., "v0.1.0". -
WRAP(left, right, text, preserve_single_newlines=True)
: Formattext
to fit between theleft
andright
column numbers. The first line is not indented, so the text will begin in the column where "$WRAP" first appears in the template. Ifpreserve_single_newlines
is true, then all newlines in the string will show up in the resultant text. If false, then single newlines will be considered part of the text flow and will be wrapped.
These functions can also be used directly by the programmer; they are static functions of class PdsTemplate.
COMMENTS
Any text appearing on a line after the symbol $NOTE:
will not appear in the label.
Trailing blanks resulting from this removal are also removed.
HEADERS
The template may also contain any number of headers. These appear alone on a line of
the template and begin with $
as the first non-blank character. They determine
whether or how subsequent text of the template will appear in the file, from here up
to the next header line.
You can include one or more repetitions of the same text using $FOR
and $END_FOR
headers. The format is
$FOR(expression)
<template text>
$END_FOR
where expression
evaluates to a Python iterable. Within the template text
, these
new variable names are assigned:
VALUE
= the next value of the iterator;INDEX
= the index of this iterator, starting at zero;LENGTH
= the number of items in the iteration.
For example, if
dictionary["targets"] = ["Jupiter", "Io", "Europa"]
dictionary["naif_ids"] = [599, 501, 502],
then
$FOR(targets)
<target_name>$VALUE (naif_ids[INDEX])$</target_name>
$END_FOR
in the template will become
<target_name>Jupiter (599)</target_name>
<target_name>Io (501)</target_name>
<target_name>Europa (502)</target_name>
in the label.
Instead of using the names VALUE
, INDEX
, and LENGTH
, you can customize the
variable names by listing up to three comma-separated names and an equal sign =
before the iterable expression. For example, this will produce the same results as the
example above:
$FOR(name, k=targets)
<target_name>$name (naif_ids[k])$</target_name>
$END_FOR
You can also use $IF
, $ELSE_IF
, $ELSE
, and $END_IF
headers to select among
alternative blocks of text in the template:
$IF(expression)
- Evaluateexpression
and include the next lines of the template if it is logically True (e.g., boolean True, a nonzero number, a non-empty list or string, etc.).$ELSE_IF(expression)
- Include the next lines of the template ifexpression
is logically True and every previous expression was not.$ELSE
- Include the next lines of the template only if all prior expressions were logically False.$END_IF
- This marks the end of the set of if/else alternatives.
As with other substitutions, you can define a new variable of a specified name by
using name=expression
inside the parentheses of an $IF()
or $ELSE_IF()
header.
Note that headers can be nested arbitrarily inside the template.
You can use the $NOTE
and $END_NOTE
headers to embed any arbitrary comment block into
the template. Any text between these headers does not appear in the label.
One additional header is supported: $ONCE(expression)
. This header evaluates
expression
but does not alter the handling of subsequent lines of the template. You
can use this capability to define variables internally without affecting the content
of the label produced. For example:
$ONCE(date=big_dictionary["key"]["date"])
will assign the value of the variable named "date" for subsequent use within the template.
LOGGING AND EXCEPTION HANDLING
The pdslogger
module is used to handle logging. By default, the pdslogger.NullLogger
class is used, meaning that no actions are logged. To override, call
set_logger(logger)
in your Python program to use the specified logger. For example,
set_logger(pdslogger.EasyLogger())
will log all messages to the terminal.
By default, exceptions during a call to write()
or generate()
are handled as follows:
- They are written to the log.
- The template attribute
ERROR_COUNT
contains the number of exceptions raised. - The expression that triggered the exception is replaced by the error text in the
label, surrounded by
[[[
and]]]
to make it easier to find. - The exception is otherwise suppressed.
This behavior can be modified by calling method raise_exceptions(True)
. In this case,
the call to write()
or generate()
raises the exception and then halts.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rms_pdstemplate-1.0.0.tar.gz
.
File metadata
- Download URL: rms_pdstemplate-1.0.0.tar.gz
- Upload date:
- Size: 44.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf3e82ddcc7296a2edf56296edc6be615843e613aed80c0c08c70f2fe3746dda |
|
MD5 | fbd9c7ca49447a2be8a92a70e6afd4a6 |
|
BLAKE2b-256 | 183f9c88612fb2d75ed8ed03273b0b9a478877c073d92a95a4d104a1aef34492 |
File details
Details for the file rms_pdstemplate-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: rms_pdstemplate-1.0.0-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fe0d1e4884cf39b04e8ccf2231eac0fe53075f15f9fce0c43954a50ab47cbf7 |
|
MD5 | bec79e1b7c04661f5a7040a2b5fbfa85 |
|
BLAKE2b-256 | 86979564711d4268d21c8c38376c68cdd5bcc202ed86f92753fa31ea69c4a7a0 |