casacore
|
#include <AppInfo.h>
Static Public Member Functions | |
static Vector< String > | workDirectories (uInt minimumFreeSpaceInMB=0) |
Return a list of directory names into which the user may write data. More... | |
static String | workDirectory (uInt minimumFreeSpaceInMB=0) |
Choose a workDirectory with at least minimumFreeSpace MB of free space available. More... | |
static String | workFileName (uInt minimumFreeSpaceInMB=0, const String &filenamePrefix="aipstmp_") |
This function returns a fully qualified filename for a non-existent file in a work directory with enough free space. More... | |
static Double | timeZone () |
Return the local time zone offset in day fractions. More... | |
Static Private Member Functions | |
static void | init () |
Force an initialization of the AppInfo values. More... | |
Static Private Attributes | |
static Bool | need_init_p |
static uInt | tz_r |
General information for applications.
Public interface
This class provides general information that an application might want to know about its processing environment. This will be based either on information coded into aipsrc variables, or on information which can be obtained directly from some other source. For example, the time zone will generally be obtained from the host OS, but it can be overridden by an aipsrc variable if necessary.
Generally speaking, this class is provided to hide the details of how the information is encoded into an aipsrc variables and to avoid having to change applications if the information moves from being coded into a variable to being deduced at runtime.
It is expected that the information which is available from this class will accrete with time.
Further encapsulate information which is usually in aipsrc variables.
|
staticprivate |
Force an initialization of the AppInfo values.
Referenced by timeZone().
|
inlinestatic |
Return the local time zone offset in day fractions.
This value has to be added to UTC to get local time. Generally the OS supplied value will be used, however it can be overridden with system.time.tzoffset
if necessary.
Definition at line 143 of file AppInfo.h.
References casacore::AipsrcValue< T >::get(), init(), need_init_p, and tz_r.
Return a list of directory names into which the user may write data.
If minimumFreeSpace
is set (>0) then only directories with at least that much free space (in megabytes) are returned. If the aipsrc variable user.directories.work
is set, the candidate directories are taken from that variable, otherwise the current working directory (".") is chosen if it exists and is writeable, otherwise /tmp is the candidate. Only one of "." and "/tmp" is chosen, not both.
If no suitable directories are found (i.e., writable directories with enough free space), a zero-length vector is returned. A warning is issued to the logging system for directories which do not exist or are not writable.
Choose a workDirectory with at least minimumFreeSpace
MB of free space available.
It uses workDirectories
. If there is more than one valid directory it arranges to choose different directories in succession in an attempt to spread out the I/O. That is, on the first call it will return directory1, on the second it will return directory2, etc. in a cyclical fashion. One can imagine more elaborate algorithms than this, however this should suffice for some time, if not forever.
|
static |
This function returns a fully qualified filename for a non-existent file in a work directory with enough free space.
That is, you can create a temporary file with the name returned from this function. This function calls workDirectory
and then appends a unique (file does not exist) filename. By default the prefix of temporary file name is aipstmp_
, but you can override this if you choose.
|
staticprivate |
Definition at line 134 of file AppInfo.h.
Referenced by timeZone().
|
staticprivate |
Definition at line 135 of file AppInfo.h.
Referenced by timeZone().