Difference between revisions of "Relax source design"

From relax wiki
Jump to navigation Jump to search
(Added the Category:Infobox templates category.)
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{lowercase title}}
 +
 +
{{stub}}
 +
 
The following is a set of notes which will be used to design the layout of functions, modules, and packages in relax.
 
The following is a set of notes which will be used to design the layout of functions, modules, and packages in relax.
  
Line 12: Line 16:
 
== Package: specific_analyses ==
 
== Package: specific_analyses ==
  
The package layout of modules is as follows:
+
The package layout for each analysis is as follows.  These are all modules:
  
 
* '''api''' - the specific analysis API.  This module provides a class that inherits from specific_analyses.api_base.API_base (and optionally specific_analysis.api_common.API_common).  This class is initialised as a singleton object and returned by the specific_analyses.api.return_api() function.
 
* '''api''' - the specific analysis API.  This module provides a class that inherits from specific_analyses.api_base.API_base (and optionally specific_analysis.api_common.API_common).  This class is initialised as a singleton object and returned by the specific_analyses.api.return_api() function.
Line 23: Line 27:
 
* '''uf''' - the user function backends.  Any analysis specific user functions in user_functions should call functions in this module.
 
* '''uf''' - the user function backends.  Any analysis specific user functions in user_functions should call functions in this module.
 
* '''variables''' - a module containing all fixed variables for the analysis.
 
* '''variables''' - a module containing all fixed variables for the analysis.
 +
 +
Other modules may be present.
  
 
= General =
 
= General =
Line 28: Line 34:
 
== The check_*() functions ==
 
== The check_*() functions ==
  
These functions are for performing checks for certain data being present.  They can return True or False, throw RelaxWarnings, or raise RelaxErrors.
+
These functions are for performing checks for certain data being present.  The idea uses the [https://en.wikipedia.org/wiki/Strategy_pattern strategy design pattern] which is implemented in the lib.checks.Check class.  Therefore these are really function-like objects.
  
 
=== Packages ===
 
=== Packages ===
Line 39: Line 45:
 
=== Design ===
 
=== Design ===
  
The check_*() functions should have the 'escalate' keyword argument which can have the following values:
+
The check_*() functions, via the Check object __call__() method, accept the 'escalate' keyword argument which can have the following values:
  
 
* 0 - This will simply cause the function to return True or False.
 
* 0 - This will simply cause the function to return True or False.
 
* 1 - In addition to returning True or False, the function will throw a RelaxWarning for better user feedback.
 
* 1 - In addition to returning True or False, the function will throw a RelaxWarning for better user feedback.
 
* 2 - This will cause a RelaxError to be raised if the data is missing, not set up, etc.  Otherwise the function returns True.
 
* 2 - This will cause a RelaxError to be raised if the data is missing, not set up, etc.  Otherwise the function returns True.
 +
 +
The default value is 2.
  
 
=== Implementation ===
 
=== Implementation ===
  
Here is a prototype function:
+
Here is a prototype for implementing the check object:
  
 
<source lang="python">
 
<source lang="python">
 
# Python module imports.
 
from warnings import warn
 
  
 
# relax module imports.
 
# relax module imports.
 +
from lib.checks import Check
 
from lib.errors import RelaxError
 
from lib.errors import RelaxError
from lib.warnings import RelaxWarning
 
  
  
def check_xxx(escalate=0):
+
def check_aaa_func(a, b=None):
     """Check if xxx.
+
     """Check if aaa.
  
     @keyword escalate:     The feedback to give if the check fails.  This can be 0 for no printouts, 1 to throw a RelaxWarning, or 2 to raise a RelaxError.
+
     @param a:       Some check specific argument.
     @type escalate:         int
+
     @type a:       str
     @raises RelaxError:    If escalate is set to 2 and the check fails.
+
     @keyword b:    Some check specific keyword argument.
     @return:               True if the check passes, False otherwise.
+
    @type b:        int
     @rtype:                 bool
+
     @return:       The initialised RelaxError object or nothing.
 +
     @rtype:         None or RelaxError instance
 
     """
 
     """
  
     # Init.
+
     # Check that...
     flag = True
+
     if not something(a, b):
    msg = ''
+
        return RelaxError("Some text")
 +
 
 +
# Create the checking object.
 +
check_aaa = Check(check_aaa_func)
  
    # Check that...
+
</source>
    if not something():
+
 
        flag = False
+
In the module where the check is performed, the code would be:
        msg = "Something is missing."
+
 
 +
<source lang="python">
 +
 
 +
# relax module imports.
 +
from aaa import check_aaa
 +
 
 +
 
 +
def bbb():
 +
    """Some function."""
  
     # Warnings and errors.
+
     # Checks.
     if not flag and escalate == 1:
+
     a = '600 MHz'
        warn(RelaxWarning(msg))
+
     b = 600
     elif not flag and escalate == 2:
+
    check_aaa(a, b=b)
        raise RelaxError(msg)
 
  
    # Return the answer.
 
    return flag
 
 
</source>
 
</source>
 +
 +
Note that the lib.checks.Check.__call__() method will take the escalate argument for itself and pass 'a' and 'b' into the 'check_aaa_func' function as arguments.  The escalate argument defaults to 2.
 +
 +
== See also ==
 +
 +
[[Category:Development]]

Latest revision as of 17:10, 6 November 2015


This article is a stub. Please help to improve the relax wiki by expanding the article.

The following is a set of notes which will be used to design the layout of functions, modules, and packages in relax.


Packages

Package: data_store

Package: lib

Package: pipe_control

Package: specific_analyses

The package layout for each analysis is as follows. These are all modules:

  • api - the specific analysis API. This module provides a class that inherits from specific_analyses.api_base.API_base (and optionally specific_analysis.api_common.API_common). This class is initialised as a singleton object and returned by the specific_analyses.api.return_api() function.
  • checks - all functions for performing analysis specific checks.
  • data - a module of all functions for handling the base data for the analysis.
  • model - a module of all functions for handling the models of the analysis.
  • optimisation - all functions related to optimisation which are not part of the specific analysis API.
  • parameter_object - the parameter list singleton object for the specific analysis. This provides a class that inherits from specific_analysis.parameter_object.Param_list. This class is initialised and returned by the specific_analyses.api.return_parameter_list() function.
  • parameters - all functions relating to the model parameters.
  • uf - the user function backends. Any analysis specific user functions in user_functions should call functions in this module.
  • variables - a module containing all fixed variables for the analysis.

Other modules may be present.

General

The check_*() functions

These functions are for performing checks for certain data being present. The idea uses the strategy design pattern which is implemented in the lib.checks.Check class. Therefore these are really function-like objects.

Packages

These functions are found in the pipe_control and specific_analyses packages:

  • pipe_control: The check_*() functions are located in the individual modules of this package.
  • specific_analyses: For these packages, a special 'checks' module should be created for these functions.

Design

The check_*() functions, via the Check object __call__() method, accept the 'escalate' keyword argument which can have the following values:

  • 0 - This will simply cause the function to return True or False.
  • 1 - In addition to returning True or False, the function will throw a RelaxWarning for better user feedback.
  • 2 - This will cause a RelaxError to be raised if the data is missing, not set up, etc. Otherwise the function returns True.

The default value is 2.

Implementation

Here is a prototype for implementing the check object:

# relax module imports.
from lib.checks import Check
from lib.errors import RelaxError


def check_aaa_func(a, b=None):
    """Check if aaa.

    @param a:       Some check specific argument.
    @type a:        str
    @keyword b:     Some check specific keyword argument.
    @type b:        int
    @return:        The initialised RelaxError object or nothing.
    @rtype:         None or RelaxError instance
    """

    # Check that...
    if not something(a, b):
        return RelaxError("Some text")

# Create the checking object.
check_aaa = Check(check_aaa_func)

In the module where the check is performed, the code would be:

# relax module imports.
from aaa import check_aaa


def bbb():
    """Some function."""

    # Checks.
    a = '600 MHz'
    b = 600
    check_aaa(a, b=b)

Note that the lib.checks.Check.__call__() method will take the escalate argument for itself and pass 'a' and 'b' into the 'check_aaa_func' function as arguments. The escalate argument defaults to 2.

See also