First Add
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
# genders fork for Debian 12
|
||||
# source and package
|
||||
|
||||
- package contain binaries for AMD64 only
|
||||
- nodeattr /usr/bin is a wrapper to allow node as fqdn.domain.tld
|
||||
|
||||
BUG:
|
||||
```
|
||||
Normally nodeattr dosent support the point in fqdn
|
||||
nodeattr script is a wrapper, it load file and replace . by ^
|
||||
if you search a node ex: workstation.domain.intra, wrapper do
|
||||
- copy genders file to a tem file with . replaced by ^
|
||||
- then search workstation^domain^intra
|
||||
- in display it replace ^by . for normal view (Like Debian 9
|
||||
```
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
# source http://mirror.cnsr.ch/custom/bullseye/tomas/binary/
|
||||
BULLSEYE-tomas-app-genders_1.27.3.xxx.deb
|
||||
|
||||
This is a rebuilded gender / nodeattr from scratch for Debian 11 for GCC 10
|
||||
it include all requirement and libgenders.
|
||||
Executable
+30
@@ -0,0 +1,30 @@
|
||||
genders (2023.07.26a) UNRELEASED; urgency=low
|
||||
|
||||
* Debian 12 port (multiplatformes) (custom-conf 6.0.0)
|
||||
- added Java libs
|
||||
- added c libs
|
||||
- added python 3.11 libraries (simple use: import genders)
|
||||
|
||||
-- Laurent Tomas <laurent.tomas@idiap.ch> Wed, 26 Jul 2023 09:53:42 +0200
|
||||
|
||||
genders (2022.03.01b) UNRELEASED; urgency=high
|
||||
|
||||
* Modification in wrappers
|
||||
- Modified Wrapper, specific change for imager (total wrapper... should be)
|
||||
- rel b modified Wrapper concept to manage options
|
||||
|
||||
-- Laurent Tomas <me@laurent-tomas.com> Tue, 01 Mar 2022 14:03:00 +0200
|
||||
|
||||
genders (2021.12.07g) UNRELEASED; urgency=high
|
||||
|
||||
- added wrapper named nodeattr and renamed nodeattr in nodeattr.bin
|
||||
work with alternate gender file
|
||||
|
||||
-- Laurent Tomas <me@laurent-tomas.com> Tue, 07 Dec 2021 17:05:00 +0200
|
||||
|
||||
genders (2021.11.24g) UNRELEASED; urgency=high
|
||||
|
||||
* genders fork of gender, rebuilt from scratch for DEB 10 & 11
|
||||
based on 1.27.3 from github
|
||||
|
||||
-- Laurent Tomas <me@laurent-tomas.com> Wed, 24 Nov 2021 17:05:00 +0200
|
||||
Executable
+1
@@ -0,0 +1 @@
|
||||
12
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
Source: genders
|
||||
Section: admin
|
||||
Priority: optionnal
|
||||
Maintainer: Laurent.tomas <Laurent.tomas@idiap.ch>
|
||||
Homepage: http://mirror.cnsr.ch/custom/bullseye/tomas/binary/
|
||||
Standards-Version: 1.27.3.012
|
||||
|
||||
Package: genders
|
||||
Architecture: all
|
||||
Depends: pdsh, libgenders0
|
||||
Description: Fork of Genders 1.27.3 to allow fqdn in place of shortname
|
||||
1.27.3-012 012 add C, Java and python3.11 genders libraries.
|
||||
1.27.3-006 006 add wrapper to allow fqdn as nodename.
|
||||
original genders dosent allow fqdn from Debian >=10
|
||||
this gender contain a wrapper to allow fqdn, binaries designed for GLIBC- GCC10
|
||||
Executable
+1
@@ -0,0 +1 @@
|
||||
usr
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#! /bin/bash
|
||||
#
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#! /bin/bash
|
||||
#
|
||||
Executable
+12
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_install:
|
||||
dh_install
|
||||
find debian -type f -name .gitplaceholder -delete
|
||||
|
||||
override_dh_installdocs:
|
||||
dh_installdocs README
|
||||
|
||||
Executable
+69
@@ -0,0 +1,69 @@
|
||||
#! /usr/bin/bash
|
||||
#
|
||||
# Nodeattr is not designed for hostname.domain.tld, just hostname
|
||||
# it work to Debian 9 by accident.
|
||||
# if debian > 9, original genders is copyed on /tmp, but . are replaced by ^
|
||||
# binary of nodeattr is renamed /usr/bin/nodeattr.bin
|
||||
# this script replace requested fqdn host.domain.tld by host^domain^tld (like content of copy of genders in /tmp)
|
||||
# nodeattr.bin see ^ as normal char like a simple nodename then it parse stdout of nodeattr.bin by a sed to replace ^ by .
|
||||
#
|
||||
MinWork=10
|
||||
# ---------------------------------------------------------------------------------------------------------------
|
||||
# Calculate temp file
|
||||
RNDSeq=$(echo $RANDOM$RANDOM$RANDOM | cut -b1-6)
|
||||
TMPFile=/tmp/Alt-genders.$$-${RNDSeq}
|
||||
AllParameters="$@"
|
||||
OldOption="@@@"
|
||||
NewParam=""
|
||||
# Fixe gender file
|
||||
PossibleGenders=$2
|
||||
GenderFile=/etc/genders
|
||||
# ---------------
|
||||
[ "$(echo ${AllParameters} | grep "\-f" | wc -l)" = "1" ] && GenderFile=$2
|
||||
#
|
||||
# this FN generate valid cmd line for nodeattr.bin
|
||||
# ex: -f /etc/gender.sample -n jackyix01.idiap.ch -l si_target
|
||||
# become -f /tmp/ALT-Genders.$$-nnnnnn -n jackyix01^idiap^ch -l si_target
|
||||
# -f gender file is changed to temp gender file
|
||||
# if -n hostname . replaced by ^
|
||||
# ---------------------------------------------------------------------------------------------------------------
|
||||
|
||||
_RemovePointOnFQDNParam()
|
||||
{
|
||||
echo -n "-f ${TMPFile}"
|
||||
for Option in ${AllParameters}
|
||||
do
|
||||
|
||||
if [ "o${OldOption}" = "o-l" ]
|
||||
then
|
||||
echo -n " ${Option}" | sed s/'\.'/'^'/g
|
||||
elif [ "o${OldOption}" = "o-f" ]
|
||||
then
|
||||
#PATCH dont echo option followed by -f (already set before)
|
||||
echo -n ""
|
||||
elif [ "o${Option}" = "o-f" ]
|
||||
then
|
||||
#PATCH dont echo -f option (already set before)
|
||||
echo -n ""
|
||||
else
|
||||
echo -n " ${Option}"
|
||||
fi
|
||||
OldOption=${Option}
|
||||
done
|
||||
}
|
||||
# ---------------------------------------------------------------------------------------------------------------
|
||||
NewParam=""
|
||||
NewParam=$(_RemovePointOnFQDNParam $2)
|
||||
# ----------------------------------------------------------------------
|
||||
if [ $(cat /etc/debian_version | awk -F "." ' { print $1 } ') -lt ${MinWork} ]
|
||||
then
|
||||
/usr/bin/nodeattr $*
|
||||
exit
|
||||
else
|
||||
# Dirty hack
|
||||
#echo ":${AllParameters}" >> /tmp/nodeattr.txt
|
||||
cat ${GenderFile} | sed s/'\.'/'^'/g > ${TMPFile} 2> /dev/null
|
||||
# Remove -f genderfile on options
|
||||
/usr/bin/nodeattr.bin ${NewParam} | sed s/'\^'/'.'/g
|
||||
[ -f ${TMPFile} ] && rm -f ${TMPFile} > /dev/null 2>&1
|
||||
fi
|
||||
Executable
+461
@@ -0,0 +1,461 @@
|
||||
/*****************************************************************************\
|
||||
* $Id: genders.h.in,v 1.39 2010-02-02 00:04:34 chu11 Exp $
|
||||
*****************************************************************************
|
||||
* Copyright (C) 2007-2019 Lawrence Livermore National Security, LLC.
|
||||
* Copyright (C) 2001-2003 The Regents of the University of California.
|
||||
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
||||
* Written by Jim Garlick <garlick@llnl.gov> and Albert Chu <chu11@llnl.gov>.
|
||||
* UCRL-CODE-2003-004.
|
||||
*
|
||||
* This file is part of Genders, a cluster configuration database.
|
||||
* For details, see <http://www.llnl.gov/linux/genders/>.
|
||||
*
|
||||
* Genders is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License as published by the Free
|
||||
* Software Foundation; either version 2 of the License, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* Genders is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with Genders; if not, write to the Free Software Foundation, Inc.,
|
||||
\*****************************************************************************/
|
||||
|
||||
#ifndef _GENDERS_H
|
||||
#define _GENDERS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#define GENDERS_ERR_SUCCESS 0
|
||||
#define GENDERS_ERR_NULLHANDLE 1
|
||||
#define GENDERS_ERR_OPEN 2
|
||||
#define GENDERS_ERR_READ 3
|
||||
#define GENDERS_ERR_PARSE 4
|
||||
#define GENDERS_ERR_NOTLOADED 5
|
||||
#define GENDERS_ERR_ISLOADED 6
|
||||
#define GENDERS_ERR_OVERFLOW 7
|
||||
#define GENDERS_ERR_PARAMETERS 8
|
||||
#define GENDERS_ERR_NULLPTR 9
|
||||
#define GENDERS_ERR_NOTFOUND 10
|
||||
#define GENDERS_ERR_OUTMEM 11
|
||||
#define GENDERS_ERR_SYNTAX 12
|
||||
#define GENDERS_ERR_MAGIC 13
|
||||
#define GENDERS_ERR_INTERNAL 14
|
||||
#define GENDERS_ERR_ERRNUMRANGE 15
|
||||
|
||||
/* Flags for alternate genders before
|
||||
*
|
||||
* RAW_VALUES - Do not perform any substitution, such as with "%n" or
|
||||
* "%%", when returning attribute values.
|
||||
*/
|
||||
#define GENDERS_FLAG_DEFAULT 0x00000000
|
||||
#define GENDERS_FLAG_RAW_VALUES 0x00000001
|
||||
|
||||
#define GENDERS_DEFAULT_FILE "/etc/genders"
|
||||
|
||||
typedef struct genders *genders_t;
|
||||
|
||||
/*
|
||||
* genders_handle_create
|
||||
*
|
||||
* Creates and initialize a genders handle.
|
||||
*
|
||||
* Returns NULL on memory allocation error
|
||||
*/
|
||||
genders_t genders_handle_create(void);
|
||||
|
||||
/*
|
||||
* genders_handle_destroy
|
||||
*
|
||||
* Destroy a genders handle.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_handle_destroy(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_load_data
|
||||
*
|
||||
* Opens/reads/parses the specified genders file. If filename is
|
||||
* NULL, attempts to read default genders file.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_load_data(genders_t handle, const char *filename);
|
||||
|
||||
/*
|
||||
* genders_errnum
|
||||
*
|
||||
* Returns an error code associated with a handle .
|
||||
*/
|
||||
int genders_errnum(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_strerror
|
||||
*
|
||||
* Returns a pointer to NUL-terminated statically allocated string
|
||||
* describing the error code 'errnum'.
|
||||
*/
|
||||
char *genders_strerror(int errnum);
|
||||
|
||||
/*
|
||||
* genders_errormsg
|
||||
*
|
||||
* Returns a pointer to a NUL-terminated statically allocated string
|
||||
* describing the most recent error that occurred.
|
||||
*/
|
||||
char *genders_errormsg(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_perror
|
||||
*
|
||||
* Produces a message on standard error describing the most recent
|
||||
* error that occurred.
|
||||
*/
|
||||
void genders_perror(genders_t handle, const char *msg);
|
||||
|
||||
/*
|
||||
* genders_get_flags
|
||||
*
|
||||
* Get the currently configured flags for alternate genders
|
||||
* behavior.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_get_flags(genders_t handle, unsigned int *flags);
|
||||
|
||||
/*
|
||||
* genders_set_flags
|
||||
*
|
||||
* Set the flags for alternate genders behavior.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_set_flags(genders_t handle, unsigned int flags);
|
||||
|
||||
/*
|
||||
* genders_getnumnodes
|
||||
*
|
||||
* Get the number of nodes read from the genders file.
|
||||
*
|
||||
* Returns number of nodes on success, -1 on failure
|
||||
*/
|
||||
int genders_getnumnodes(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_getnumattrs
|
||||
*
|
||||
* Get the number of attributes read from the genders file
|
||||
*
|
||||
* Returns number of attributes on success, -1 on failure
|
||||
*/
|
||||
int genders_getnumattrs(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_getmaxattrs
|
||||
*
|
||||
* Get the max number of attributes read of any one node in the
|
||||
* genders file.
|
||||
*
|
||||
* Returns number of attributes on success, -1 on failure
|
||||
*/
|
||||
int genders_getmaxattrs(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_getmaxnodelen
|
||||
*
|
||||
* Get the max node name length of any one node in the genders file.
|
||||
*
|
||||
* Returns maximum node length on success, -1 on failure
|
||||
*/
|
||||
int genders_getmaxnodelen(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_getmaxattrlen
|
||||
*
|
||||
* Get the max attribute name length of any one attribute in the
|
||||
* genders file.
|
||||
*
|
||||
* Returns maximum attribute length on success, -1 on failure
|
||||
*/
|
||||
int genders_getmaxattrlen(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_getmaxvallen
|
||||
*
|
||||
* Get the max value length of any one value in the genders file.
|
||||
*
|
||||
* Returns maximum value length on success, -1 on failure
|
||||
*/
|
||||
int genders_getmaxvallen(genders_t handle);
|
||||
|
||||
/*
|
||||
* genders_nodelist_create
|
||||
*
|
||||
* Allocate an array of character strings to store node names in.
|
||||
*
|
||||
* Returns number of elements the list can store on succcess, -1 on failure
|
||||
*/
|
||||
int genders_nodelist_create(genders_t handle, char ***nodelist);
|
||||
|
||||
/*
|
||||
* genders_nodelist_clear
|
||||
*
|
||||
* Clears the data stored in a previously created node list.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_nodelist_clear(genders_t handle, char **nodelist);
|
||||
|
||||
/*
|
||||
* genders_nodelist_destroy
|
||||
*
|
||||
* Frees memory of a previously created node list.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_nodelist_destroy(genders_t handle, char **nodelist);
|
||||
|
||||
/*
|
||||
* genders_attrlist_create
|
||||
*
|
||||
* Allocate an array of character strings to store attribute names in.
|
||||
*
|
||||
* Returns number of elements the list can store on succcess, -1 on failure
|
||||
*/
|
||||
int genders_attrlist_create(genders_t handle, char ***attrlist);
|
||||
|
||||
/*
|
||||
* genders_attrlist_clear
|
||||
*
|
||||
* Clears the data stored in a previously created attribute list.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_attrlist_clear(genders_t handle, char **attrlist);
|
||||
|
||||
/*
|
||||
* genders_attrlist_destroy
|
||||
*
|
||||
* Frees memory of a previously created attribute list.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_attrlist_destroy(genders_t handle, char **attrlist);
|
||||
|
||||
/*
|
||||
* genders_vallist_create
|
||||
*
|
||||
* Allocate an array of character strings to store values in.
|
||||
*
|
||||
* Returns number of elements the list can store on succcess, -1 on failure
|
||||
*/
|
||||
int genders_vallist_create(genders_t handle, char ***vallist);
|
||||
|
||||
/*
|
||||
* genders_vallist_clear
|
||||
*
|
||||
* Clears the data stored in a previously created value list.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_vallist_clear(genders_t handle, char **vallist);
|
||||
|
||||
/*
|
||||
* genders_vallist_destroy
|
||||
*
|
||||
* Frees memory of a previously created value list.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_vallist_destroy(genders_t handle, char **vallist);
|
||||
|
||||
/*
|
||||
* genders_getnodename
|
||||
*
|
||||
* Get the name of the current node. Node name returned is the
|
||||
* shortened hostname.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_getnodename(genders_t handle, char *node, int len);
|
||||
|
||||
/*
|
||||
* genders_getnodes
|
||||
*
|
||||
* Gets list of nodes with the specified attribute. If 'attr' is
|
||||
* NULL, gets all nodes. If 'val' is non-NULL, get only nodes with
|
||||
* attr=val. Nodes are returned in genders file order,
|
||||
*
|
||||
* Returns number of matches on success, -1 on failure
|
||||
*/
|
||||
int genders_getnodes(genders_t handle,
|
||||
char *nodes[],
|
||||
int len,
|
||||
const char *attr,
|
||||
const char *val);
|
||||
|
||||
/*
|
||||
* genders_getattr
|
||||
*
|
||||
* Gets list of attributes for the specified node. If 'node' is NULL,
|
||||
* gets all attributes for the current node. If 'vals' array is
|
||||
* non-NULL, stores any attribute values in it.
|
||||
*
|
||||
* Returns number of matches on success, -1 on failure
|
||||
*/
|
||||
int genders_getattr(genders_t handle,
|
||||
char *attrs[],
|
||||
char *vals[],
|
||||
int len,
|
||||
const char *node);
|
||||
|
||||
/*
|
||||
* genders_getattr_all
|
||||
*
|
||||
* Gets all attributes stored in the genders file.
|
||||
*
|
||||
* Returns number of attributes on success, -1 on failure
|
||||
*/
|
||||
int genders_getattr_all(genders_t handle, char *attrs[], int len);
|
||||
|
||||
/*
|
||||
* genders_testattr
|
||||
*
|
||||
* Tests whether a node has an attribute. If 'node' is NULL, tests
|
||||
* the current node. If 'val' is non-NULL, stores the attribute value
|
||||
* in it.
|
||||
*
|
||||
* Returns 1=true, 0=false, -1=failure
|
||||
*/
|
||||
int genders_testattr(genders_t handle,
|
||||
const char *node,
|
||||
const char *attr,
|
||||
char *val,
|
||||
int len);
|
||||
|
||||
/*
|
||||
* genders_testattrval
|
||||
*
|
||||
* Tests whether node has an attr=val pair. If 'node' is NULL, tests
|
||||
* the current node. If 'val' is NULL, only the attribute is tested.
|
||||
*
|
||||
* Returns 1=true, 0=false, -1=failure
|
||||
*/
|
||||
int genders_testattrval(genders_t handle,
|
||||
const char *node,
|
||||
const char *attr,
|
||||
const char *val);
|
||||
|
||||
/*
|
||||
* genders_isnode
|
||||
*
|
||||
* Tests whether the node exists in the genders file. If 'node' is
|
||||
* NULL, tests the current node.
|
||||
*
|
||||
* Returns 1=true , 0=false, -1=failure
|
||||
*/
|
||||
int genders_isnode(genders_t handle, const char *node);
|
||||
|
||||
/*
|
||||
* genders_isattr
|
||||
*
|
||||
* Tests whether the attribute exists in the genders file.
|
||||
*
|
||||
* Returns 1=true , 0=false, -1=failure
|
||||
*/
|
||||
int genders_isattr(genders_t handle, const char *attr);
|
||||
|
||||
/*
|
||||
* genders_isattrval
|
||||
*
|
||||
* Tests whether an attr=val exists for some node in the genders file.
|
||||
*
|
||||
* Returns 1=true , 0=false, -1=failure
|
||||
*/
|
||||
int genders_isattrval(genders_t handle, const char *attr, const char *val);
|
||||
|
||||
/*
|
||||
* genders_index_attrvals
|
||||
*
|
||||
* Internally index values for specified attribute for faster search
|
||||
* times on genders_getnodes and genders_isattrval. Only one
|
||||
* attribute can be indexed at a time. Subsequent calls to this
|
||||
* function will overwrite earlier indexes. A failure will not
|
||||
* destroy an earlier index.
|
||||
*
|
||||
* Returns 0 on success, -1 on failure
|
||||
*/
|
||||
int genders_index_attrvals(genders_t handle, const char *attr);
|
||||
|
||||
/*
|
||||
* genders_query
|
||||
*
|
||||
* Query the genders database for a set of nodes based on union,
|
||||
* intersection, difference, or complement of genders attributes and
|
||||
* values. Signify union with '||', intersection with '&&',
|
||||
* difference with '--', and complement with '~'. Operations are
|
||||
* performed left to right. Parentheses can be used to change the
|
||||
* order of operations. If 'query' is NULL, get all nodes. This
|
||||
* function is not threadsafe.
|
||||
*
|
||||
* Return number matches on success, -1 on error
|
||||
*/
|
||||
int genders_query(genders_t handle, char *nodes[], int len, const char *query);
|
||||
|
||||
/*
|
||||
* genders_testquery
|
||||
*
|
||||
* Tests whether a node meets the conditions specified in the query.
|
||||
* If 'node' is NULL, tests the current node. Queries are based on
|
||||
* the union, intersection, difference, or complement of genders
|
||||
* attributes and values. Signify union with '||', intersection with
|
||||
* '&&', difference with '--', and complement with '~'. Operations
|
||||
* are performed left to right. Parentheses can be used to change the
|
||||
* order of operations. This function is not threadsafe.
|
||||
*
|
||||
* Returns 1=true, 0=false, -1=failure
|
||||
*/
|
||||
int genders_testquery(genders_t handle,
|
||||
const char *node,
|
||||
const char *query);
|
||||
|
||||
/*
|
||||
* genders_parse
|
||||
*
|
||||
* Parses a genders file, and outputs parse debugging information to
|
||||
* the file stream. If 'filename' is NULL, parses default genders
|
||||
* file. If 'stream' is NULL, outputs to stderr.
|
||||
*
|
||||
* Returns the number of parse errors (0 if no parse errors), -1 on error
|
||||
*/
|
||||
int genders_parse(genders_t handle, const char *filename, FILE *stream);
|
||||
|
||||
/*
|
||||
* genders_set_errnum
|
||||
*
|
||||
* Set the errnum for a genders handle.
|
||||
*/
|
||||
void genders_set_errnum(genders_t handle, int errnum);
|
||||
|
||||
/*
|
||||
* genders_copy
|
||||
*
|
||||
* Creates and returns a copy of a loaded genders handle.
|
||||
*
|
||||
* Returns new genders handle on success, NULL on error.
|
||||
*/
|
||||
genders_t genders_copy(genders_t handle);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _GENDERS_H */
|
||||
Executable
+141
@@ -0,0 +1,141 @@
|
||||
/*****************************************************************************\
|
||||
* Copyright (C) 2007-2019 Lawrence Livermore National Security, LLC.
|
||||
* Copyright (C) 2001-2007 The Regents of the University of California.
|
||||
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
||||
* Written by Jim Garlick <garlick@llnl.gov> and Albert Chu <chu11@llnl.gov>.
|
||||
* UCRL-CODE-2003-004.
|
||||
*
|
||||
* This file is part of Genders, a cluster configuration database.
|
||||
* For details, see <http://www.llnl.gov/linux/genders/>.
|
||||
*
|
||||
* Genders is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License as published by the Free
|
||||
* Software Foundation; either version 2 of the License, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* Genders is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with Genders. If not, see <http://www.gnu.org/licenses/>.
|
||||
\*****************************************************************************/
|
||||
|
||||
#ifndef _GENDERSPLUSPLUS_HPP
|
||||
#define _GENDERSPLUSPLUS_HPP
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
extern "C" {
|
||||
#include <genders.h>
|
||||
}
|
||||
|
||||
namespace Gendersplusplus
|
||||
{
|
||||
|
||||
/*
|
||||
* GendersException
|
||||
*
|
||||
* May occur in any Genders class function.
|
||||
*/
|
||||
class GendersException
|
||||
{
|
||||
public:
|
||||
GendersException();
|
||||
GendersException(int errnum);
|
||||
const char *errormsg() const;
|
||||
int errnum() const;
|
||||
private:
|
||||
int _errnum;
|
||||
};
|
||||
|
||||
std::ostream &operator<<(std::ostream &output, const GendersException &e);
|
||||
|
||||
class GendersExceptionOpen : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionOpen();
|
||||
};
|
||||
|
||||
class GendersExceptionRead : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionRead();
|
||||
};
|
||||
|
||||
class GendersExceptionParse : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionParse();
|
||||
};
|
||||
|
||||
class GendersExceptionParameters : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionParameters();
|
||||
};
|
||||
|
||||
class GendersExceptionNotfound : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionNotfound();
|
||||
};
|
||||
|
||||
class GendersExceptionSyntax : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionSyntax();
|
||||
};
|
||||
|
||||
class GendersExceptionInternal : public GendersException
|
||||
{
|
||||
public:
|
||||
GendersExceptionInternal();
|
||||
};
|
||||
|
||||
/*
|
||||
* Genders
|
||||
*
|
||||
* C++ class for libgenders. Operates nearly identically to classic
|
||||
* genders C library. Changes include:
|
||||
*
|
||||
* - Errors are returned via exceptions
|
||||
* - Use of STL instead of genders specific data structures
|
||||
* - Functions may take empty strings instead of NULL pointers for
|
||||
* defaults.
|
||||
*
|
||||
*/
|
||||
class Genders
|
||||
{
|
||||
public:
|
||||
Genders();
|
||||
Genders(const std::string filename);
|
||||
Genders(const Genders ©);
|
||||
const Genders &operator=(const Genders &right);
|
||||
~Genders();
|
||||
unsigned int getnumnodes() const;
|
||||
unsigned int getnumattrs() const;
|
||||
unsigned int getmaxattrs() const;
|
||||
std::string getnodename() const;
|
||||
std::vector< std::string > getnodes(const std::string attr = "", const std::string val = "") const;
|
||||
std::vector< std::pair< std::string, std::string > > getattr(const std::string node = "") const;
|
||||
std::vector< std::string > getattr_all() const;
|
||||
bool testattr(const std::string attr, std::string &val, const std::string node = "") const;
|
||||
bool testattrval(const std::string attr, const std::string val = "", const std::string node = "") const;
|
||||
bool isnode(const std::string node = "") const;
|
||||
bool isattr(const std::string attr) const;
|
||||
bool isattrval(const std::string attr, const std::string val) const;
|
||||
std::vector< std::string > query(const std::string query = "") const;
|
||||
bool testquery(const std::string query, const std::string node = "");
|
||||
private:
|
||||
void _constructor(const std::string filename);
|
||||
void _throw_exception(int errnum) const;
|
||||
genders_t gh;
|
||||
};
|
||||
|
||||
} // Gendersplusplus
|
||||
|
||||
#endif /* _GENDERSPLUSPLUS_HPP */
|
||||
Executable
BIN
Binary file not shown.
Executable
+41
@@ -0,0 +1,41 @@
|
||||
# libGendersjni.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.4.2
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname='libGendersjni.so.0'
|
||||
|
||||
# Names of this library.
|
||||
library_names='libGendersjni.so.0.0.0 libGendersjni.so.0 libGendersjni.so'
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libGendersjni.a'
|
||||
|
||||
# Linker flags that can not go in dependency_libs.
|
||||
inherited_linker_flags=''
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' /home/local/PREFIX/lib/libgenders.la'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libGendersjni.
|
||||
current=0
|
||||
age=0
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/local/PREFIX/lib'
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
libGendersjni.so.0.0.0
|
||||
+1
@@ -0,0 +1 @@
|
||||
libGendersjni.so.0.0.0
|
||||
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
+41
@@ -0,0 +1,41 @@
|
||||
# libgenders.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.4.2
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname='libgenders.so.0'
|
||||
|
||||
# Names of this library.
|
||||
library_names='libgenders.so.0.3.3 libgenders.so.0 libgenders.so'
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libgenders.a'
|
||||
|
||||
# Linker flags that can not go in dependency_libs.
|
||||
inherited_linker_flags=''
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=''
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libgenders.
|
||||
current=3
|
||||
age=3
|
||||
revision=3
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/local/PREFIX/lib'
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
libgenders.so.0.3.3
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
libgenders.so.0.3.3
|
||||
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
+41
@@ -0,0 +1,41 @@
|
||||
# libgendersplusplus.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.4.2
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname='libgendersplusplus.so.2'
|
||||
|
||||
# Names of this library.
|
||||
library_names='libgendersplusplus.so.2.0.0 libgendersplusplus.so.2 libgendersplusplus.so'
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libgendersplusplus.a'
|
||||
|
||||
# Linker flags that can not go in dependency_libs.
|
||||
inherited_linker_flags=''
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' /home/local/PREFIX/lib/libgenders.la'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libgendersplusplus.
|
||||
current=2
|
||||
age=0
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/home/local/PREFIX/lib'
|
||||
+1
@@ -0,0 +1 @@
|
||||
libgendersplusplus.so.2.0.0
|
||||
+1
@@ -0,0 +1 @@
|
||||
libgendersplusplus.so.2.0.0
|
||||
Executable
BIN
Binary file not shown.
Executable
+4
@@ -0,0 +1,4 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: libgenders
|
||||
Version: 1.2
|
||||
Summary: This is the libgenders package
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
genders.py
|
||||
genderssetup.py
|
||||
libgendersmodule.c
|
||||
libgenders.egg-info/PKG-INFO
|
||||
libgenders.egg-info/SOURCES.txt
|
||||
libgenders.egg-info/dependency_links.txt
|
||||
libgenders.egg-info/top_level.txt
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
libgenders.cpython-311-x86_64-linux-gnu.so
|
||||
+1
@@ -0,0 +1 @@
|
||||
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
genders
|
||||
libgenders
|
||||
Binary file not shown.
Binary file not shown.
Executable
+299
@@ -0,0 +1,299 @@
|
||||
#! /usr/bin/Python3
|
||||
"""
|
||||
Genders database parsing and querying
|
||||
"""
|
||||
#############################################################################
|
||||
# Copyright (C) 2007-2019 Lawrence Livermore National Security, LLC.
|
||||
# Copyright (C) 2001-2007 The Regents of the University of California.
|
||||
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
||||
# Written by Jim Garlick <garlick@llnl.gov> and Albert Chu <chu11@llnl.gov>.
|
||||
# UCRL-CODE-2003-004.
|
||||
#
|
||||
# This file is part of Genders, a cluster configuration database.
|
||||
# For details, see <http://www.llnl.gov/linux/genders/>.
|
||||
#
|
||||
# Genders is free software; you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free
|
||||
# Software Foundation; either version 2 of the License, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# Genders is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with Genders. If not, see <http://www.gnu.org/licenses/>.
|
||||
#############################################################################
|
||||
|
||||
from __future__ import print_function
|
||||
import sys
|
||||
import libgenders
|
||||
|
||||
class Genders_Err(Exception):
|
||||
"""
|
||||
Genders Error Exception Base Class
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "Genders Error"
|
||||
|
||||
class Genders_Err_Open(Genders_Err):
|
||||
"""
|
||||
Genders Open Error Exception
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "error opening genders file"
|
||||
|
||||
class Genders_Err_Read(Genders_Err):
|
||||
"""
|
||||
Genders Read Error Exception
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "error reading genders file"
|
||||
|
||||
class Genders_Err_Parse(Genders_Err):
|
||||
"""
|
||||
Genders Parse Error Exception
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "genders file parse error"
|
||||
|
||||
class Genders_Err_NotFound(Genders_Err):
|
||||
"""
|
||||
Genders NotFound Error Exception
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "node or attribute not found"
|
||||
|
||||
class Genders_Err_Syntax(Genders_Err):
|
||||
"""
|
||||
Genders Syntax Error Exception
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "query syntax error"
|
||||
|
||||
class Genders_Err_Internal(Genders_Err):
|
||||
"""
|
||||
Genders Internal Error Exception
|
||||
"""
|
||||
def __repr__(self):
|
||||
return "unknown internal error"
|
||||
|
||||
class Genders:
|
||||
"""
|
||||
Genders database parsing and querying
|
||||
"""
|
||||
__lgh = None;
|
||||
|
||||
def __find_exception(self):
|
||||
# When SystemError occurs, assume it's a genders error, map to
|
||||
# appropriate genders issue.
|
||||
if self.__lgh.errnum() == self.__lgh.genders_err_open:
|
||||
return Genders_Err_Open()
|
||||
elif self.__lgh.errnum() == self.__lgh.genders_err_read:
|
||||
return Genders_Err_Read()
|
||||
elif self.__lgh.errnum() == self.__lgh.genders_err_parse:
|
||||
return Genders_Err_Parse()
|
||||
elif self.__lgh.errnum() == self.__lgh.genders_err_notfound:
|
||||
return Genders_Err_NotFound()
|
||||
elif self.__lgh.errnum() == self.__lgh.genders_err_syntax:
|
||||
return Genders_Err_Syntax()
|
||||
elif self.__lgh.errnum() == self.__lgh.genders_err_internal:
|
||||
return Genders_Err_Internal()
|
||||
else:
|
||||
return Genders_Err()
|
||||
def __init__(self, filename=None):
|
||||
"""
|
||||
Creates a Genders object and load genders data from the
|
||||
specified file. If the genders file is not specified, the
|
||||
default genders file will be used.
|
||||
"""
|
||||
self.__lgh = libgenders.Libgenders()
|
||||
try:
|
||||
self.__lgh.load_data(filename)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def getnodename(self):
|
||||
"""
|
||||
Returns the name of the current node.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.getnodename()
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def getnodes(self, attr=None, val=None):
|
||||
"""
|
||||
Returns a list of nodes with the specified attribute and
|
||||
value. If a value is not specified only the attribute is
|
||||
considered. If the attribute is not specified, all nodes
|
||||
listed in the genders file are returned.
|
||||
"""
|
||||
try:
|
||||
str = self.__lgh.getnodes(attr, val)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
|
||||
if str:
|
||||
rv = str.split(',')
|
||||
else:
|
||||
rv = [];
|
||||
return rv
|
||||
def getattr(self, node=None):
|
||||
"""
|
||||
Returns a list of attributes for the specified node. If the
|
||||
node is not specified, the local node's attributes returned.
|
||||
"""
|
||||
try:
|
||||
str = self.__lgh.getattr(node)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
|
||||
if str:
|
||||
rv = str.split(',')
|
||||
else:
|
||||
rv = []
|
||||
return rv
|
||||
def getattr_all(self):
|
||||
"""
|
||||
Returns a list of all attributes listed in the genders file.
|
||||
"""
|
||||
try:
|
||||
str = self.__lgh.getattr_all()
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
|
||||
if str:
|
||||
rv = str.split(',')
|
||||
else:
|
||||
rv = []
|
||||
return rv
|
||||
def getattrval(self, attr, node=None):
|
||||
"""
|
||||
Returns the value of the specified attribute for the specified
|
||||
node. If the attribute does not exist or the attribute has no
|
||||
value, an empty string is returned. If the node is not
|
||||
specified, the local node's attribute value is returned.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.getattrval(attr, node)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def testattr(self, attr, node=None):
|
||||
"""
|
||||
Returns 1 if the specified node has the specified attribute, 0
|
||||
if it does not. If the node is not specified, the local node
|
||||
is checked.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.testattr(attr, node)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def testattrval(self, attr, val, node=None):
|
||||
"""
|
||||
Returns 1 if the specified node has the specified attribute
|
||||
and value, 0 if it does not. If the node is not specified,
|
||||
the local node is checked.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.testattrval(attr, val, node)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def isnode(self, node=None):
|
||||
"""
|
||||
Returns 1 if the specified node is listed in the genders file,
|
||||
0 if it is not. If the node is not specified, the local node
|
||||
is checked.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.isnode(node)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def isattr(self, attr):
|
||||
"""
|
||||
Returns 1 if the specified attribute is listed in the genders
|
||||
file, 0 if it is not.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.isattr(attr)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def isattrval(self, attr, val):
|
||||
"""
|
||||
Returns 1 if the specified attribute is equal to the specified
|
||||
value for some node in the genders file, 0 if it is not.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.isattrval(attr, val)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
def query(self, query=None):
|
||||
"""
|
||||
Returns a list of nodes specified by a genders query. A
|
||||
genders query is based on the union, intersection, set
|
||||
difference, or complement between genders attributes and
|
||||
values. Union is represented by two pipe symbols ('||'),
|
||||
intersection by two ampersand symbols ('&&'), difference by
|
||||
two minus symbols ('--'), and complement by a tilde ('~')
|
||||
Operations are performed from left to right. Parentheses may
|
||||
be used to change the order of operations. For example, the
|
||||
following query would retrieve all nodes other than management
|
||||
or login nodes: "all-(mgmt+login)". If the query is not
|
||||
specified, all nodes listed in the genders file are returned.
|
||||
"""
|
||||
try:
|
||||
str = self.__lgh.query(query)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
|
||||
if str:
|
||||
rv = str.split(',')
|
||||
else:
|
||||
rv = [];
|
||||
return rv
|
||||
def testquery(self, query, node=None):
|
||||
"""
|
||||
Returns 1 if the specified node meets the conditions of the
|
||||
specified query, 0 if it does not. If the node is not
|
||||
specified, the local node is checked.
|
||||
"""
|
||||
try:
|
||||
return self.__lgh.testquery(query, node)
|
||||
except SystemError:
|
||||
raise Genders.__find_exception(self)
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
gh = Genders()
|
||||
|
||||
print("getnodename:", gh.getnodename())
|
||||
|
||||
print("getnodes:", gh.getnodes())
|
||||
print("getnodes:", gh.getnodes("foofdfd"))
|
||||
print("getnodes:", gh.getnodes("mgmt"))
|
||||
print("getattr:", gh.getattr())
|
||||
|
||||
try:
|
||||
print("getattr:", gh.getattr("fdafdsfdsa"))
|
||||
except Genders_Err_NotFound:
|
||||
print("got genders exception", sys.exc_info()[0], sys.exc_info()[1])
|
||||
except:
|
||||
print("unexpected exception:", sys.exc_info()[0], sys.exc_info()[1], sys.exc_info[2])
|
||||
|
||||
print("getattr_all:", gh.getattr_all())
|
||||
print("isnode <blank>:", gh.isnode())
|
||||
print("isnode foo:", gh.isnode("foo"))
|
||||
print("isattr foo:", gh.isattr("foo"))
|
||||
print("isattr mgmt:", gh.isattr("mgmt"))
|
||||
print("isattrval cpu=14:", gh.isattrval("cpu", "14"))
|
||||
print("isattrval cpu=14:", gh.isattrval("cpu", "16"))
|
||||
print("query:", gh.query("mgmt"))
|
||||
print("query:", gh.query("mgmt||login"))
|
||||
print("query:", gh.query())
|
||||
print("query:", gh.query("bdjfkdsalfdsafds"))
|
||||
|
||||
try:
|
||||
print("query:", gh.query("&&||!!!~~"))
|
||||
except Genders_Err_Syntax:
|
||||
print("got genders exception", sys.exc_info()[0], sys.exc_info()[1])
|
||||
except:
|
||||
print("unexpected exception:", sys.exc_info()[0], sys.exc_info()[1], sys.exc_info[2])
|
||||
Binary file not shown.
Executable
+9
@@ -0,0 +1,9 @@
|
||||
def __bootstrap__():
|
||||
global __bootstrap__, __loader__, __file__
|
||||
import sys, pkg_resources, importlib.util
|
||||
__file__ = pkg_resources.resource_filename(__name__, 'libgenders.cpython-311-x86_64-linux-gnu.so')
|
||||
__loader__ = None; del __bootstrap__, __loader__
|
||||
spec = importlib.util.spec_from_file_location(__name__,__file__)
|
||||
mod = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(mod)
|
||||
__bootstrap__()
|
||||
+471
@@ -0,0 +1,471 @@
|
||||
#############################################################################
|
||||
# $Id: Genders.pm.in,v 1.9 2010-02-02 00:04:34 chu11 Exp $
|
||||
#############################################################################
|
||||
# Copyright (C) 2007-2019 Lawrence Livermore National Security, LLC.
|
||||
# Copyright (C) 2001-2007 The Regents of the University of California.
|
||||
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
||||
# Written by Jim Garlick <garlick@llnl.gov> and Albert Chu <chu11@llnl.gov>.
|
||||
# UCRL-CODE-2003-004.
|
||||
#
|
||||
# This file is part of Genders, a cluster configuration database.
|
||||
# For details, see <http://www.llnl.gov/linux/genders/>.
|
||||
#
|
||||
# Genders is free software; you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free
|
||||
# Software Foundation; either version 2 of the License, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# Genders is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with Genders. If not, see <http://www.gnu.org/licenses/>.
|
||||
#############################################################################
|
||||
|
||||
package Genders;
|
||||
|
||||
use strict;
|
||||
use Libgenders;
|
||||
|
||||
our $VERSION = "0.03";
|
||||
|
||||
require Exporter;
|
||||
our @ISA = qw(Exporter);
|
||||
our @EXPORT_OK = qw(&_errormsg $GENDERS_DEFAULT_FILE $debugkey $handlekey);
|
||||
our %EXPORT_TAGS = ( 'all' => [ qw(&_errormsg
|
||||
$GENDERS_DEFAULT_FILE
|
||||
$debugkey
|
||||
$handlekey) ] );
|
||||
|
||||
our $GENDERS_DEFAULT_FILE = Libgenders->GENDERS_DEFAULT_FILE;
|
||||
our $debugkey = "_DEBUG";
|
||||
our $handlekey = "_HANDLE";
|
||||
|
||||
sub _errormsg {
|
||||
my $self = shift;
|
||||
my $msg = shift;
|
||||
my $str;
|
||||
|
||||
if ($self->{$debugkey}) {
|
||||
$str = $self->{$handlekey}->genders_errormsg();
|
||||
print STDERR "Error: $msg, $str\n";
|
||||
}
|
||||
}
|
||||
|
||||
sub new {
|
||||
my $proto = shift;
|
||||
my $class = ref($proto) || $proto;
|
||||
my $filename = shift;
|
||||
my $self = {};
|
||||
my $handle;
|
||||
my $rv;
|
||||
|
||||
$self->{$debugkey} = 0;
|
||||
|
||||
$handle = Libgenders->genders_handle_create();
|
||||
if (!defined($handle)) {
|
||||
_errormsg($self, "genders_handle_create()");
|
||||
return undef;
|
||||
}
|
||||
|
||||
$self->{$handlekey} = $handle;
|
||||
|
||||
$rv = $self->{$handlekey}->genders_load_data($filename);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_load_data()");
|
||||
return undef;
|
||||
}
|
||||
|
||||
bless ($self, $class);
|
||||
return $self;
|
||||
}
|
||||
|
||||
sub debug {
|
||||
my $self = shift;
|
||||
my $num = shift;
|
||||
|
||||
if (ref($self)) {
|
||||
if (defined $num) {
|
||||
$self->{$debugkey} = $num;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub getnodename {
|
||||
my $self = shift;
|
||||
my $node;
|
||||
|
||||
if (ref($self)) {
|
||||
$node = $self->{$handlekey}->genders_getnodename();
|
||||
if (!defined($node)) {
|
||||
_errormsg($self, "genders_getnodename()");
|
||||
return "";
|
||||
}
|
||||
return $node;
|
||||
}
|
||||
else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
sub getnodes {
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
my $val = shift;
|
||||
my $nodes;
|
||||
|
||||
if (ref($self)) {
|
||||
$nodes = $self->{$handlekey}->genders_getnodes($attr, $val);
|
||||
if (!defined($nodes)) {
|
||||
_errormsg($self, "genders_getnodes()");
|
||||
return ();
|
||||
}
|
||||
return @$nodes;
|
||||
}
|
||||
else {
|
||||
return ();
|
||||
}
|
||||
}
|
||||
|
||||
sub getattr {
|
||||
my $self = shift;
|
||||
my $node = shift;
|
||||
my $attrsvals;
|
||||
my $attrs;
|
||||
|
||||
if (ref($self)) {
|
||||
$attrsvals = $self->{$handlekey}->genders_getattr($node);
|
||||
if (!defined($attrsvals)) {
|
||||
_errormsg($self, "genders_getattr()");
|
||||
return ();
|
||||
}
|
||||
($attrs) = @$attrsvals;
|
||||
return @$attrs;
|
||||
}
|
||||
else {
|
||||
return ();
|
||||
}
|
||||
}
|
||||
|
||||
sub getattrval {
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
my $node = shift;
|
||||
my $val;
|
||||
|
||||
if (ref($self)) {
|
||||
$val = $self->{$handlekey}->genders_getattrval($attr, $node);
|
||||
if (!defined($val)) {
|
||||
_errormsg($self, "genders_getattrval()");
|
||||
return "";
|
||||
}
|
||||
return $val;
|
||||
}
|
||||
else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
sub getattr_all {
|
||||
my $self = shift;
|
||||
my $attrs;
|
||||
|
||||
if (ref($self)) {
|
||||
$attrs = $self->{$handlekey}->genders_getattr_all();
|
||||
if (!defined($attrs)) {
|
||||
_errormsg($self, "genders_getattr_all()");
|
||||
return ();
|
||||
}
|
||||
return @$attrs;
|
||||
}
|
||||
else {
|
||||
return ();
|
||||
}
|
||||
}
|
||||
|
||||
sub testattr {
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
my $node = shift;
|
||||
my $rv;
|
||||
|
||||
if (ref($self)) {
|
||||
$rv = $self->{$handlekey}->genders_testattr($attr, $node);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_testattr()");
|
||||
return 0;
|
||||
}
|
||||
return $rv;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
sub testattrval {
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
my $val = shift;
|
||||
my $node = shift;
|
||||
my $rv;
|
||||
|
||||
if (ref($self)) {
|
||||
$rv = $self->{$handlekey}->genders_testattrval($attr, $val, $node);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_testattrval()");
|
||||
return 0;
|
||||
}
|
||||
return $rv;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
sub isnode {
|
||||
my $self = shift;
|
||||
my $node = shift;
|
||||
my $rv;
|
||||
|
||||
if (ref($self)) {
|
||||
$rv = $self->{$handlekey}->genders_isnode($node);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_isnode()");
|
||||
return 0;
|
||||
}
|
||||
return $rv;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
sub isattr{
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
my $rv;
|
||||
|
||||
if (ref($self)) {
|
||||
$rv = $self->{$handlekey}->genders_isattr($attr);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_isattr()");
|
||||
return 0;
|
||||
}
|
||||
return $rv;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
sub isattrval {
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
my $val = shift;
|
||||
my $rv;
|
||||
|
||||
if (ref($self)) {
|
||||
$rv = $self->{$handlekey}->genders_isattrval($attr, $val);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_isattrval()");
|
||||
return 0;
|
||||
}
|
||||
return $rv;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
sub index_attrvals {
|
||||
my $self = shift;
|
||||
my $attr = shift;
|
||||
|
||||
if (ref($self)) {
|
||||
$self->{$handlekey}->genders_index_attrvals($attr);
|
||||
}
|
||||
}
|
||||
|
||||
sub query {
|
||||
my $self = shift;
|
||||
my $query = shift;
|
||||
my $nodes;
|
||||
|
||||
if (ref($self)) {
|
||||
$nodes = $self->{$handlekey}->genders_query($query);
|
||||
if (!defined($nodes)) {
|
||||
_errormsg($self, "genders_query()");
|
||||
return ();
|
||||
}
|
||||
return @$nodes;
|
||||
}
|
||||
else {
|
||||
return ();
|
||||
}
|
||||
}
|
||||
|
||||
sub testquery {
|
||||
my $self = shift;
|
||||
my $query = shift;
|
||||
my $node = shift;
|
||||
my $rv;
|
||||
|
||||
if (ref($self)) {
|
||||
$rv = $self->{$handlekey}->genders_testquery($query, $node);
|
||||
if ($rv < 0) {
|
||||
_errormsg($self, "genders_testquery()");
|
||||
return 0;
|
||||
}
|
||||
return $rv;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
__END__
|
||||
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Genders - Perl library for querying a genders file
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use Genders;
|
||||
|
||||
$Genders::GENDERS_DEFAULT_FILE;
|
||||
|
||||
$obj = Genders->new([$filename])
|
||||
|
||||
$obj->debug($num)
|
||||
|
||||
$obj->getnodename()
|
||||
$obj->getnodes([$attr, [$val]])
|
||||
$obj->getattr([$node])
|
||||
$obj->getattr_all()
|
||||
$obj->getattrval($attr, [$node])
|
||||
|
||||
$obj->testattr($attr, [$node])
|
||||
$obj->testattrval($attr, $val, [$node])
|
||||
|
||||
$obj->isnode([$node])
|
||||
$obj->isattr($attr)
|
||||
$obj->isattrval($attr, $val)
|
||||
|
||||
$obj->index_attrvals($attr)
|
||||
|
||||
$obj->query($query)
|
||||
$obj->testquery($query, [$node])
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This package provides a perl interface for querying a genders file.
|
||||
|
||||
=over 4
|
||||
|
||||
=item B<Genders-E<gt>new([$filename])>
|
||||
|
||||
Creates a Genders object and load genders data from the specified
|
||||
file. If the genders file is not specified, the default genders file
|
||||
will be used. Returns undef if file cannot be read.
|
||||
|
||||
=item B<$obj-E<gt>debug($num)>
|
||||
|
||||
Set the debug level in the genders object. By default, the debug
|
||||
level is 0 and all debugging is turned off. To turn it on, set the
|
||||
level to 1.
|
||||
|
||||
=item B<$obj-E<gt>getnodename()>
|
||||
|
||||
Returns the name of the current node.
|
||||
|
||||
=item B<$obj-E<gt>getnodes([$attr, [$val]])>
|
||||
|
||||
Returns a list of nodes with the specified attribute and value. If a
|
||||
value is not specified only the attribute is considered. If the
|
||||
attribute is not specified, all nodes listed in the genders file are
|
||||
returned.
|
||||
|
||||
=item B<$obj-E<gt>getattr([$node])>
|
||||
|
||||
Returns a list of attributes for the specified node. If the node
|
||||
is not specified, the local node's attributes returned.
|
||||
|
||||
=item B<$obj-E<gt>getattr_all()>
|
||||
|
||||
Returns a list of all attributes listed in the genders file.
|
||||
|
||||
=item B<$obj-E<gt>getattrval($attr, [$node])>
|
||||
|
||||
Returns the value of the specified attribute for the specified node.
|
||||
If the attribute does not exist or the attribute has no value, an
|
||||
empty string is returned. If the node is not specified, the local
|
||||
node's attribute value is returned.
|
||||
|
||||
=item B<$obj-E<gt>testattr($attr, [$node])>
|
||||
|
||||
Returns 1 if the specified node has the specified attribute, 0 if it
|
||||
does not. If the node is not specified, the local node is checked.
|
||||
|
||||
=item B<$obj-E<gt>testattrval($attr, $val, [$node])>
|
||||
|
||||
Returns 1 if the specified node has the specified attribute and value,
|
||||
0 if it does not. If the node is not specified, the local node is
|
||||
checked.
|
||||
|
||||
=item B<$obj-E<gt>isnode([$node])>
|
||||
|
||||
Returns 1 if the specified node is listed in the genders file, 0 if it
|
||||
is not. If the node is not specified, the local node is checked.
|
||||
|
||||
=item B<$obj-E<gt>isattr($attr)>
|
||||
|
||||
Returns 1 if the specified attribute is listed in the genders file, 0
|
||||
if it is not.
|
||||
|
||||
=item B<$obj-E<gt>isattrval($attr, $val)>
|
||||
|
||||
Returns 1 if the specified attribute is equal to the specified value
|
||||
for some node in the genders file, 0 if it is not.
|
||||
|
||||
=item B<$obj-E<gt>index_attrvals($attr)>
|
||||
|
||||
Internally indexes genders attribute values for faster search times.
|
||||
Subsequent calls with a different attribute will overwrite earlier
|
||||
indexes.
|
||||
|
||||
=item B<$obj-E<gt>query($query)>
|
||||
|
||||
Returns a list of nodes specified by a genders query. A genders query
|
||||
is based on the union, intersection, set difference, or complement
|
||||
between genders attributes and values. Union is represented by two
|
||||
pipe symbols ('||'), intersection by two ampersand symbols ('&&'),
|
||||
difference by two minus symbols ('--'), and complement by a tilde
|
||||
('~') Operations are performed from left to right. Parentheses may be
|
||||
used to change the order of operations. For example, the following
|
||||
query would retrieve all nodes other than management or login nodes:
|
||||
"~(mgmt||login)". If the query is not specified, all nodes listed
|
||||
in the genders file are returned.
|
||||
|
||||
=item B<$obj-E<gt>testquery($query, [$node])>
|
||||
|
||||
Returns 1 if the specified node meets the conditions of the specified
|
||||
query, 0 if it does not. If the node is not specified, the local node
|
||||
is checked.
|
||||
|
||||
=back
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Albert Chu E<lt>chu11@llnl.govE<gt>
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<Libgenders>.
|
||||
|
||||
L<libgenders>.
|
||||
+307
@@ -0,0 +1,307 @@
|
||||
#############################################################################
|
||||
# $Id: Libgenders.pm.in,v 1.7 2010-02-02 00:04:34 chu11 Exp $
|
||||
#############################################################################
|
||||
# Copyright (C) 2007-2019 Lawrence Livermore National Security, LLC.
|
||||
# Copyright (C) 2001-2007 The Regents of the University of California.
|
||||
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
||||
# Written by Jim Garlick <garlick@llnl.gov> and Albert Chu <chu11@llnl.gov>.
|
||||
# UCRL-CODE-2003-004.
|
||||
#
|
||||
# This file is part of Genders, a cluster configuration database.
|
||||
# For details, see <http://www.llnl.gov/linux/genders/>.
|
||||
#
|
||||
# Genders is free software; you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free
|
||||
# Software Foundation; either version 2 of the License, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# Genders is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with Genders. If not, see <http://www.gnu.org/licenses/>.
|
||||
#############################################################################
|
||||
|
||||
package Libgenders;
|
||||
|
||||
use 5.006;
|
||||
use strict;
|
||||
use warnings;
|
||||
use Carp;
|
||||
|
||||
require Exporter;
|
||||
require DynaLoader;
|
||||
|
||||
our @ISA = qw(Exporter DynaLoader);
|
||||
|
||||
our $VERSION = '0.03';
|
||||
|
||||
bootstrap Libgenders $VERSION;
|
||||
|
||||
1;
|
||||
|
||||
__END__
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Libgenders - Perl extension for libgenders
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use Libgenders;
|
||||
|
||||
Libgenders::GENDERS_ERR_SUCCESS
|
||||
Libgenders::GENDERS_ERR_NULLHANDLE
|
||||
Libgenders::GENDERS_ERR_OPEN
|
||||
Libgenders::GENDERS_ERR_READ
|
||||
Libgenders::GENDERS_ERR_PARSE
|
||||
Libgenders::GENDERS_ERR_NOTLOADED
|
||||
Libgenders::GENDERS_ERR_ISLOADED
|
||||
Libgenders::GENDERS_ERR_OVERFLOW
|
||||
Libgenders::GENDERS_ERR_PARAMETERS
|
||||
Libgenders::GENDERS_ERR_NULLPTR
|
||||
Libgenders::GENDERS_ERR_NOTFOUND
|
||||
Libgenders::GENDERS_ERR_SYNTAX
|
||||
Libgenders::GENDERS_ERR_QUERYINPUT
|
||||
Libgenders::GENDERS_ERR_OUTMEM
|
||||
Libgenders::GENDERS_ERR_MAGIC
|
||||
Libgenders::GENDERS_ERR_INTERNAL
|
||||
Libgenders::GENDERS_ERR_ERRNUMRANGE
|
||||
Libgenders::GENDERS_DEFAULT_FILE
|
||||
|
||||
$handle = Libgenders->genders_handle_create();
|
||||
$handle->genders_load_data([$filename]);
|
||||
|
||||
$handle->genders_errnum()
|
||||
$handle->genders_strerror($errnum)
|
||||
$handle->genders_errormsg()
|
||||
$handle->genders_perror($msg)
|
||||
|
||||
$handle->genders_getnumnodes()
|
||||
$handle->genders_getnumattrs()
|
||||
$handle->genders_getnodename()
|
||||
|
||||
$handle->genders_getnodes([$attr, [$val]])
|
||||
$handle->genders_getattr([$node])
|
||||
$handle->genders_getattr_all()
|
||||
$handle->genders_getattrval($attr, [$node])
|
||||
$handle->genders_testattr($attr, [$node])
|
||||
$handle->genders_testattrval($attr, $val, [$node])
|
||||
|
||||
$handle->genders_isnode([$node])
|
||||
$handle->genders_isattr($attr)
|
||||
$handle->genders_isattrval($attr, $val)
|
||||
|
||||
$handle->genders_index_attrvals($attr)
|
||||
|
||||
$handle->genders_query([$query])
|
||||
$handle->genders_testquery($query, [$node])
|
||||
|
||||
$handle->genders_parse([$filename]);
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This package provides a perl interface to the genders C API (see
|
||||
libgenders(3)). The perl interface is simliar to the genders C API,
|
||||
with some necessary changes due to the inherent differences between C
|
||||
and perl. Some of the functions from the C API cannot be accessed via
|
||||
this perl interface, some new functions were created, the behavior of
|
||||
some functions was modified, and the parameters passed into some
|
||||
functions have been changed. Please read the instructions below so to
|
||||
understand how to use the Libgenders package.
|
||||
|
||||
=head2 Initialization
|
||||
|
||||
=over 4
|
||||
|
||||
=item B<Libgenders-E<gt>genders_handle_create>
|
||||
|
||||
Returns a genders object on success, undef on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_load_data([$filename])>
|
||||
|
||||
Opens, reads, and parses the genders file specified by $filename. If
|
||||
$filename is not specified, the default genders file is parsed.
|
||||
Returns 0 on success, -1 on error.
|
||||
|
||||
=back
|
||||
|
||||
=head2 Error Messages
|
||||
|
||||
Similarly to the C API, an error code is stored in the genders object
|
||||
after an error has occurred. The following can be used to retrieve
|
||||
the error code and output information about the error.
|
||||
|
||||
=over 4
|
||||
|
||||
=item B<$handle-E<gt>genders_errnum()>
|
||||
|
||||
Returns the error code most recently set.
|
||||
|
||||
=item B<$handle-E<gt>genders_strerror($errnum)>
|
||||
|
||||
Returns a string describing the error code $errnum.
|
||||
|
||||
=item B<$handle-E<gt>genders_errormsg()>
|
||||
|
||||
Returns a string describing the most recent error.
|
||||
|
||||
=item B<$handle-E<gt>genders_perror([$msg])>
|
||||
|
||||
Outputs $msg and a string describing the most recent error to standard
|
||||
error. If $msg is not specified, only a description of the most
|
||||
recent error will be output to standard error.
|
||||
|
||||
=back
|
||||
|
||||
=head2 Utility Functions
|
||||
|
||||
=over 4
|
||||
|
||||
=item B<$handle-E<gt>genders_getnumnodes()>
|
||||
|
||||
Returns the number of nodes listed in the genders file. Returns -1 on
|
||||
error.
|
||||
|
||||
=item B<$handle-E<gt>genders_getnumattrs()>
|
||||
|
||||
Returns the number of attributes listed in the genders file. Returns
|
||||
-1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_getnodename()>
|
||||
|
||||
Returns the shortened hostname of the current node. Returns undef on
|
||||
error.
|
||||
|
||||
=back
|
||||
|
||||
=head2 Parsing Functions
|
||||
|
||||
=over 4
|
||||
|
||||
=item B<$handle-E<gt>genders_getnodes([$attr, [$val]])>
|
||||
|
||||
Returns a reference to a list of nodes that have the specified
|
||||
attribute and value. If $val is not specified, only $attr is
|
||||
considered. If both $attr and $val are not specified, all nodes
|
||||
listed in the genders file are returned. Returns undef on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_getattr([$node])>
|
||||
|
||||
Returns a reference to an array that holds references to two lists.
|
||||
The first list is a reference to an array of attributes for the
|
||||
specified node. The second list is a reference to an array of values
|
||||
for the specified node. If $node is not specified, the local node is
|
||||
used. Returns undef on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_getattr_all()>
|
||||
|
||||
Returns a reference to a list of all the attributes listed in the
|
||||
genders file. Returns undef on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_getattrval($attr, [$node])>
|
||||
|
||||
Returns the value of an attribute listed in a node. Returns the empty
|
||||
string if the attribute has no value. If $node is not specified,
|
||||
local node is used. Returns undef on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_testattr($attr, [$node])>
|
||||
|
||||
Tests if a node has a specified attribute. If $node is not specified,
|
||||
local node is used. Returns 1 if the node contains the attribute, 0
|
||||
if not, -1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_testattrval($attr, $val, [$node])>
|
||||
|
||||
Tests if a node has a specified attribute=value pair. If $node is not
|
||||
specified, local node is used. Returns 1 if the node contains the
|
||||
attribute=value pair, 0 if not, -1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_isnode([$node])>
|
||||
|
||||
Tests if a node is listed in the genders file. If $node is not
|
||||
specified, local node is used. Returns 1 if the node is listed, 0 if
|
||||
it is not, -1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_isattr($attr)>
|
||||
|
||||
Tests if the attribute $attr is listed in the genders file. Returns 1
|
||||
if the attribute is listed, 0 if it is not, -1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_isattrval($attr, $val)>
|
||||
|
||||
Tests if the attribute=value pair is listed in the genders file.
|
||||
Returns 1 if the pair is listed, 0 if it is not, -1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_index_attrvals($attr)>
|
||||
|
||||
Internally adds indexing to decrease search times for genders
|
||||
attribute value combinations. Will specifically aid performance of
|
||||
the genders_getnodes and genders_isattrval functions. Only one
|
||||
attribute can be indexed at a time. Subsequent calls to this function
|
||||
with a different attribute will overwrite earlier indexes.
|
||||
|
||||
=item B<$handle-E<gt>genders_query([$query])>
|
||||
|
||||
Returns a reference to a list of nodes specified by a genders query.
|
||||
A genders query is based on the union, intersection, set difference,
|
||||
or complement between genders attributes and values. Union is
|
||||
represented by two pipe symbols ('||'), intersection by two ampersand
|
||||
symbols ('&&'), difference by two minus symbols ('--'), and complement
|
||||
by a tilde ('~') Operations are performed from left to right.
|
||||
Parentheses may be used to change the order of operations. For
|
||||
example, the following query would retrieve all nodes other than
|
||||
management or login nodes: "~(mgmt||login)". If $query is not
|
||||
specified, all nodes listed in the genders file are returned. Returns
|
||||
undef on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_testquery($query, [$node])>
|
||||
|
||||
Tests if a node meets the conditions specified in the query. If $node
|
||||
is not specified, local node is used. Returns 1 if the node is
|
||||
contained within the query, 0 if not, -1 on error.
|
||||
|
||||
=item B<$handle-E<gt>genders_parse([$filename])>
|
||||
|
||||
Parse a genders file and output parse errors to standard error. If
|
||||
$filename is not specified, the default genders file is parsed.
|
||||
Returns the number of errors (0 if no parse errors were found) on
|
||||
success, -1 on error.
|
||||
|
||||
=back
|
||||
|
||||
=head2 Error Codes/Constants
|
||||
|
||||
The same error codes and constants listed in /usr/include/genders.h
|
||||
can be accessed through the following functions:
|
||||
|
||||
Libgenders::GENDERS_ERR_SUCCESS
|
||||
Libgenders::GENDERS_ERR_NULLHANDLE
|
||||
Libgenders::GENDERS_ERR_OPEN
|
||||
Libgenders::GENDERS_ERR_READ
|
||||
Libgenders::GENDERS_ERR_PARSE
|
||||
Libgenders::GENDERS_ERR_NOTLOADED
|
||||
Libgenders::GENDERS_ERR_ISLOADED
|
||||
Libgenders::GENDERS_ERR_OVERFLOW
|
||||
Libgenders::GENDERS_ERR_PARAMETERS
|
||||
Libgenders::GENDERS_ERR_NULLPTR
|
||||
Libgenders::GENDERS_ERR_NOTFOUND
|
||||
Libgenders::GENDERS_ERR_OUTMEM
|
||||
Libgenders::GENDERS_ERR_SYNTAX
|
||||
Libgenders::GENDERS_ERR_QUERYINPUT
|
||||
Libgenders::GENDERS_ERR_MAGIC
|
||||
Libgenders::GENDERS_ERR_INTERNAL
|
||||
Libgenders::GENDERS_ERR_ERRNUMRANGE
|
||||
Libgenders::GENDERS_DEFAULT_FILE
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Albert Chu E<lt>chu11@llnl.govE<gt>
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<libgenders>
|
||||
|
||||
=cut
|
||||
Binary file not shown.
@@ -0,0 +1,111 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>All Classes and Interfaces</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="class index">
|
||||
<meta name="generator" content="javadoc/AllClassesIndexWriter">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="all-classes-index-page">
|
||||
<script type="text/javascript">var evenRowColor = "even-row-color";
|
||||
var oddRowColor = "odd-row-color";
|
||||
var tableTab = "table-tab";
|
||||
var activeTableTab = "active-table-tab";
|
||||
var pathtoroot = "./";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="gov/llnl/lc/chaos/package-summary.html">Package</a></li>
|
||||
<li>Class</li>
|
||||
<li><a href="overview-tree.html">Tree</a></li>
|
||||
<li><a href="index-all.html">Index</a></li>
|
||||
<li><a href="help-doc.html#all-classes">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1 title="All Classes and Interfaces" class="title">All Classes and Interfaces</h1>
|
||||
</div>
|
||||
<div id="all-classes-table">
|
||||
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="all-classes-table-tab0" role="tab" aria-selected="true" aria-controls="all-classes-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table', 2)" class="active-table-tab">All Classes and Interfaces</button><button id="all-classes-table-tab2" role="tab" aria-selected="false" aria-controls="all-classes-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table-tab2', 2)" class="table-tab">Classes</button><button id="all-classes-table-tab5" role="tab" aria-selected="false" aria-controls="all-classes-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table-tab5', 2)" class="table-tab">Exceptions</button></div>
|
||||
<div id="all-classes-table.tabpanel" role="tabpanel">
|
||||
<div class="summary-table two-column-summary" aria-labelledby="all-classes-table-tab0">
|
||||
<div class="table-header col-first">Class</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></div>
|
||||
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
|
||||
<div class="block">Java JNI extensions wrapper around libgenders C library.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></div>
|
||||
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Exception class, parent to all specific Genders Exceptions.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionInternal.html" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a></div>
|
||||
<div class="col-last even-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Internal Exception, all other errors that may occur due to
|
||||
system issues.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionNotfound.html" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a></div>
|
||||
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Notfound Exception, indicates a node, attribute, or other
|
||||
input cannot be found.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionOpen.html" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a></div>
|
||||
<div class="col-last even-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Open Exception, indicates a genders database cannot be
|
||||
open, possiblity due to permissions or an incorrect filename.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionParameters.html" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a></div>
|
||||
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Parameters Exception, indicates an invalid input</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionParse.html" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a></div>
|
||||
<div class="col-last even-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Parse Exception, indicates a parse error in the genders
|
||||
database.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionRead.html" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a></div>
|
||||
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Read Exception, indicates a read error on the genders
|
||||
database</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="gov/llnl/lc/chaos/GendersExceptionSyntax.html" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a></div>
|
||||
<div class="col-last even-row-color all-classes-table all-classes-table-tab5">
|
||||
<div class="block">Genders Syntax Exception, indicates a syntax error in a genders
|
||||
query.</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,63 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>All Packages</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="package index">
|
||||
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="all-packages-index-page">
|
||||
<script type="text/javascript">var pathtoroot = "./";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="gov/llnl/lc/chaos/package-summary.html">Package</a></li>
|
||||
<li>Class</li>
|
||||
<li><a href="overview-tree.html">Tree</a></li>
|
||||
<li><a href="index-all.html">Index</a></li>
|
||||
<li><a href="help-doc.html#all-packages">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1 title="All&nbsp;Packages" class="title">All Packages</h1>
|
||||
</div>
|
||||
<div class="caption"><span>Package Summary</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Package</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-first even-row-color"><a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
gov.llnl.lc.chaos
|
||||
@@ -0,0 +1,592 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>Genders</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: Genders">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var evenRowColor = "even-row-color";
|
||||
var oddRowColor = "odd-row-color";
|
||||
var tableTab = "table-tab";
|
||||
var activeTableTab = "active-table-tab";
|
||||
var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li><a href="#method-detail">Method</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class Genders" class="title">Class Genders</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.Genders</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">Genders</span>
|
||||
<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
|
||||
<div class="block">Java JNI extensions wrapper around libgenders C library. Most
|
||||
library functions behave similarly to C api functions with minor
|
||||
exceptions documented below.</div>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">Genders</a>()</code></div>
|
||||
<div class="col-last even-row-color">
|
||||
<div class="block">Creates a Genders object, loading the default genders database</div>
|
||||
</div>
|
||||
<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">Genders</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> filename)</code></div>
|
||||
<div class="col-last odd-row-color">
|
||||
<div class="block">Creates a Genders object, loading the specified genders database</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div id="method-summary-table">
|
||||
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
|
||||
<div id="method-summary-table.tabpanel" role="tabpanel">
|
||||
<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
|
||||
<div class="table-header col-first">Modifier and Type</div>
|
||||
<div class="table-header col-second">Method</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#cleanup()" class="member-name-link">cleanup</a>()</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Cleans up allocated memory.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getattr()" class="member-name-link">getattr</a>()</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns all the attributes of the node you are running on</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getattr(java.lang.String)" class="member-name-link">getattr</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns all the attributes of the specified node</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getattr_all()" class="member-name-link">getattr_all</a>()</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns all of the attributes in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getattrval(java.lang.String)" class="member-name-link">getattrval</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns the value of the specified attribute on the current
|
||||
node you are running on</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getattrval(java.lang.String,java.lang.String)" class="member-name-link">getattrval</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns the value of the specified attribute on the specified
|
||||
node.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getmaxattrs()" class="member-name-link">getmaxattrs</a>()</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns maximum number of attributes of any one node parsed in
|
||||
the genders database</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getnodename()" class="member-name-link">getnodename</a>()</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns the current node you are on, in shortened hostname
|
||||
format.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getnodes()" class="member-name-link">getnodes</a>()</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns all the nodes in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getnodes(java.lang.String)" class="member-name-link">getnodes</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns all the nodes with the specified attribute</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getnodes(java.lang.String,java.lang.String)" class="member-name-link">getnodes</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns all the nodes with the specified attribute and value</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getnumattrs()" class="member-name-link">getnumattrs</a>()</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns number of attributes parsed in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getnumnodes()" class="member-name-link">getnumnodes</a>()</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns number of nodes parsed in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isattr(java.lang.String)" class="member-name-link">isattr</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the specified attribute exists in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isattrval(java.lang.String,java.lang.String)" class="member-name-link">isattrval</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the specified value exists in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isnode(java.lang.String)" class="member-name-link">isnode</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the specified node exists in the genders database</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#query(java.lang.String)" class="member-name-link">query</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> query)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Returns nodes specified via the specified query.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testattr(java.lang.String)" class="member-name-link">testattr</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the current node has the specified attribute</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testattr(java.lang.String,java.lang.String)" class="member-name-link">testattr</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the specified node has the specified attribute</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testattrval(java.lang.String,java.lang.String)" class="member-name-link">testattrval</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the current node has the specified attribute and value.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testattrval(java.lang.String,java.lang.String,java.lang.String)" class="member-name-link">testattrval</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Tests if the specified node has the specified attribute and value.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testquery(java.lang.String)" class="member-name-link">testquery</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> query)</code></div>
|
||||
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Test if the current node meets the conditions of the specified query.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
||||
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testquery(java.lang.String,java.lang.String)" class="member-name-link">testquery</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> query)</code></div>
|
||||
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
||||
<div class="block">Test if the specified node meets the conditions of the specified query.</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>()">
|
||||
<h3>Genders</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">Genders</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Creates a Genders object, loading the default genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>Genders</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">Genders</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> filename)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Creates a Genders object, loading the specified genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<li>
|
||||
<section class="method-details" id="method-detail">
|
||||
<h2>Method Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="getnumnodes()">
|
||||
<h3>getnumnodes</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">int</span> <span class="element-name">getnumnodes</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns number of nodes parsed in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getnumattrs()">
|
||||
<h3>getnumattrs</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">int</span> <span class="element-name">getnumattrs</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns number of attributes parsed in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getmaxattrs()">
|
||||
<h3>getmaxattrs</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">int</span> <span class="element-name">getmaxattrs</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns maximum number of attributes of any one node parsed in
|
||||
the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getnodename()">
|
||||
<h3>getnodename</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">getnodename</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns the current node you are on, in shortened hostname
|
||||
format.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getnodes()">
|
||||
<h3>getnodes</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">getnodes</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns all the nodes in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getnodes(java.lang.String)">
|
||||
<h3>getnodes</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">getnodes</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns all the nodes with the specified attribute</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getnodes(java.lang.String,java.lang.String)">
|
||||
<h3>getnodes</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">getnodes</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns all the nodes with the specified attribute and value</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getattr()">
|
||||
<h3>getattr</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">getattr</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns all the attributes of the node you are running on</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getattr(java.lang.String)">
|
||||
<h3>getattr</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">getattr</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns all the attributes of the specified node</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getattr_all()">
|
||||
<h3>getattr_all</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">getattr_all</span>()
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns all of the attributes in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getattrval(java.lang.String)">
|
||||
<h3>getattrval</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">getattrval</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns the value of the specified attribute on the current
|
||||
node you are running on</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="getattrval(java.lang.String,java.lang.String)">
|
||||
<h3>getattrval</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">getattrval</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns the value of the specified attribute on the specified
|
||||
node. May be an empty string if the attribute contains no
|
||||
value.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="testattr(java.lang.String)">
|
||||
<h3>testattr</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">testattr</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the current node has the specified attribute</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="testattr(java.lang.String,java.lang.String)">
|
||||
<h3>testattr</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">testattr</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the specified node has the specified attribute</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="testattrval(java.lang.String,java.lang.String)">
|
||||
<h3>testattrval</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">testattrval</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the current node has the specified attribute and value.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="testattrval(java.lang.String,java.lang.String,java.lang.String)">
|
||||
<h3>testattrval</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">testattrval</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the specified node has the specified attribute and value.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="isnode(java.lang.String)">
|
||||
<h3>isnode</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">isnode</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the specified node exists in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="isattr(java.lang.String)">
|
||||
<h3>isattr</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">isattr</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the specified attribute exists in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="isattrval(java.lang.String,java.lang.String)">
|
||||
<h3>isattrval</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">isattrval</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> attr,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> val)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Tests if the specified value exists in the genders database</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="query(java.lang.String)">
|
||||
<h3>query</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]</span> <span class="element-name">query</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> query)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Returns nodes specified via the specified query. Signify union
|
||||
with '||', intersection with '&&', * difference with '--', and
|
||||
complement with '~'. Operations are performed left to
|
||||
right. Parentheses can be used to change the order of
|
||||
operations.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="testquery(java.lang.String)">
|
||||
<h3>testquery</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">testquery</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> query)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Test if the current node meets the conditions of the specified query.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="testquery(java.lang.String,java.lang.String)">
|
||||
<h3>testquery</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">testquery</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> node,
|
||||
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> query)</span>
|
||||
throws <span class="exceptions"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Test if the specified node meets the conditions of the specified query.</div>
|
||||
<dl class="notes">
|
||||
<dt>Throws:</dt>
|
||||
<dd><code><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></code> - on error</dd>
|
||||
</dl>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="detail" id="cleanup()">
|
||||
<h3>cleanup</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">void</span> <span class="element-name">cleanup</span>()</div>
|
||||
<div class="block">Cleans up allocated memory. Must be called to free memory from
|
||||
underlying calls. After this method is called, all genders
|
||||
methods above cannot be called and will result in errors.</div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+150
@@ -0,0 +1,150 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersException</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersException">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersException" class="title">Class GendersException</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersException</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<dl class="notes">
|
||||
<dt>Direct Known Subclasses:</dt>
|
||||
<dd><code><a href="GendersExceptionInternal.html" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a></code>, <code><a href="GendersExceptionNotfound.html" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a></code>, <code><a href="GendersExceptionOpen.html" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a></code>, <code><a href="GendersExceptionParameters.html" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a></code>, <code><a href="GendersExceptionParse.html" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a></code>, <code><a href="GendersExceptionRead.html" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a></code>, <code><a href="GendersExceptionSyntax.html" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersException</span>
|
||||
<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">Exception</a></span></div>
|
||||
<div class="block">Genders Exception class, parent to all specific Genders Exceptions.</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersException">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersException</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersException</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersException</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Executable
+149
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionInternal</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionInternal">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionInternal" class="title">Class GendersExceptionInternal</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionInternal</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionInternal</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Internal Exception, all other errors that may occur due to
|
||||
system issues.</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionInternal">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionInternal</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionInternal</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionInternal</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Executable
+149
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionNotfound</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionNotfound">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionNotfound" class="title">Class GendersExceptionNotfound</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionNotfound</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionNotfound</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Notfound Exception, indicates a node, attribute, or other
|
||||
input cannot be found.</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionNotfound">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionNotfound</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionNotfound</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionNotfound</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+149
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionOpen</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionOpen">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionOpen" class="title">Class GendersExceptionOpen</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionOpen</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionOpen</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Open Exception, indicates a genders database cannot be
|
||||
open, possiblity due to permissions or an incorrect filename.</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionOpen">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionOpen</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionOpen</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionOpen</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Executable
+148
@@ -0,0 +1,148 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionParameters</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionParameters">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionParameters" class="title">Class GendersExceptionParameters</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionParameters</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionParameters</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Parameters Exception, indicates an invalid input</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionParameters">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionParameters</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionParameters</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionParameters</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+149
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionParse</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionParse">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionParse" class="title">Class GendersExceptionParse</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionParse</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionParse</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Parse Exception, indicates a parse error in the genders
|
||||
database.</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionParse">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionParse</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionParse</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionParse</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+149
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionRead</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionRead">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionRead" class="title">Class GendersExceptionRead</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionRead</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionRead</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Read Exception, indicates a read error on the genders
|
||||
database</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionRead">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionRead</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionRead</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionRead</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+149
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>GendersExceptionSyntax</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos, class: GendersExceptionSyntax">
|
||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="class-declaration-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li class="nav-bar-cell1-rev">Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#class">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Summary: </li>
|
||||
<li>Nested | </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-summary">Constr</a> | </li>
|
||||
<li><a href="#method-summary">Method</a></li>
|
||||
</ul>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Detail: </li>
|
||||
<li>Field | </li>
|
||||
<li><a href="#constructor-detail">Constr</a> | </li>
|
||||
<li>Method</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">gov.llnl.lc.chaos</a></div>
|
||||
<h1 title="Class GendersExceptionSyntax" class="title">Class GendersExceptionSyntax</h1>
|
||||
</div>
|
||||
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">java.lang.Throwable</a>
|
||||
<div class="inheritance"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">java.lang.Exception</a>
|
||||
<div class="inheritance"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a>
|
||||
<div class="inheritance">gov.llnl.lc.chaos.GendersExceptionSyntax</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="class-description" id="class-description">
|
||||
<dl class="notes">
|
||||
<dt>All Implemented Interfaces:</dt>
|
||||
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></code></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">GendersExceptionSyntax</span>
|
||||
<span class="extends-implements">extends <a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></span></div>
|
||||
<div class="block">Genders Syntax Exception, indicates a syntax error in a genders
|
||||
query.</div>
|
||||
<dl class="notes">
|
||||
<dt>See Also:</dt>
|
||||
<dd>
|
||||
<ul class="see-list">
|
||||
<li><a href="../../../../serialized-form.html#gov.llnl.lc.chaos.GendersExceptionSyntax">Serialized Form</a></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<li>
|
||||
<section class="constructor-summary" id="constructor-summary">
|
||||
<h2>Constructor Summary</h2>
|
||||
<div class="caption"><span>Constructors</span></div>
|
||||
<div class="summary-table two-column-summary">
|
||||
<div class="table-header col-first">Constructor</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionSyntax</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</code></div>
|
||||
<div class="col-last even-row-color"> </div>
|
||||
</div>
|
||||
</section>
|
||||
</li>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<li>
|
||||
<section class="method-summary" id="method-summary">
|
||||
<h2>Method Summary</h2>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Throwable">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" title="class or interface in java.lang" class="external-link">Throwable</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#fillInStackTrace()" title="class or interface in java.lang" class="external-link">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getCause()" title="class or interface in java.lang" class="external-link">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getLocalizedMessage()" title="class or interface in java.lang" class="external-link">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getMessage()" title="class or interface in java.lang" class="external-link">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getStackTrace()" title="class or interface in java.lang" class="external-link">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#getSuppressed()" title="class or interface in java.lang" class="external-link">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="external-link">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace()" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="external-link">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="external-link">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code></div>
|
||||
<div class="inherited-list">
|
||||
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
||||
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="details">
|
||||
<ul class="details-list">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<li>
|
||||
<section class="constructor-details" id="constructor-detail">
|
||||
<h2>Constructor Details</h2>
|
||||
<ul class="member-list">
|
||||
<li>
|
||||
<section class="detail" id="<init>(java.lang.String)">
|
||||
<h3>GendersExceptionSyntax</h3>
|
||||
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">GendersExceptionSyntax</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> msg)</span></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+127
@@ -0,0 +1,127 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>gov.llnl.lc.chaos</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="declaration: package: gov.llnl.lc.chaos">
|
||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="package-declaration-page">
|
||||
<script type="text/javascript">var evenRowColor = "even-row-color";
|
||||
var oddRowColor = "odd-row-color";
|
||||
var tableTab = "table-tab";
|
||||
var activeTableTab = "active-table-tab";
|
||||
var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li class="nav-bar-cell1-rev">Package</li>
|
||||
<li>Class</li>
|
||||
<li><a href="package-tree.html">Tree</a></li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#package">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Package: </li>
|
||||
<li>Description | </li>
|
||||
<li>Related Packages | </li>
|
||||
<li><a href="#class-summary">Classes and Interfaces</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1 title="Package gov.llnl.lc.chaos" class="title">Package gov.llnl.lc.chaos</h1>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="package-signature">package <span class="element-name">gov.llnl.lc.chaos</span></div>
|
||||
<section class="summary">
|
||||
<ul class="summary-list">
|
||||
<li>
|
||||
<div id="class-summary">
|
||||
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="class-summary-tab0" role="tab" aria-selected="true" aria-controls="class-summary.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('class-summary', 'class-summary', 2)" class="active-table-tab">All Classes and Interfaces</button><button id="class-summary-tab2" role="tab" aria-selected="false" aria-controls="class-summary.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('class-summary', 'class-summary-tab2', 2)" class="table-tab">Classes</button><button id="class-summary-tab5" role="tab" aria-selected="false" aria-controls="class-summary.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('class-summary', 'class-summary-tab5', 2)" class="table-tab">Exceptions</button></div>
|
||||
<div id="class-summary.tabpanel" role="tabpanel">
|
||||
<div class="summary-table two-column-summary" aria-labelledby="class-summary-tab0">
|
||||
<div class="table-header col-first">Class</div>
|
||||
<div class="table-header col-last">Description</div>
|
||||
<div class="col-first even-row-color class-summary class-summary-tab2"><a href="Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></div>
|
||||
<div class="col-last even-row-color class-summary class-summary-tab2">
|
||||
<div class="block">Java JNI extensions wrapper around libgenders C library.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color class-summary class-summary-tab5"><a href="GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></div>
|
||||
<div class="col-last odd-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Exception class, parent to all specific Genders Exceptions.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color class-summary class-summary-tab5"><a href="GendersExceptionInternal.html" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a></div>
|
||||
<div class="col-last even-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Internal Exception, all other errors that may occur due to
|
||||
system issues.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color class-summary class-summary-tab5"><a href="GendersExceptionNotfound.html" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a></div>
|
||||
<div class="col-last odd-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Notfound Exception, indicates a node, attribute, or other
|
||||
input cannot be found.</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color class-summary class-summary-tab5"><a href="GendersExceptionOpen.html" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a></div>
|
||||
<div class="col-last even-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Open Exception, indicates a genders database cannot be
|
||||
open, possiblity due to permissions or an incorrect filename.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color class-summary class-summary-tab5"><a href="GendersExceptionParameters.html" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a></div>
|
||||
<div class="col-last odd-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Parameters Exception, indicates an invalid input</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color class-summary class-summary-tab5"><a href="GendersExceptionParse.html" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a></div>
|
||||
<div class="col-last even-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Parse Exception, indicates a parse error in the genders
|
||||
database.</div>
|
||||
</div>
|
||||
<div class="col-first odd-row-color class-summary class-summary-tab5"><a href="GendersExceptionRead.html" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a></div>
|
||||
<div class="col-last odd-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Read Exception, indicates a read error on the genders
|
||||
database</div>
|
||||
</div>
|
||||
<div class="col-first even-row-color class-summary class-summary-tab5"><a href="GendersExceptionSyntax.html" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a></div>
|
||||
<div class="col-last even-row-color class-summary class-summary-tab5">
|
||||
<div class="block">Genders Syntax Exception, indicates a syntax error in a genders
|
||||
query.</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>gov.llnl.lc.chaos Class Hierarchy</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="tree: package: gov.llnl.lc.chaos">
|
||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../script.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="package-tree-page">
|
||||
<script type="text/javascript">var pathtoroot = "../../../../";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="package-summary.html">Package</a></li>
|
||||
<li>Class</li>
|
||||
<li class="nav-bar-cell1-rev">Tree</li>
|
||||
<li><a href="../../../../index-all.html">Index</a></li>
|
||||
<li><a href="../../../../help-doc.html#tree">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1 class="title">Hierarchy For Package gov.llnl.lc.chaos</h1>
|
||||
</div>
|
||||
<section class="hierarchy">
|
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2>
|
||||
<ul>
|
||||
<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
|
||||
<ul>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="Genders.html" class="type-name-link" title="class in gov.llnl.lc.chaos">Genders</a></li>
|
||||
<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" class="type-name-link external-link" title="class or interface in java.lang">Throwable</a> (implements java.io.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a>)
|
||||
<ul>
|
||||
<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" class="type-name-link external-link" title="class or interface in java.lang">Exception</a>
|
||||
<ul>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersException.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersException</a>
|
||||
<ul>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionInternal.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionNotfound.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionOpen.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionParameters.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionParse.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionRead.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="GendersExceptionSyntax.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+175
@@ -0,0 +1,175 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>API Help</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="help">
|
||||
<meta name="generator" content="javadoc/HelpWriter">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="help-page">
|
||||
<script type="text/javascript">var pathtoroot = "./";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="gov/llnl/lc/chaos/package-summary.html">Package</a></li>
|
||||
<li>Class</li>
|
||||
<li><a href="overview-tree.html">Tree</a></li>
|
||||
<li><a href="index-all.html">Index</a></li>
|
||||
<li class="nav-bar-cell1-rev">Help</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div>
|
||||
<ul class="sub-nav-list">
|
||||
<li>Help: </li>
|
||||
<li><a href="#help-navigation">Navigation</a> | </li>
|
||||
<li><a href="#help-pages">Pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<h1 class="title">JavaDoc Help</h1>
|
||||
<ul class="help-toc">
|
||||
<li><a href="#help-navigation">Navigation</a>:
|
||||
<ul class="help-subtoc">
|
||||
<li><a href="#help-search">Search</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="#help-pages">Kinds of Pages</a>:
|
||||
<ul class="help-subtoc">
|
||||
<li><a href="#package">Package</a></li>
|
||||
<li><a href="#class">Class or Interface</a></li>
|
||||
<li><a href="#doc-file">Other Files</a></li>
|
||||
<li><a href="#tree">Tree (Class Hierarchy)</a></li>
|
||||
<li><a href="#serialized-form">Serialized Form</a></li>
|
||||
<li><a href="#all-packages">All Packages</a></li>
|
||||
<li><a href="#all-classes">All Classes and Interfaces</a></li>
|
||||
<li><a href="#index">Index</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<div class="sub-title">
|
||||
<h2 id="help-navigation">Navigation</h2>
|
||||
Starting from the <a href="index.html">Overview</a> page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The <a href="index-all.html">Index</a> and Search box allow you to navigate to specific declarations and summary pages, including: <a href="allpackages-index.html">All Packages</a>, <a href="allclasses-index.html">All Classes and Interfaces</a>
|
||||
<section class="help-section" id="help-search">
|
||||
<h3>Search</h3>
|
||||
<p>You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camelCase" abbreviations. For example:</p>
|
||||
<ul class="help-section-list">
|
||||
<li><code>j.l.obj</code> will match "java.lang.Object"</li>
|
||||
<li><code>InpStr</code> will match "java.io.InputStream"</li>
|
||||
<li><code>HM.cK</code> will match "java.util.HashMap.containsKey(Object)"</li>
|
||||
</ul>
|
||||
<p>Refer to the <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/javadoc/javadoc-search-spec.html">Javadoc Search Specification</a> for a full description of search features.</p>
|
||||
</section>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="sub-title">
|
||||
<h2 id="help-pages">Kinds of Pages</h2>
|
||||
The following sections describe the different kinds of pages in this collection.
|
||||
<section class="help-section" id="package">
|
||||
<h3>Package</h3>
|
||||
<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:</p>
|
||||
<ul class="help-section-list">
|
||||
<li>Interfaces</li>
|
||||
<li>Classes</li>
|
||||
<li>Enum Classes</li>
|
||||
<li>Exceptions</li>
|
||||
<li>Errors</li>
|
||||
<li>Annotation Interfaces</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="help-section" id="class">
|
||||
<h3>Class or Interface</h3>
|
||||
<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.</p>
|
||||
<ul class="help-section-list">
|
||||
<li>Class Inheritance Diagram</li>
|
||||
<li>Direct Subclasses</li>
|
||||
<li>All Known Subinterfaces</li>
|
||||
<li>All Known Implementing Classes</li>
|
||||
<li>Class or Interface Declaration</li>
|
||||
<li>Class or Interface Description</li>
|
||||
</ul>
|
||||
<br>
|
||||
<ul class="help-section-list">
|
||||
<li>Nested Class Summary</li>
|
||||
<li>Enum Constant Summary</li>
|
||||
<li>Field Summary</li>
|
||||
<li>Property Summary</li>
|
||||
<li>Constructor Summary</li>
|
||||
<li>Method Summary</li>
|
||||
<li>Required Element Summary</li>
|
||||
<li>Optional Element Summary</li>
|
||||
</ul>
|
||||
<br>
|
||||
<ul class="help-section-list">
|
||||
<li>Enum Constant Details</li>
|
||||
<li>Field Details</li>
|
||||
<li>Property Details</li>
|
||||
<li>Constructor Details</li>
|
||||
<li>Method Details</li>
|
||||
<li>Element Details</li>
|
||||
</ul>
|
||||
<p><span class="help-note">Note:</span> Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.</p>
|
||||
<p>The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p>
|
||||
</section>
|
||||
<section class="help-section" id="doc-file">
|
||||
<h3>Other Files</h3>
|
||||
<p>Packages and modules may contain pages with additional information related to the declarations nearby.</p>
|
||||
</section>
|
||||
<section class="help-section" id="tree">
|
||||
<h3>Tree (Class Hierarchy)</h3>
|
||||
<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with <code>java.lang.Object</code>. Interfaces do not inherit from <code>java.lang.Object</code>.</p>
|
||||
<ul class="help-section-list">
|
||||
<li>When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.</li>
|
||||
<li>When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="help-section" id="serialized-form">
|
||||
<h3>Serialized Form</h3>
|
||||
<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.</p>
|
||||
</section>
|
||||
<section class="help-section" id="all-packages">
|
||||
<h3>All Packages</h3>
|
||||
<p>The <a href="allpackages-index.html">All Packages</a> page contains an alphabetic index of all packages contained in the documentation.</p>
|
||||
</section>
|
||||
<section class="help-section" id="all-classes">
|
||||
<h3>All Classes and Interfaces</h3>
|
||||
<p>The <a href="allclasses-index.html">All Classes and Interfaces</a> page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.</p>
|
||||
</section>
|
||||
<section class="help-section" id="index">
|
||||
<h3>Index</h3>
|
||||
<p>The <a href="index-all.html">Index</a> contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as <a href="allpackages-index.html">All Packages</a>, <a href="allclasses-index.html">All Classes and Interfaces</a>.</p>
|
||||
</section>
|
||||
</div>
|
||||
<hr>
|
||||
<span class="help-footnote">This help file applies to API documentation generated by the standard doclet.</span></main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+236
@@ -0,0 +1,236 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>Index</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="index">
|
||||
<meta name="generator" content="javadoc/IndexWriter">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="index-page">
|
||||
<script type="text/javascript">var pathtoroot = "./";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="gov/llnl/lc/chaos/package-summary.html">Package</a></li>
|
||||
<li>Class</li>
|
||||
<li><a href="overview-tree.html">Tree</a></li>
|
||||
<li class="nav-bar-cell1-rev">Index</li>
|
||||
<li><a href="help-doc.html#index">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1>Index</h1>
|
||||
</div>
|
||||
<a href="#I:C">C</a> <a href="#I:G">G</a> <a href="#I:I">I</a> <a href="#I:Q">Q</a> <a href="#I:T">T</a> <br><a href="allclasses-index.html">All Classes and Interfaces</a><span class="vertical-separator">|</span><a href="allpackages-index.html">All Packages</a><span class="vertical-separator">|</span><a href="serialized-form.html">Serialized Form</a>
|
||||
<h2 class="title" id="I:C">C</h2>
|
||||
<dl class="index">
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#cleanup()" class="member-name-link">cleanup()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Cleans up allocated memory.</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<h2 class="title" id="I:G">G</h2>
|
||||
<dl class="index">
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html" class="type-name-link" title="class in gov.llnl.lc.chaos">Genders</a> - Class in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Java JNI extensions wrapper around libgenders C library.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#%3Cinit%3E()" class="member-name-link">Genders()</a> - Constructor for class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Creates a Genders object, loading the default genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#%3Cinit%3E(java.lang.String)" class="member-name-link">Genders(String)</a> - Constructor for class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Creates a Genders object, loading the specified genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersException.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersException</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Exception class, parent to all specific Genders Exceptions.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersException.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersException(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionInternal.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Internal Exception, all other errors that may occur due to
|
||||
system issues.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionInternal.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionInternal(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionInternal.html" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionNotfound.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Notfound Exception, indicates a node, attribute, or other
|
||||
input cannot be found.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionNotfound.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionNotfound(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionNotfound.html" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionOpen.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Open Exception, indicates a genders database cannot be
|
||||
open, possiblity due to permissions or an incorrect filename.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionOpen.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionOpen(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionOpen.html" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionParameters.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Parameters Exception, indicates an invalid input</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionParameters.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionParameters(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionParameters.html" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionParse.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Parse Exception, indicates a parse error in the genders
|
||||
database.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionParse.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionParse(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionParse.html" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionRead.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Read Exception, indicates a read error on the genders
|
||||
database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionRead.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionRead(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionRead.html" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionSyntax.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a> - Exception in <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></dt>
|
||||
<dd>
|
||||
<div class="block">Genders Syntax Exception, indicates a syntax error in a genders
|
||||
query.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/GendersExceptionSyntax.html#%3Cinit%3E(java.lang.String)" class="member-name-link">GendersExceptionSyntax(String)</a> - Constructor for exception gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionSyntax.html" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getattr()" class="member-name-link">getattr()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns all the attributes of the node you are running on</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getattr(java.lang.String)" class="member-name-link">getattr(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns all the attributes of the specified node</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getattr_all()" class="member-name-link">getattr_all()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns all of the attributes in the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getattrval(java.lang.String)" class="member-name-link">getattrval(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns the value of the specified attribute on the current
|
||||
node you are running on</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getattrval(java.lang.String,java.lang.String)" class="member-name-link">getattrval(String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns the value of the specified attribute on the specified
|
||||
node.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getmaxattrs()" class="member-name-link">getmaxattrs()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns maximum number of attributes of any one node parsed in
|
||||
the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getnodename()" class="member-name-link">getnodename()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns the current node you are on, in shortened hostname
|
||||
format.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getnodes()" class="member-name-link">getnodes()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns all the nodes in the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getnodes(java.lang.String)" class="member-name-link">getnodes(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns all the nodes with the specified attribute</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getnodes(java.lang.String,java.lang.String)" class="member-name-link">getnodes(String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns all the nodes with the specified attribute and value</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getnumattrs()" class="member-name-link">getnumattrs()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns number of attributes parsed in the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#getnumnodes()" class="member-name-link">getnumnodes()</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns number of nodes parsed in the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a> - package gov.llnl.lc.chaos</dt>
|
||||
<dd> </dd>
|
||||
</dl>
|
||||
<h2 class="title" id="I:I">I</h2>
|
||||
<dl class="index">
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#isattr(java.lang.String)" class="member-name-link">isattr(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the specified attribute exists in the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#isattrval(java.lang.String,java.lang.String)" class="member-name-link">isattrval(String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the specified value exists in the genders database</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#isnode(java.lang.String)" class="member-name-link">isnode(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the specified node exists in the genders database</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<h2 class="title" id="I:Q">Q</h2>
|
||||
<dl class="index">
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#query(java.lang.String)" class="member-name-link">query(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Returns nodes specified via the specified query.</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<h2 class="title" id="I:T">T</h2>
|
||||
<dl class="index">
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#testattr(java.lang.String)" class="member-name-link">testattr(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the current node has the specified attribute</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#testattr(java.lang.String,java.lang.String)" class="member-name-link">testattr(String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the specified node has the specified attribute</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#testattrval(java.lang.String,java.lang.String)" class="member-name-link">testattrval(String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the current node has the specified attribute and value.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#testattrval(java.lang.String,java.lang.String,java.lang.String)" class="member-name-link">testattrval(String, String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Tests if the specified node has the specified attribute and value.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#testquery(java.lang.String)" class="member-name-link">testquery(String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Test if the current node meets the conditions of the specified query.</div>
|
||||
</dd>
|
||||
<dt><a href="gov/llnl/lc/chaos/Genders.html#testquery(java.lang.String,java.lang.String)" class="member-name-link">testquery(String, String)</a> - Method in class gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" title="class in gov.llnl.lc.chaos">Genders</a></dt>
|
||||
<dd>
|
||||
<div class="block">Test if the specified node meets the conditions of the specified query.</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<a href="#I:C">C</a> <a href="#I:G">G</a> <a href="#I:I">I</a> <a href="#I:Q">Q</a> <a href="#I:T">T</a> <br><a href="allclasses-index.html">All Classes and Interfaces</a><span class="vertical-separator">|</span><a href="allpackages-index.html">All Packages</a><span class="vertical-separator">|</span><a href="serialized-form.html">Serialized Form</a></main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>Generated Documentation (Untitled)</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="index redirect">
|
||||
<meta name="generator" content="javadoc/IndexRedirectWriter">
|
||||
<link rel="canonical" href="gov/llnl/lc/chaos/package-summary.html">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript">window.location.replace('gov/llnl/lc/chaos/package-summary.html')</script>
|
||||
<noscript>
|
||||
<meta http-equiv="Refresh" content="0;gov/llnl/lc/chaos/package-summary.html">
|
||||
</noscript>
|
||||
</head>
|
||||
<body class="index-redirect-page">
|
||||
<main role="main">
|
||||
<noscript>
|
||||
<p>JavaScript is disabled on your browser.</p>
|
||||
</noscript>
|
||||
<p><a href="gov/llnl/lc/chaos/package-summary.html">gov/llnl/lc/chaos/package-summary.html</a></p>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
.ui-state-active,
|
||||
.ui-widget-content .ui-state-active,
|
||||
.ui-widget-header .ui-state-active,
|
||||
a.ui-button:active,
|
||||
.ui-button:active,
|
||||
.ui-button.ui-state-active:hover {
|
||||
/* Overrides the color of selection used in jQuery UI */
|
||||
background: #F8981D;
|
||||
border: 1px solid #F8981D;
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
|
||||
OPENJDK ASSEMBLY EXCEPTION
|
||||
|
||||
The OpenJDK source code made available by Oracle America, Inc. (Oracle) at
|
||||
openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU
|
||||
General Public License <http://www.gnu.org/copyleft/gpl.html> version 2
|
||||
only ("GPL2"), with the following clarification and special exception.
|
||||
|
||||
Linking this OpenJDK Code statically or dynamically with other code
|
||||
is making a combined work based on this library. Thus, the terms
|
||||
and conditions of GPL2 cover the whole combination.
|
||||
|
||||
As a special exception, Oracle gives you permission to link this
|
||||
OpenJDK Code with certain code licensed by Oracle as indicated at
|
||||
http://openjdk.java.net/legal/exception-modules-2007-05-08.html
|
||||
("Designated Exception Modules") to produce an executable,
|
||||
regardless of the license terms of the Designated Exception Modules,
|
||||
and to copy and distribute the resulting executable under GPL2,
|
||||
provided that the Designated Exception Modules continue to be
|
||||
governed by the licenses under which they were offered by Oracle.
|
||||
|
||||
As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code
|
||||
to build an executable that includes those portions of necessary code that
|
||||
Oracle could not provide under GPL2 (or that Oracle has provided under GPL2
|
||||
with the Classpath exception). If you modify or add to the OpenJDK code,
|
||||
that new GPL2 code may still be combined with Designated Exception Modules
|
||||
if the new code is made subject to this exception by its copyright holder.
|
||||
@@ -0,0 +1,72 @@
|
||||
## jQuery v3.6.1
|
||||
|
||||
### jQuery License
|
||||
```
|
||||
jQuery v 3.6.1
|
||||
Copyright OpenJS Foundation and other contributors, https://openjsf.org/
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
******************************************
|
||||
|
||||
The jQuery JavaScript Library v3.6.1 also includes Sizzle.js
|
||||
|
||||
Sizzle.js includes the following license:
|
||||
|
||||
Copyright JS Foundation and other contributors, https://js.foundation/
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals. For exact contribution history, see the revision history
|
||||
available at https://github.com/jquery/sizzle
|
||||
|
||||
The following license applies to all parts of this software except as
|
||||
documented below:
|
||||
|
||||
====
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
====
|
||||
|
||||
All files located in the node_modules and external directories are
|
||||
externally maintained libraries used by this software which have their
|
||||
own licenses; we recommend you read them, as their terms may differ from
|
||||
the terms above.
|
||||
|
||||
*********************
|
||||
|
||||
```
|
||||
@@ -0,0 +1,49 @@
|
||||
## jQuery UI v1.12.1
|
||||
|
||||
### jQuery UI License
|
||||
```
|
||||
Copyright jQuery Foundation and other contributors, https://jquery.org/
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals. For exact contribution history, see the revision history
|
||||
available at https://github.com/jquery/jquery-ui
|
||||
|
||||
The following license applies to all parts of this software except as
|
||||
documented below:
|
||||
|
||||
====
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
====
|
||||
|
||||
Copyright and related rights for sample code are waived via CC0. Sample
|
||||
code is defined as all source code contained within the demos directory.
|
||||
|
||||
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
||||
|
||||
====
|
||||
|
||||
All files located in the node_modules and external directories are
|
||||
externally maintained libraries used by this software which have their
|
||||
own licenses; we recommend you read them, as their terms may differ from
|
||||
the terms above.
|
||||
|
||||
```
|
||||
@@ -0,0 +1 @@
|
||||
memberSearchIndex = [{"p":"gov.llnl.lc.chaos","c":"Genders","l":"cleanup()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"Genders()","u":"%3Cinit%3E()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"Genders(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersException","l":"GendersException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionInternal","l":"GendersExceptionInternal(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionNotfound","l":"GendersExceptionNotfound(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionOpen","l":"GendersExceptionOpen(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionParameters","l":"GendersExceptionParameters(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionParse","l":"GendersExceptionParse(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionRead","l":"GendersExceptionRead(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"GendersExceptionSyntax","l":"GendersExceptionSyntax(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getattr_all()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getattr()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getattr(String)","u":"getattr(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getattrval(String)","u":"getattrval(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getattrval(String, String)","u":"getattrval(java.lang.String,java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getmaxattrs()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getnodename()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getnodes()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getnodes(String)","u":"getnodes(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getnodes(String, String)","u":"getnodes(java.lang.String,java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getnumattrs()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"getnumnodes()"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"isattr(String)","u":"isattr(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"isattrval(String, String)","u":"isattrval(java.lang.String,java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"isnode(String)","u":"isnode(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"query(String)","u":"query(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"testattr(String)","u":"testattr(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"testattr(String, String)","u":"testattr(java.lang.String,java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"testattrval(String, String)","u":"testattrval(java.lang.String,java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"testattrval(String, String, String)","u":"testattrval(java.lang.String,java.lang.String,java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"testquery(String)","u":"testquery(java.lang.String)"},{"p":"gov.llnl.lc.chaos","c":"Genders","l":"testquery(String, String)","u":"testquery(java.lang.String,java.lang.String)"}];updateSearchResults();
|
||||
@@ -0,0 +1 @@
|
||||
moduleSearchIndex = [];updateSearchResults();
|
||||
@@ -0,0 +1,89 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>Class Hierarchy</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="class tree">
|
||||
<meta name="generator" content="javadoc/TreeWriter">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="tree-page">
|
||||
<script type="text/javascript">var pathtoroot = "./";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li>Package</li>
|
||||
<li>Class</li>
|
||||
<li class="nav-bar-cell1-rev">Tree</li>
|
||||
<li><a href="index-all.html">Index</a></li>
|
||||
<li><a href="help-doc.html#tree">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1 class="title">Hierarchy For All Packages</h1>
|
||||
<span class="package-hierarchy-label">Package Hierarchies:</span>
|
||||
<ul class="horizontal">
|
||||
<li><a href="gov/llnl/lc/chaos/package-tree.html">gov.llnl.lc.chaos</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<section class="hierarchy">
|
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2>
|
||||
<ul>
|
||||
<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
|
||||
<ul>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/Genders.html" class="type-name-link" title="class in gov.llnl.lc.chaos">Genders</a></li>
|
||||
<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Throwable.html" class="type-name-link external-link" title="class or interface in java.lang">Throwable</a> (implements java.io.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a>)
|
||||
<ul>
|
||||
<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" class="type-name-link external-link" title="class or interface in java.lang">Exception</a>
|
||||
<ul>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersException.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersException</a>
|
||||
<ul>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionInternal.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionInternal</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionNotfound.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionNotfound</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionOpen.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionOpen</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionParameters.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionParameters</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionParse.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionParse</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionRead.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionRead</a></li>
|
||||
<li class="circle">gov.llnl.lc.chaos.<a href="gov/llnl/lc/chaos/GendersExceptionSyntax.html" class="type-name-link" title="class in gov.llnl.lc.chaos">GendersExceptionSyntax</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"gov.llnl.lc.chaos"}];updateSearchResults();
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 499 B |
Binary file not shown.
|
After Width: | Height: | Size: 394 B |
+2
File diff suppressed because one or more lines are too long
+6
@@ -0,0 +1,6 @@
|
||||
/*! jQuery UI - v1.13.1 - 2022-05-12
|
||||
* http://jqueryui.com
|
||||
* Includes: core.css, autocomplete.css, menu.css
|
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||
|
||||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}
|
||||
+6
File diff suppressed because one or more lines are too long
+132
@@ -0,0 +1,132 @@
|
||||
/*
|
||||
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
var moduleSearchIndex;
|
||||
var packageSearchIndex;
|
||||
var typeSearchIndex;
|
||||
var memberSearchIndex;
|
||||
var tagSearchIndex;
|
||||
function loadScripts(doc, tag) {
|
||||
createElem(doc, tag, 'search.js');
|
||||
|
||||
createElem(doc, tag, 'module-search-index.js');
|
||||
createElem(doc, tag, 'package-search-index.js');
|
||||
createElem(doc, tag, 'type-search-index.js');
|
||||
createElem(doc, tag, 'member-search-index.js');
|
||||
createElem(doc, tag, 'tag-search-index.js');
|
||||
}
|
||||
|
||||
function createElem(doc, tag, path) {
|
||||
var script = doc.createElement(tag);
|
||||
var scriptElement = doc.getElementsByTagName(tag)[0];
|
||||
script.src = pathtoroot + path;
|
||||
scriptElement.parentNode.insertBefore(script, scriptElement);
|
||||
}
|
||||
|
||||
function show(tableId, selected, columns) {
|
||||
if (tableId !== selected) {
|
||||
document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')')
|
||||
.forEach(function(elem) {
|
||||
elem.style.display = 'none';
|
||||
});
|
||||
}
|
||||
document.querySelectorAll('div.' + selected)
|
||||
.forEach(function(elem, index) {
|
||||
elem.style.display = '';
|
||||
var isEvenRow = index % (columns * 2) < columns;
|
||||
elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor);
|
||||
elem.classList.add(isEvenRow ? evenRowColor : oddRowColor);
|
||||
});
|
||||
updateTabs(tableId, selected);
|
||||
}
|
||||
|
||||
function updateTabs(tableId, selected) {
|
||||
document.querySelector('div#' + tableId +' .summary-table')
|
||||
.setAttribute('aria-labelledby', selected);
|
||||
document.querySelectorAll('button[id^="' + tableId + '"]')
|
||||
.forEach(function(tab, index) {
|
||||
if (selected === tab.id || (tableId === selected && index === 0)) {
|
||||
tab.className = activeTableTab;
|
||||
tab.setAttribute('aria-selected', true);
|
||||
tab.setAttribute('tabindex',0);
|
||||
} else {
|
||||
tab.className = tableTab;
|
||||
tab.setAttribute('aria-selected', false);
|
||||
tab.setAttribute('tabindex',-1);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function switchTab(e) {
|
||||
var selected = document.querySelector('[aria-selected=true]');
|
||||
if (selected) {
|
||||
if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) {
|
||||
// left or up arrow key pressed: move focus to previous tab
|
||||
selected.previousSibling.click();
|
||||
selected.previousSibling.focus();
|
||||
e.preventDefault();
|
||||
} else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) {
|
||||
// right or down arrow key pressed: move focus to next tab
|
||||
selected.nextSibling.click();
|
||||
selected.nextSibling.focus();
|
||||
e.preventDefault();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var updateSearchResults = function() {};
|
||||
|
||||
function indexFilesLoaded() {
|
||||
return moduleSearchIndex
|
||||
&& packageSearchIndex
|
||||
&& typeSearchIndex
|
||||
&& memberSearchIndex
|
||||
&& tagSearchIndex;
|
||||
}
|
||||
|
||||
// Workaround for scroll position not being included in browser history (8249133)
|
||||
document.addEventListener("DOMContentLoaded", function(e) {
|
||||
var contentDiv = document.querySelector("div.flex-content");
|
||||
window.addEventListener("popstate", function(e) {
|
||||
if (e.state !== null) {
|
||||
contentDiv.scrollTop = e.state;
|
||||
}
|
||||
});
|
||||
window.addEventListener("hashchange", function(e) {
|
||||
history.replaceState(contentDiv.scrollTop, document.title);
|
||||
});
|
||||
contentDiv.addEventListener("scroll", function(e) {
|
||||
var timeoutID;
|
||||
if (!timeoutID) {
|
||||
timeoutID = setTimeout(function() {
|
||||
history.replaceState(contentDiv.scrollTop, document.title);
|
||||
timeoutID = null;
|
||||
}, 100);
|
||||
}
|
||||
});
|
||||
if (!location.hash) {
|
||||
history.replaceState(contentDiv.scrollTop, document.title);
|
||||
}
|
||||
});
|
||||
+354
@@ -0,0 +1,354 @@
|
||||
/*
|
||||
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
var noResult = {l: "No results found"};
|
||||
var loading = {l: "Loading search index..."};
|
||||
var catModules = "Modules";
|
||||
var catPackages = "Packages";
|
||||
var catTypes = "Classes and Interfaces";
|
||||
var catMembers = "Members";
|
||||
var catSearchTags = "Search Tags";
|
||||
var highlight = "<span class=\"result-highlight\">$&</span>";
|
||||
var searchPattern = "";
|
||||
var fallbackPattern = "";
|
||||
var RANKING_THRESHOLD = 2;
|
||||
var NO_MATCH = 0xffff;
|
||||
var MIN_RESULTS = 3;
|
||||
var MAX_RESULTS = 500;
|
||||
var UNNAMED = "<Unnamed>";
|
||||
function escapeHtml(str) {
|
||||
return str.replace(/</g, "<").replace(/>/g, ">");
|
||||
}
|
||||
function getHighlightedText(item, matcher, fallbackMatcher) {
|
||||
var escapedItem = escapeHtml(item);
|
||||
var highlighted = escapedItem.replace(matcher, highlight);
|
||||
if (highlighted === escapedItem) {
|
||||
highlighted = escapedItem.replace(fallbackMatcher, highlight)
|
||||
}
|
||||
return highlighted;
|
||||
}
|
||||
function getURLPrefix(ui) {
|
||||
var urlPrefix="";
|
||||
var slash = "/";
|
||||
if (ui.item.category === catModules) {
|
||||
return ui.item.l + slash;
|
||||
} else if (ui.item.category === catPackages && ui.item.m) {
|
||||
return ui.item.m + slash;
|
||||
} else if (ui.item.category === catTypes || ui.item.category === catMembers) {
|
||||
if (ui.item.m) {
|
||||
urlPrefix = ui.item.m + slash;
|
||||
} else {
|
||||
$.each(packageSearchIndex, function(index, item) {
|
||||
if (item.m && ui.item.p === item.l) {
|
||||
urlPrefix = item.m + slash;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
return urlPrefix;
|
||||
}
|
||||
function createSearchPattern(term) {
|
||||
var pattern = "";
|
||||
var isWordToken = false;
|
||||
term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) {
|
||||
if (index > 0) {
|
||||
// whitespace between identifiers is significant
|
||||
pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*";
|
||||
}
|
||||
var tokens = w.split(/(?=[A-Z,.()<>[\/])/);
|
||||
for (var i = 0; i < tokens.length; i++) {
|
||||
var s = tokens[i];
|
||||
if (s === "") {
|
||||
continue;
|
||||
}
|
||||
pattern += $.ui.autocomplete.escapeRegex(s);
|
||||
isWordToken = /\w$/.test(s);
|
||||
if (isWordToken) {
|
||||
pattern += "([a-z0-9_$<>\\[\\]]*?)";
|
||||
}
|
||||
}
|
||||
});
|
||||
return pattern;
|
||||
}
|
||||
function createMatcher(pattern, flags) {
|
||||
var isCamelCase = /[A-Z]/.test(pattern);
|
||||
return new RegExp(pattern, flags + (isCamelCase ? "" : "i"));
|
||||
}
|
||||
var watermark = 'Search';
|
||||
$(function() {
|
||||
var search = $("#search-input");
|
||||
var reset = $("#reset-button");
|
||||
search.val('');
|
||||
search.prop("disabled", false);
|
||||
reset.prop("disabled", false);
|
||||
search.val(watermark).addClass('watermark');
|
||||
search.blur(function() {
|
||||
if ($(this).val().length === 0) {
|
||||
$(this).val(watermark).addClass('watermark');
|
||||
}
|
||||
});
|
||||
search.on('click keydown paste', function() {
|
||||
if ($(this).val() === watermark) {
|
||||
$(this).val('').removeClass('watermark');
|
||||
}
|
||||
});
|
||||
reset.click(function() {
|
||||
search.val('').focus();
|
||||
});
|
||||
search.focus()[0].setSelectionRange(0, 0);
|
||||
});
|
||||
$.widget("custom.catcomplete", $.ui.autocomplete, {
|
||||
_create: function() {
|
||||
this._super();
|
||||
this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)");
|
||||
},
|
||||
_renderMenu: function(ul, items) {
|
||||
var rMenu = this;
|
||||
var currentCategory = "";
|
||||
rMenu.menu.bindings = $();
|
||||
$.each(items, function(index, item) {
|
||||
var li;
|
||||
if (item.category && item.category !== currentCategory) {
|
||||
ul.append("<li class=\"ui-autocomplete-category\">" + item.category + "</li>");
|
||||
currentCategory = item.category;
|
||||
}
|
||||
li = rMenu._renderItemData(ul, item);
|
||||
if (item.category) {
|
||||
li.attr("aria-label", item.category + " : " + item.l);
|
||||
li.attr("class", "result-item");
|
||||
} else {
|
||||
li.attr("aria-label", item.l);
|
||||
li.attr("class", "result-item");
|
||||
}
|
||||
});
|
||||
},
|
||||
_renderItem: function(ul, item) {
|
||||
var label = "";
|
||||
var matcher = createMatcher(escapeHtml(searchPattern), "g");
|
||||
var fallbackMatcher = new RegExp(fallbackPattern, "gi")
|
||||
if (item.category === catModules) {
|
||||
label = getHighlightedText(item.l, matcher, fallbackMatcher);
|
||||
} else if (item.category === catPackages) {
|
||||
label = getHighlightedText(item.l, matcher, fallbackMatcher);
|
||||
} else if (item.category === catTypes) {
|
||||
label = (item.p && item.p !== UNNAMED)
|
||||
? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher)
|
||||
: getHighlightedText(item.l, matcher, fallbackMatcher);
|
||||
} else if (item.category === catMembers) {
|
||||
label = (item.p && item.p !== UNNAMED)
|
||||
? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher)
|
||||
: getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher);
|
||||
} else if (item.category === catSearchTags) {
|
||||
label = getHighlightedText(item.l, matcher, fallbackMatcher);
|
||||
} else {
|
||||
label = item.l;
|
||||
}
|
||||
var li = $("<li/>").appendTo(ul);
|
||||
var div = $("<div/>").appendTo(li);
|
||||
if (item.category === catSearchTags && item.h) {
|
||||
if (item.d) {
|
||||
div.html(label + "<span class=\"search-tag-holder-result\"> (" + item.h + ")</span><br><span class=\"search-tag-desc-result\">"
|
||||
+ item.d + "</span><br>");
|
||||
} else {
|
||||
div.html(label + "<span class=\"search-tag-holder-result\"> (" + item.h + ")</span>");
|
||||
}
|
||||
} else {
|
||||
if (item.m) {
|
||||
div.html(item.m + "/" + label);
|
||||
} else {
|
||||
div.html(label);
|
||||
}
|
||||
}
|
||||
return li;
|
||||
}
|
||||
});
|
||||
function rankMatch(match, category) {
|
||||
if (!match) {
|
||||
return NO_MATCH;
|
||||
}
|
||||
var index = match.index;
|
||||
var input = match.input;
|
||||
var leftBoundaryMatch = 2;
|
||||
var periferalMatch = 0;
|
||||
// make sure match is anchored on a left word boundary
|
||||
if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) {
|
||||
leftBoundaryMatch = 0;
|
||||
} else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) {
|
||||
leftBoundaryMatch = 1;
|
||||
}
|
||||
var matchEnd = index + match[0].length;
|
||||
var leftParen = input.indexOf("(");
|
||||
var endOfName = leftParen > -1 ? leftParen : input.length;
|
||||
// exclude peripheral matches
|
||||
if (category !== catModules && category !== catSearchTags) {
|
||||
var delim = category === catPackages ? "/" : ".";
|
||||
if (leftParen > -1 && leftParen < index) {
|
||||
periferalMatch += 2;
|
||||
} else if (input.lastIndexOf(delim, endOfName) >= matchEnd) {
|
||||
periferalMatch += 2;
|
||||
}
|
||||
}
|
||||
var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match
|
||||
for (var i = 1; i < match.length; i++) {
|
||||
// lower ranking if parts of the name are missing
|
||||
if (match[i])
|
||||
delta += match[i].length;
|
||||
}
|
||||
if (category === catTypes) {
|
||||
// lower ranking if a type name contains unmatched camel-case parts
|
||||
if (/[A-Z]/.test(input.substring(matchEnd)))
|
||||
delta += 5;
|
||||
if (/[A-Z]/.test(input.substring(0, index)))
|
||||
delta += 5;
|
||||
}
|
||||
return leftBoundaryMatch + periferalMatch + (delta / 200);
|
||||
|
||||
}
|
||||
function doSearch(request, response) {
|
||||
var result = [];
|
||||
searchPattern = createSearchPattern(request.term);
|
||||
fallbackPattern = createSearchPattern(request.term.toLowerCase());
|
||||
if (searchPattern === "") {
|
||||
return this.close();
|
||||
}
|
||||
var camelCaseMatcher = createMatcher(searchPattern, "");
|
||||
var fallbackMatcher = new RegExp(fallbackPattern, "i");
|
||||
|
||||
function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) {
|
||||
if (indexArray) {
|
||||
var newResults = [];
|
||||
$.each(indexArray, function (i, item) {
|
||||
item.category = category;
|
||||
var ranking = rankMatch(matcher.exec(nameFunc(item)), category);
|
||||
if (ranking < RANKING_THRESHOLD) {
|
||||
newResults.push({ranking: ranking, item: item});
|
||||
}
|
||||
return newResults.length <= MAX_RESULTS;
|
||||
});
|
||||
return newResults.sort(function(e1, e2) {
|
||||
return e1.ranking - e2.ranking;
|
||||
}).map(function(e) {
|
||||
return e.item;
|
||||
});
|
||||
}
|
||||
return [];
|
||||
}
|
||||
function searchIndex(indexArray, category, nameFunc) {
|
||||
var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc);
|
||||
result = result.concat(primaryResults);
|
||||
if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) {
|
||||
var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc);
|
||||
result = result.concat(secondaryResults.filter(function (item) {
|
||||
return primaryResults.indexOf(item) === -1;
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; });
|
||||
searchIndex(packageSearchIndex, catPackages, function(item) {
|
||||
return (item.m && request.term.indexOf("/") > -1)
|
||||
? (item.m + "/" + item.l) : item.l;
|
||||
});
|
||||
searchIndex(typeSearchIndex, catTypes, function(item) {
|
||||
return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l;
|
||||
});
|
||||
searchIndex(memberSearchIndex, catMembers, function(item) {
|
||||
return request.term.indexOf(".") > -1
|
||||
? item.p + "." + item.c + "." + item.l : item.l;
|
||||
});
|
||||
searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; });
|
||||
|
||||
if (!indexFilesLoaded()) {
|
||||
updateSearchResults = function() {
|
||||
doSearch(request, response);
|
||||
}
|
||||
result.unshift(loading);
|
||||
} else {
|
||||
updateSearchResults = function() {};
|
||||
}
|
||||
response(result);
|
||||
}
|
||||
$(function() {
|
||||
$("#search-input").catcomplete({
|
||||
minLength: 1,
|
||||
delay: 300,
|
||||
source: doSearch,
|
||||
response: function(event, ui) {
|
||||
if (!ui.content.length) {
|
||||
ui.content.push(noResult);
|
||||
} else {
|
||||
$("#search-input").empty();
|
||||
}
|
||||
},
|
||||
autoFocus: true,
|
||||
focus: function(event, ui) {
|
||||
return false;
|
||||
},
|
||||
position: {
|
||||
collision: "flip"
|
||||
},
|
||||
select: function(event, ui) {
|
||||
if (ui.item.category) {
|
||||
var url = getURLPrefix(ui);
|
||||
if (ui.item.category === catModules) {
|
||||
url += "module-summary.html";
|
||||
} else if (ui.item.category === catPackages) {
|
||||
if (ui.item.u) {
|
||||
url = ui.item.u;
|
||||
} else {
|
||||
url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
|
||||
}
|
||||
} else if (ui.item.category === catTypes) {
|
||||
if (ui.item.u) {
|
||||
url = ui.item.u;
|
||||
} else if (ui.item.p === UNNAMED) {
|
||||
url += ui.item.l + ".html";
|
||||
} else {
|
||||
url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html";
|
||||
}
|
||||
} else if (ui.item.category === catMembers) {
|
||||
if (ui.item.p === UNNAMED) {
|
||||
url += ui.item.c + ".html" + "#";
|
||||
} else {
|
||||
url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#";
|
||||
}
|
||||
if (ui.item.u) {
|
||||
url += ui.item.u;
|
||||
} else {
|
||||
url += ui.item.l;
|
||||
}
|
||||
} else if (ui.item.category === catSearchTags) {
|
||||
url += ui.item.u;
|
||||
}
|
||||
if (top !== window) {
|
||||
parent.classFrame.location = pathtoroot + url;
|
||||
} else {
|
||||
window.location.href = pathtoroot + url;
|
||||
}
|
||||
$("#search-input").focus();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,113 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Generated by javadoc (17) on Tue Jul 25 17:00:24 CEST 2023 -->
|
||||
<title>Serialized Form</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="dc.created" content="2023-07-25">
|
||||
<meta name="description" content="serialized forms">
|
||||
<meta name="generator" content="javadoc/SerializedFormWriterImpl">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
|
||||
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
|
||||
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
|
||||
</head>
|
||||
<body class="serialized-form-page">
|
||||
<script type="text/javascript">var pathtoroot = "./";
|
||||
loadScripts(document, 'script');</script>
|
||||
<noscript>
|
||||
<div>JavaScript is disabled on your browser.</div>
|
||||
</noscript>
|
||||
<div class="flex-box">
|
||||
<header role="banner" class="flex-header">
|
||||
<nav role="navigation">
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="top-nav" id="navbar-top">
|
||||
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
||||
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
||||
<li><a href="gov/llnl/lc/chaos/package-summary.html">Package</a></li>
|
||||
<li>Class</li>
|
||||
<li><a href="overview-tree.html">Tree</a></li>
|
||||
<li><a href="index-all.html">Index</a></li>
|
||||
<li><a href="help-doc.html#serialized-form">Help</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sub-nav">
|
||||
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
||||
<input type="text" id="search-input" value="search" disabled="disabled">
|
||||
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
||||
</div>
|
||||
</div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
||||
</header>
|
||||
<div class="flex-content">
|
||||
<main role="main">
|
||||
<div class="header">
|
||||
<h1 title="Serialized Form" class="title">Serialized Form</h1>
|
||||
</div>
|
||||
<ul class="block-list">
|
||||
<li>
|
||||
<section class="serialized-package-container">
|
||||
<h2 title="Package">Package <a href="gov/llnl/lc/chaos/package-summary.html">gov.llnl.lc.chaos</a></h2>
|
||||
<ul class="block-list">
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersException">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersException</a></h3>
|
||||
<div class="type-signature">class GendersException extends <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Exception.html" title="class or interface in java.lang" class="external-link">Exception</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionInternal">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionInternal.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionInternal</a></h3>
|
||||
<div class="type-signature">class GendersExceptionInternal extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionNotfound">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionNotfound.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionNotfound</a></h3>
|
||||
<div class="type-signature">class GendersExceptionNotfound extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionOpen">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionOpen.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionOpen</a></h3>
|
||||
<div class="type-signature">class GendersExceptionOpen extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionParameters">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionParameters.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionParameters</a></h3>
|
||||
<div class="type-signature">class GendersExceptionParameters extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionParse">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionParse.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionParse</a></h3>
|
||||
<div class="type-signature">class GendersExceptionParse extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionRead">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionRead.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionRead</a></h3>
|
||||
<div class="type-signature">class GendersExceptionRead extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
<li>
|
||||
<section class="serialized-class-details" id="gov.llnl.lc.chaos.GendersExceptionSyntax">
|
||||
<h3>Exception <a href="gov/llnl/lc/chaos/GendersExceptionSyntax.html" title="class in gov.llnl.lc.chaos">gov.llnl.lc.chaos.GendersExceptionSyntax</a></h3>
|
||||
<div class="type-signature">class GendersExceptionSyntax extends <a href="gov/llnl/lc/chaos/GendersException.html" title="class in gov.llnl.lc.chaos">GendersException</a> implements <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Serializable.html" title="class or interface in java.io" class="external-link">Serializable</a></div>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+869
@@ -0,0 +1,869 @@
|
||||
/*
|
||||
* Javadoc style sheet
|
||||
*/
|
||||
|
||||
@import url('resources/fonts/dejavu.css');
|
||||
|
||||
/*
|
||||
* Styles for individual HTML elements.
|
||||
*
|
||||
* These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
|
||||
* HTML element throughout the page.
|
||||
*/
|
||||
|
||||
body {
|
||||
background-color:#ffffff;
|
||||
color:#353833;
|
||||
font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
|
||||
font-size:14px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
iframe {
|
||||
margin:0;
|
||||
padding:0;
|
||||
height:100%;
|
||||
width:100%;
|
||||
overflow-y:scroll;
|
||||
border:none;
|
||||
}
|
||||
a:link, a:visited {
|
||||
text-decoration:none;
|
||||
color:#4A6782;
|
||||
}
|
||||
a[href]:hover, a[href]:focus {
|
||||
text-decoration:none;
|
||||
color:#bb7a2a;
|
||||
}
|
||||
a[name] {
|
||||
color:#353833;
|
||||
}
|
||||
pre {
|
||||
font-family:'DejaVu Sans Mono', monospace;
|
||||
font-size:14px;
|
||||
}
|
||||
h1 {
|
||||
font-size:20px;
|
||||
}
|
||||
h2 {
|
||||
font-size:18px;
|
||||
}
|
||||
h3 {
|
||||
font-size:16px;
|
||||
}
|
||||
h4 {
|
||||
font-size:15px;
|
||||
}
|
||||
h5 {
|
||||
font-size:14px;
|
||||
}
|
||||
h6 {
|
||||
font-size:13px;
|
||||
}
|
||||
ul {
|
||||
list-style-type:disc;
|
||||
}
|
||||
code, tt {
|
||||
font-family:'DejaVu Sans Mono', monospace;
|
||||
}
|
||||
:not(h1, h2, h3, h4, h5, h6) > code,
|
||||
:not(h1, h2, h3, h4, h5, h6) > tt {
|
||||
font-size:14px;
|
||||
padding-top:4px;
|
||||
margin-top:8px;
|
||||
line-height:1.4em;
|
||||
}
|
||||
dt code {
|
||||
font-family:'DejaVu Sans Mono', monospace;
|
||||
font-size:14px;
|
||||
padding-top:4px;
|
||||
}
|
||||
.summary-table dt code {
|
||||
font-family:'DejaVu Sans Mono', monospace;
|
||||
font-size:14px;
|
||||
vertical-align:top;
|
||||
padding-top:4px;
|
||||
}
|
||||
sup {
|
||||
font-size:8px;
|
||||
}
|
||||
button {
|
||||
font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
}
|
||||
/*
|
||||
* Styles for HTML generated by javadoc.
|
||||
*
|
||||
* These are style classes that are used by the standard doclet to generate HTML documentation.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Styles for document title and copyright.
|
||||
*/
|
||||
.clear {
|
||||
clear:both;
|
||||
height:0;
|
||||
overflow:hidden;
|
||||
}
|
||||
.about-language {
|
||||
float:right;
|
||||
padding:0 21px 8px 8px;
|
||||
font-size:11px;
|
||||
margin-top:-9px;
|
||||
height:2.9em;
|
||||
}
|
||||
.legal-copy {
|
||||
margin-left:.5em;
|
||||
}
|
||||
.tab {
|
||||
background-color:#0066FF;
|
||||
color:#ffffff;
|
||||
padding:8px;
|
||||
width:5em;
|
||||
font-weight:bold;
|
||||
}
|
||||
/*
|
||||
* Styles for navigation bar.
|
||||
*/
|
||||
@media screen {
|
||||
.flex-box {
|
||||
position:fixed;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.flex-header {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.flex-content {
|
||||
flex: 1 1 auto;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
.top-nav {
|
||||
background-color:#4D7A97;
|
||||
color:#FFFFFF;
|
||||
float:left;
|
||||
padding:0;
|
||||
width:100%;
|
||||
clear:right;
|
||||
min-height:2.8em;
|
||||
padding-top:10px;
|
||||
overflow:hidden;
|
||||
font-size:12px;
|
||||
}
|
||||
.sub-nav {
|
||||
background-color:#dee3e9;
|
||||
float:left;
|
||||
width:100%;
|
||||
overflow:hidden;
|
||||
font-size:12px;
|
||||
}
|
||||
.sub-nav div {
|
||||
clear:left;
|
||||
float:left;
|
||||
padding:0 0 5px 6px;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
.sub-nav .nav-list {
|
||||
padding-top:5px;
|
||||
}
|
||||
ul.nav-list {
|
||||
display:block;
|
||||
margin:0 25px 0 0;
|
||||
padding:0;
|
||||
}
|
||||
ul.sub-nav-list {
|
||||
float:left;
|
||||
margin:0 25px 0 0;
|
||||
padding:0;
|
||||
}
|
||||
ul.nav-list li {
|
||||
list-style:none;
|
||||
float:left;
|
||||
padding: 5px 6px;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
.sub-nav .nav-list-search {
|
||||
float:right;
|
||||
margin:0 0 0 0;
|
||||
padding:5px 6px;
|
||||
clear:none;
|
||||
}
|
||||
.nav-list-search label {
|
||||
position:relative;
|
||||
right:-16px;
|
||||
}
|
||||
ul.sub-nav-list li {
|
||||
list-style:none;
|
||||
float:left;
|
||||
padding-top:10px;
|
||||
}
|
||||
.top-nav a:link, .top-nav a:active, .top-nav a:visited {
|
||||
color:#FFFFFF;
|
||||
text-decoration:none;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
.top-nav a:hover {
|
||||
text-decoration:none;
|
||||
color:#bb7a2a;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
.nav-bar-cell1-rev {
|
||||
background-color:#F8981D;
|
||||
color:#253441;
|
||||
margin: auto 5px;
|
||||
}
|
||||
.skip-nav {
|
||||
position:absolute;
|
||||
top:auto;
|
||||
left:-9999px;
|
||||
overflow:hidden;
|
||||
}
|
||||
/*
|
||||
* Hide navigation links and search box in print layout
|
||||
*/
|
||||
@media print {
|
||||
ul.nav-list, div.sub-nav {
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
/*
|
||||
* Styles for page header and footer.
|
||||
*/
|
||||
.title {
|
||||
color:#2c4557;
|
||||
margin:10px 0;
|
||||
}
|
||||
.sub-title {
|
||||
margin:5px 0 0 0;
|
||||
}
|
||||
.header ul {
|
||||
margin:0 0 15px 0;
|
||||
padding:0;
|
||||
}
|
||||
.header ul li, .footer ul li {
|
||||
list-style:none;
|
||||
font-size:13px;
|
||||
}
|
||||
/*
|
||||
* Styles for headings.
|
||||
*/
|
||||
body.class-declaration-page .summary h2,
|
||||
body.class-declaration-page .details h2,
|
||||
body.class-use-page h2,
|
||||
body.module-declaration-page .block-list h2 {
|
||||
font-style: italic;
|
||||
padding:0;
|
||||
margin:15px 0;
|
||||
}
|
||||
body.class-declaration-page .summary h3,
|
||||
body.class-declaration-page .details h3,
|
||||
body.class-declaration-page .summary .inherited-list h2 {
|
||||
background-color:#dee3e9;
|
||||
border:1px solid #d0d9e0;
|
||||
margin:0 0 6px -8px;
|
||||
padding:7px 5px;
|
||||
}
|
||||
/*
|
||||
* Styles for page layout containers.
|
||||
*/
|
||||
main {
|
||||
clear:both;
|
||||
padding:10px 20px;
|
||||
position:relative;
|
||||
}
|
||||
dl.notes > dt {
|
||||
font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
margin:10px 0 0 0;
|
||||
color:#4E4E4E;
|
||||
}
|
||||
dl.notes > dd {
|
||||
margin:5px 10px 10px 0;
|
||||
font-size:14px;
|
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
||||
}
|
||||
dl.name-value > dt {
|
||||
margin-left:1px;
|
||||
font-size:1.1em;
|
||||
display:inline;
|
||||
font-weight:bold;
|
||||
}
|
||||
dl.name-value > dd {
|
||||
margin:0 0 0 1px;
|
||||
font-size:1.1em;
|
||||
display:inline;
|
||||
}
|
||||
/*
|
||||
* Styles for lists.
|
||||
*/
|
||||
li.circle {
|
||||
list-style:circle;
|
||||
}
|
||||
ul.horizontal li {
|
||||
display:inline;
|
||||
font-size:0.9em;
|
||||
}
|
||||
div.inheritance {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
div.inheritance div.inheritance {
|
||||
margin-left:2em;
|
||||
}
|
||||
ul.block-list,
|
||||
ul.details-list,
|
||||
ul.member-list,
|
||||
ul.summary-list {
|
||||
margin:10px 0 10px 0;
|
||||
padding:0;
|
||||
}
|
||||
ul.block-list > li,
|
||||
ul.details-list > li,
|
||||
ul.member-list > li,
|
||||
ul.summary-list > li {
|
||||
list-style:none;
|
||||
margin-bottom:15px;
|
||||
line-height:1.4;
|
||||
}
|
||||
.summary-table dl, .summary-table dl dt, .summary-table dl dd {
|
||||
margin-top:0;
|
||||
margin-bottom:1px;
|
||||
}
|
||||
ul.see-list, ul.see-list-long {
|
||||
padding-left: 0;
|
||||
list-style: none;
|
||||
}
|
||||
ul.see-list li {
|
||||
display: inline;
|
||||
}
|
||||
ul.see-list li:not(:last-child):after,
|
||||
ul.see-list-long li:not(:last-child):after {
|
||||
content: ", ";
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
/*
|
||||
* Styles for tables.
|
||||
*/
|
||||
.summary-table, .details-table {
|
||||
width:100%;
|
||||
border-spacing:0;
|
||||
border-left:1px solid #EEE;
|
||||
border-right:1px solid #EEE;
|
||||
border-bottom:1px solid #EEE;
|
||||
padding:0;
|
||||
}
|
||||
.caption {
|
||||
position:relative;
|
||||
text-align:left;
|
||||
background-repeat:no-repeat;
|
||||
color:#253441;
|
||||
font-weight:bold;
|
||||
clear:none;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
padding-top:10px;
|
||||
padding-left:1px;
|
||||
margin:0;
|
||||
white-space:pre;
|
||||
}
|
||||
.caption a:link, .caption a:visited {
|
||||
color:#1f389c;
|
||||
}
|
||||
.caption a:hover,
|
||||
.caption a:active {
|
||||
color:#FFFFFF;
|
||||
}
|
||||
.caption span {
|
||||
white-space:nowrap;
|
||||
padding-top:5px;
|
||||
padding-left:12px;
|
||||
padding-right:12px;
|
||||
padding-bottom:7px;
|
||||
display:inline-block;
|
||||
float:left;
|
||||
background-color:#F8981D;
|
||||
border: none;
|
||||
height:16px;
|
||||
}
|
||||
div.table-tabs {
|
||||
padding:10px 0 0 1px;
|
||||
margin:0;
|
||||
}
|
||||
div.table-tabs > button {
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 5px 12px 7px 12px;
|
||||
font-weight: bold;
|
||||
margin-right: 3px;
|
||||
}
|
||||
div.table-tabs > button.active-table-tab {
|
||||
background: #F8981D;
|
||||
color: #253441;
|
||||
}
|
||||
div.table-tabs > button.table-tab {
|
||||
background: #4D7A97;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.two-column-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
|
||||
}
|
||||
.three-column-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto);
|
||||
}
|
||||
.four-column-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto);
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
.two-column-summary {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 800px) {
|
||||
.three-column-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(10%, max-content) minmax(25%, auto);
|
||||
}
|
||||
.three-column-summary .col-last {
|
||||
grid-column-end: span 2;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 1000px) {
|
||||
.four-column-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
|
||||
}
|
||||
}
|
||||
.summary-table > div, .details-table > div {
|
||||
text-align:left;
|
||||
padding: 8px 3px 3px 7px;
|
||||
}
|
||||
.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name {
|
||||
vertical-align:top;
|
||||
padding-right:0;
|
||||
padding-top:8px;
|
||||
padding-bottom:3px;
|
||||
}
|
||||
.table-header {
|
||||
background:#dee3e9;
|
||||
font-weight: bold;
|
||||
}
|
||||
.col-first, .col-first {
|
||||
font-size:13px;
|
||||
}
|
||||
.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
|
||||
font-size:13px;
|
||||
}
|
||||
.col-first, .col-second, .col-constructor-name {
|
||||
vertical-align:top;
|
||||
overflow: auto;
|
||||
}
|
||||
.col-last {
|
||||
white-space:normal;
|
||||
}
|
||||
.col-first a:link, .col-first a:visited,
|
||||
.col-second a:link, .col-second a:visited,
|
||||
.col-first a:link, .col-first a:visited,
|
||||
.col-second a:link, .col-second a:visited,
|
||||
.col-constructor-name a:link, .col-constructor-name a:visited,
|
||||
.col-summary-item-name a:link, .col-summary-item-name a:visited,
|
||||
.constant-values-container a:link, .constant-values-container a:visited,
|
||||
.all-classes-container a:link, .all-classes-container a:visited,
|
||||
.all-packages-container a:link, .all-packages-container a:visited {
|
||||
font-weight:bold;
|
||||
}
|
||||
.table-sub-heading-color {
|
||||
background-color:#EEEEFF;
|
||||
}
|
||||
.even-row-color, .even-row-color .table-header {
|
||||
background-color:#FFFFFF;
|
||||
}
|
||||
.odd-row-color, .odd-row-color .table-header {
|
||||
background-color:#EEEEEF;
|
||||
}
|
||||
/*
|
||||
* Styles for contents.
|
||||
*/
|
||||
.deprecated-content {
|
||||
margin:0;
|
||||
padding:10px 0;
|
||||
}
|
||||
div.block {
|
||||
font-size:14px;
|
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
||||
}
|
||||
.col-last div {
|
||||
padding-top:0;
|
||||
}
|
||||
.col-last a {
|
||||
padding-bottom:3px;
|
||||
}
|
||||
.module-signature,
|
||||
.package-signature,
|
||||
.type-signature,
|
||||
.member-signature {
|
||||
font-family:'DejaVu Sans Mono', monospace;
|
||||
font-size:14px;
|
||||
margin:14px 0;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.module-signature,
|
||||
.package-signature,
|
||||
.type-signature {
|
||||
margin-top: 0;
|
||||
}
|
||||
.member-signature .type-parameters-long,
|
||||
.member-signature .parameters,
|
||||
.member-signature .exceptions {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
white-space: pre;
|
||||
}
|
||||
.member-signature .type-parameters {
|
||||
white-space: normal;
|
||||
}
|
||||
/*
|
||||
* Styles for formatting effect.
|
||||
*/
|
||||
.source-line-no {
|
||||
color:green;
|
||||
padding:0 30px 0 0;
|
||||
}
|
||||
h1.hidden {
|
||||
visibility:hidden;
|
||||
overflow:hidden;
|
||||
font-size:10px;
|
||||
}
|
||||
.block {
|
||||
display:block;
|
||||
margin:0 10px 5px 0;
|
||||
color:#474747;
|
||||
}
|
||||
.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link,
|
||||
.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type,
|
||||
.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
|
||||
font-weight:bold;
|
||||
}
|
||||
.deprecation-comment, .help-footnote, .preview-comment {
|
||||
font-style:italic;
|
||||
}
|
||||
.deprecation-block {
|
||||
font-size:14px;
|
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
||||
border-style:solid;
|
||||
border-width:thin;
|
||||
border-radius:10px;
|
||||
padding:10px;
|
||||
margin-bottom:10px;
|
||||
margin-right:10px;
|
||||
display:inline-block;
|
||||
}
|
||||
.preview-block {
|
||||
font-size:14px;
|
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
|
||||
border-style:solid;
|
||||
border-width:thin;
|
||||
border-radius:10px;
|
||||
padding:10px;
|
||||
margin-bottom:10px;
|
||||
margin-right:10px;
|
||||
display:inline-block;
|
||||
}
|
||||
div.block div.deprecation-comment {
|
||||
font-style:normal;
|
||||
}
|
||||
/*
|
||||
* Styles specific to HTML5 elements.
|
||||
*/
|
||||
main, nav, header, footer, section {
|
||||
display:block;
|
||||
}
|
||||
/*
|
||||
* Styles for javadoc search.
|
||||
*/
|
||||
.ui-autocomplete-category {
|
||||
font-weight:bold;
|
||||
font-size:15px;
|
||||
padding:7px 0 7px 3px;
|
||||
background-color:#4D7A97;
|
||||
color:#FFFFFF;
|
||||
}
|
||||
.result-item {
|
||||
font-size:13px;
|
||||
}
|
||||
.ui-autocomplete {
|
||||
max-height:85%;
|
||||
max-width:65%;
|
||||
overflow-y:scroll;
|
||||
overflow-x:scroll;
|
||||
white-space:nowrap;
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
||||
}
|
||||
ul.ui-autocomplete {
|
||||
position:fixed;
|
||||
z-index:999999;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
ul.ui-autocomplete li {
|
||||
float:left;
|
||||
clear:both;
|
||||
width:100%;
|
||||
}
|
||||
.result-highlight {
|
||||
font-weight:bold;
|
||||
}
|
||||
.ui-autocomplete .result-item {
|
||||
font-size: inherit;
|
||||
}
|
||||
#search-input {
|
||||
background-image:url('resources/glass.png');
|
||||
background-size:13px;
|
||||
background-repeat:no-repeat;
|
||||
background-position:2px 3px;
|
||||
padding-left:20px;
|
||||
position:relative;
|
||||
right:-18px;
|
||||
width:400px;
|
||||
}
|
||||
#reset-button {
|
||||
background-color: rgb(255,255,255);
|
||||
background-image:url('resources/x.png');
|
||||
background-position:center;
|
||||
background-repeat:no-repeat;
|
||||
background-size:12px;
|
||||
border:0 none;
|
||||
width:16px;
|
||||
height:16px;
|
||||
position:relative;
|
||||
left:-4px;
|
||||
top:-4px;
|
||||
font-size:0px;
|
||||
}
|
||||
.watermark {
|
||||
color:#545454;
|
||||
}
|
||||
.search-tag-desc-result {
|
||||
font-style:italic;
|
||||
font-size:11px;
|
||||
}
|
||||
.search-tag-holder-result {
|
||||
font-style:italic;
|
||||
font-size:12px;
|
||||
}
|
||||
.search-tag-result:target {
|
||||
background-color:yellow;
|
||||
}
|
||||
.module-graph span {
|
||||
display:none;
|
||||
position:absolute;
|
||||
}
|
||||
.module-graph:hover span {
|
||||
display:block;
|
||||
margin: -100px 0 0 100px;
|
||||
z-index: 1;
|
||||
}
|
||||
.inherited-list {
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
section.class-description {
|
||||
line-height: 1.4;
|
||||
}
|
||||
.summary section[class$="-summary"], .details section[class$="-details"],
|
||||
.class-uses .detail, .serialized-class-details {
|
||||
padding: 0px 20px 5px 10px;
|
||||
border: 1px solid #ededed;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
.inherited-list, section[class$="-details"] .detail {
|
||||
padding:0 0 5px 8px;
|
||||
background-color:#ffffff;
|
||||
border:none;
|
||||
}
|
||||
.vertical-separator {
|
||||
padding: 0 5px;
|
||||
}
|
||||
ul.help-section-list {
|
||||
margin: 0;
|
||||
}
|
||||
ul.help-subtoc > li {
|
||||
display: inline-block;
|
||||
padding-right: 5px;
|
||||
font-size: smaller;
|
||||
}
|
||||
ul.help-subtoc > li::before {
|
||||
content: "\2022" ;
|
||||
padding-right:2px;
|
||||
}
|
||||
span.help-note {
|
||||
font-style: italic;
|
||||
}
|
||||
/*
|
||||
* Indicator icon for external links.
|
||||
*/
|
||||
main a[href*="://"]::after {
|
||||
content:"";
|
||||
display:inline-block;
|
||||
background-image:url('data:image/svg+xml; utf8, \
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
|
||||
<path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
|
||||
132-240 240 120 120 240-240 132 132V0z" fill="%234a6782"/>\
|
||||
</svg>');
|
||||
background-size:100% 100%;
|
||||
width:7px;
|
||||
height:7px;
|
||||
margin-left:2px;
|
||||
margin-bottom:4px;
|
||||
}
|
||||
main a[href*="://"]:hover::after,
|
||||
main a[href*="://"]:focus::after {
|
||||
background-image:url('data:image/svg+xml; utf8, \
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
|
||||
<path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
|
||||
132-240 240 120 120 240-240 132 132V0z" fill="%23bb7a2a"/>\
|
||||
</svg>');
|
||||
}
|
||||
|
||||
/*
|
||||
* Styles for user-provided tables.
|
||||
*
|
||||
* borderless:
|
||||
* No borders, vertical margins, styled caption.
|
||||
* This style is provided for use with existing doc comments.
|
||||
* In general, borderless tables should not be used for layout purposes.
|
||||
*
|
||||
* plain:
|
||||
* Plain borders around table and cells, vertical margins, styled caption.
|
||||
* Best for small tables or for complex tables for tables with cells that span
|
||||
* rows and columns, when the "striped" style does not work well.
|
||||
*
|
||||
* striped:
|
||||
* Borders around the table and vertical borders between cells, striped rows,
|
||||
* vertical margins, styled caption.
|
||||
* Best for tables that have a header row, and a body containing a series of simple rows.
|
||||
*/
|
||||
|
||||
table.borderless,
|
||||
table.plain,
|
||||
table.striped {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
table.borderless > caption,
|
||||
table.plain > caption,
|
||||
table.striped > caption {
|
||||
font-weight: bold;
|
||||
font-size: smaller;
|
||||
}
|
||||
table.borderless th, table.borderless td,
|
||||
table.plain th, table.plain td,
|
||||
table.striped th, table.striped td {
|
||||
padding: 2px 5px;
|
||||
}
|
||||
table.borderless,
|
||||
table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
|
||||
table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
|
||||
border: none;
|
||||
}
|
||||
table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
|
||||
background-color: transparent;
|
||||
}
|
||||
table.plain {
|
||||
border-collapse: collapse;
|
||||
border: 1px solid black;
|
||||
}
|
||||
table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
|
||||
background-color: transparent;
|
||||
}
|
||||
table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
|
||||
table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
|
||||
border: 1px solid black;
|
||||
}
|
||||
table.striped {
|
||||
border-collapse: collapse;
|
||||
border: 1px solid black;
|
||||
}
|
||||
table.striped > thead {
|
||||
background-color: #E3E3E3;
|
||||
}
|
||||
table.striped > thead > tr > th, table.striped > thead > tr > td {
|
||||
border: 1px solid black;
|
||||
}
|
||||
table.striped > tbody > tr:nth-child(even) {
|
||||
background-color: #EEE
|
||||
}
|
||||
table.striped > tbody > tr:nth-child(odd) {
|
||||
background-color: #FFF
|
||||
}
|
||||
table.striped > tbody > tr > th, table.striped > tbody > tr > td {
|
||||
border-left: 1px solid black;
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
table.striped > tbody > tr > th {
|
||||
font-weight: normal;
|
||||
}
|
||||
/**
|
||||
* Tweak font sizes and paddings for small screens.
|
||||
*/
|
||||
@media screen and (max-width: 1050px) {
|
||||
#search-input {
|
||||
width: 300px;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 800px) {
|
||||
#search-input {
|
||||
width: 200px;
|
||||
}
|
||||
.top-nav,
|
||||
.bottom-nav {
|
||||
font-size: 11px;
|
||||
padding-top: 6px;
|
||||
}
|
||||
.sub-nav {
|
||||
font-size: 11px;
|
||||
}
|
||||
.about-language {
|
||||
padding-right: 16px;
|
||||
}
|
||||
ul.nav-list li,
|
||||
.sub-nav .nav-list-search {
|
||||
padding: 6px;
|
||||
}
|
||||
ul.sub-nav-list li {
|
||||
padding-top: 5px;
|
||||
}
|
||||
main {
|
||||
padding: 10px;
|
||||
}
|
||||
.summary section[class$="-summary"], .details section[class$="-details"],
|
||||
.class-uses .detail, .serialized-class-details {
|
||||
padding: 0 8px 5px 8px;
|
||||
}
|
||||
body {
|
||||
-webkit-text-size-adjust: none;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 500px) {
|
||||
#search-input {
|
||||
width: 150px;
|
||||
}
|
||||
.top-nav,
|
||||
.bottom-nav {
|
||||
font-size: 10px;
|
||||
}
|
||||
.sub-nav {
|
||||
font-size: 10px;
|
||||
}
|
||||
.about-language {
|
||||
font-size: 10px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
tagSearchIndex = [{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults();
|
||||
@@ -0,0 +1 @@
|
||||
typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"gov.llnl.lc.chaos","l":"Genders"},{"p":"gov.llnl.lc.chaos","l":"GendersException"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionInternal"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionNotfound"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionOpen"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionParameters"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionParse"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionRead"},{"p":"gov.llnl.lc.chaos","l":"GendersExceptionSyntax"}];updateSearchResults();
|
||||
Executable
BIN
Binary file not shown.
Executable
+262
@@ -0,0 +1,262 @@
|
||||
.\" Automatically generated by Pod::Man 2.22 (Pod::Simple 3.13)
|
||||
.\"
|
||||
.\" Standard preamble:
|
||||
.\" ========================================================================
|
||||
.de Sp \" Vertical space (when we can't use .PP)
|
||||
.if t .sp .5v
|
||||
.if n .sp
|
||||
..
|
||||
.de Vb \" Begin verbatim text
|
||||
.ft CW
|
||||
.nf
|
||||
.ne \\$1
|
||||
..
|
||||
.de Ve \" End verbatim text
|
||||
.ft R
|
||||
.fi
|
||||
..
|
||||
.\" Set up some character translations and predefined strings. \*(-- will
|
||||
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
|
||||
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
|
||||
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
|
||||
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
|
||||
.\" nothing in troff, for use with C<>.
|
||||
.tr \(*W-
|
||||
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
|
||||
.ie n \{\
|
||||
. ds -- \(*W-
|
||||
. ds PI pi
|
||||
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
|
||||
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
|
||||
. ds L" ""
|
||||
. ds R" ""
|
||||
. ds C` ""
|
||||
. ds C' ""
|
||||
'br\}
|
||||
.el\{\
|
||||
. ds -- \|\(em\|
|
||||
. ds PI \(*p
|
||||
. ds L" ``
|
||||
. ds R" ''
|
||||
'br\}
|
||||
.\"
|
||||
.\" Escape single quotes in literal strings from groff's Unicode transform.
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.\"
|
||||
.\" If the F register is turned on, we'll generate index entries on stderr for
|
||||
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
|
||||
.\" entries marked with X<> in POD. Of course, you'll have to process the
|
||||
.\" output yourself in some meaningful fashion.
|
||||
.ie \nF \{\
|
||||
. de IX
|
||||
. tm Index:\\$1\t\\n%\t"\\$2"
|
||||
..
|
||||
. nr % 0
|
||||
. rr F
|
||||
.\}
|
||||
.el \{\
|
||||
. de IX
|
||||
..
|
||||
.\}
|
||||
.\"
|
||||
.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
|
||||
.\" Fear. Run. Save yourself. No user-serviceable parts.
|
||||
. \" fudge factors for nroff and troff
|
||||
.if n \{\
|
||||
. ds #H 0
|
||||
. ds #V .8m
|
||||
. ds #F .3m
|
||||
. ds #[ \f1
|
||||
. ds #] \fP
|
||||
.\}
|
||||
.if t \{\
|
||||
. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
|
||||
. ds #V .6m
|
||||
. ds #F 0
|
||||
. ds #[ \&
|
||||
. ds #] \&
|
||||
.\}
|
||||
. \" simple accents for nroff and troff
|
||||
.if n \{\
|
||||
. ds ' \&
|
||||
. ds ` \&
|
||||
. ds ^ \&
|
||||
. ds , \&
|
||||
. ds ~ ~
|
||||
. ds /
|
||||
.\}
|
||||
.if t \{\
|
||||
. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
|
||||
. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
|
||||
. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
|
||||
. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
|
||||
. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
|
||||
. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
|
||||
.\}
|
||||
. \" troff and (daisy-wheel) nroff accents
|
||||
.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
|
||||
.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
|
||||
.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
|
||||
.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
|
||||
.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
|
||||
.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
|
||||
.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
|
||||
.ds ae a\h'-(\w'a'u*4/10)'e
|
||||
.ds Ae A\h'-(\w'A'u*4/10)'E
|
||||
. \" corrections for vroff
|
||||
.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
|
||||
.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
|
||||
. \" for low resolution devices (crt and lpr)
|
||||
.if \n(.H>23 .if \n(.V>19 \
|
||||
\{\
|
||||
. ds : e
|
||||
. ds 8 ss
|
||||
. ds o a
|
||||
. ds d- d\h'-1'\(ga
|
||||
. ds D- D\h'-1'\(hy
|
||||
. ds th \o'bp'
|
||||
. ds Th \o'LP'
|
||||
. ds ae ae
|
||||
. ds Ae AE
|
||||
.\}
|
||||
.rm #[ #] #H #V #F C
|
||||
.\" ========================================================================
|
||||
.\"
|
||||
.IX Title "Genders 3"
|
||||
.TH Genders 3 "2013-08-02" "perl v5.10.1" "User Contributed Perl Documentation"
|
||||
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
|
||||
.\" way too many mistakes in technical documents.
|
||||
.if n .ad l
|
||||
.nh
|
||||
.SH "NAME"
|
||||
Genders \- Perl library for querying a genders file
|
||||
.SH "SYNOPSIS"
|
||||
.IX Header "SYNOPSIS"
|
||||
.Vb 1
|
||||
\& use Genders;
|
||||
\&
|
||||
\& $Genders::GENDERS_DEFAULT_FILE;
|
||||
\&
|
||||
\& $obj = Genders\->new([$filename])
|
||||
\&
|
||||
\& $obj\->debug($num)
|
||||
\&
|
||||
\& $obj\->getnodename()
|
||||
\& $obj\->getnodes([$attr, [$val]])
|
||||
\& $obj\->getattr([$node])
|
||||
\& $obj\->getattr_all()
|
||||
\& $obj\->getattrval($attr, [$node])
|
||||
\&
|
||||
\& $obj\->testattr($attr, [$node])
|
||||
\& $obj\->testattrval($attr, $val, [$node])
|
||||
\&
|
||||
\& $obj\->isnode([$node])
|
||||
\& $obj\->isattr($attr)
|
||||
\& $obj\->isattrval($attr, $val)
|
||||
\&
|
||||
\& $obj\->index_attrvals($attr)
|
||||
\&
|
||||
\& $obj\->query($query)
|
||||
\& $obj\->testquery($query, [$node])
|
||||
.Ve
|
||||
.SH "DESCRIPTION"
|
||||
.IX Header "DESCRIPTION"
|
||||
This package provides a perl interface for querying a genders file.
|
||||
.IP "\fBGenders\->new([$filename])\fR" 4
|
||||
.IX Item "Genders->new([$filename])"
|
||||
Creates a Genders object and load genders data from the specified
|
||||
file. If the genders file is not specified, the default genders file
|
||||
will be used. Returns undef if file cannot be read.
|
||||
.ie n .IP "\fB\fB$obj\fB\->debug($num)\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->debug($num)\fR" 4
|
||||
.IX Item "$obj->debug($num)"
|
||||
Set the debug level in the genders object. By default, the debug
|
||||
level is 0 and all debugging is turned off. To turn it on, set the
|
||||
level to 1.
|
||||
.ie n .IP "\fB\fB$obj\fB\->\f(BIgetnodename()\fB\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->\f(BIgetnodename()\fB\fR" 4
|
||||
.IX Item "$obj->getnodename()"
|
||||
Returns the name of the current node.
|
||||
.ie n .IP "\fB\fB$obj\fB\->getnodes([$attr, [$val]])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->getnodes([$attr, [$val]])\fR" 4
|
||||
.IX Item "$obj->getnodes([$attr, [$val]])"
|
||||
Returns a list of nodes with the specified attribute and value. If a
|
||||
value is not specified only the attribute is considered. If the
|
||||
attribute is not specified, all nodes listed in the genders file are
|
||||
returned.
|
||||
.ie n .IP "\fB\fB$obj\fB\->getattr([$node])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->getattr([$node])\fR" 4
|
||||
.IX Item "$obj->getattr([$node])"
|
||||
Returns a list of attributes for the specified node. If the node
|
||||
is not specified, the local node's attributes returned.
|
||||
.ie n .IP "\fB\fB$obj\fB\->\f(BIgetattr_all()\fB\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->\f(BIgetattr_all()\fB\fR" 4
|
||||
.IX Item "$obj->getattr_all()"
|
||||
Returns a list of all attributes listed in the genders file.
|
||||
.ie n .IP "\fB\fB$obj\fB\->getattrval($attr, [$node])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->getattrval($attr, [$node])\fR" 4
|
||||
.IX Item "$obj->getattrval($attr, [$node])"
|
||||
Returns the value of the specified attribute for the specified node.
|
||||
If the attribute does not exist or the attribute has no value, an
|
||||
empty string is returned. If the node is not specified, the local
|
||||
node's attribute value is returned.
|
||||
.ie n .IP "\fB\fB$obj\fB\->testattr($attr, [$node])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->testattr($attr, [$node])\fR" 4
|
||||
.IX Item "$obj->testattr($attr, [$node])"
|
||||
Returns 1 if the specified node has the specified attribute, 0 if it
|
||||
does not. If the node is not specified, the local node is checked.
|
||||
.ie n .IP "\fB\fB$obj\fB\->testattrval($attr, \f(BI$val\fB, [$node])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->testattrval($attr, \f(CB$val\fB, [$node])\fR" 4
|
||||
.IX Item "$obj->testattrval($attr, $val, [$node])"
|
||||
Returns 1 if the specified node has the specified attribute and value,
|
||||
0 if it does not. If the node is not specified, the local node is
|
||||
checked.
|
||||
.ie n .IP "\fB\fB$obj\fB\->isnode([$node])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->isnode([$node])\fR" 4
|
||||
.IX Item "$obj->isnode([$node])"
|
||||
Returns 1 if the specified node is listed in the genders file, 0 if it
|
||||
is not. If the node is not specified, the local node is checked.
|
||||
.ie n .IP "\fB\fB$obj\fB\->isattr($attr)\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->isattr($attr)\fR" 4
|
||||
.IX Item "$obj->isattr($attr)"
|
||||
Returns 1 if the specified attribute is listed in the genders file, 0
|
||||
if it is not.
|
||||
.ie n .IP "\fB\fB$obj\fB\->isattrval($attr, \f(BI$val\fB)\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->isattrval($attr, \f(CB$val\fB)\fR" 4
|
||||
.IX Item "$obj->isattrval($attr, $val)"
|
||||
Returns 1 if the specified attribute is equal to the specified value
|
||||
for some node in the genders file, 0 if it is not.
|
||||
.ie n .IP "\fB\fB$obj\fB\->index_attrvals($attr)\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->index_attrvals($attr)\fR" 4
|
||||
.IX Item "$obj->index_attrvals($attr)"
|
||||
Internally indexes genders attribute values for faster search times.
|
||||
Subsequent calls with a different attribute will overwrite earlier
|
||||
indexes.
|
||||
.ie n .IP "\fB\fB$obj\fB\->query($query)\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->query($query)\fR" 4
|
||||
.IX Item "$obj->query($query)"
|
||||
Returns a list of nodes specified by a genders query. A genders query
|
||||
is based on the union, intersection, set difference, or complement
|
||||
between genders attributes and values. Union is represented by two
|
||||
pipe symbols ('||'), intersection by two ampersand symbols ('&&'),
|
||||
difference by two minus symbols ('\-\-'), and complement by a tilde
|
||||
('~') Operations are performed from left to right. Parentheses may be
|
||||
used to change the order of operations. For example, the following
|
||||
query would retrieve all nodes other than management or login nodes:
|
||||
\&\*(L"~(mgmt||login)\*(R". If the query is not specified, all nodes listed
|
||||
in the genders file are returned.
|
||||
.ie n .IP "\fB\fB$obj\fB\->testquery($query, [$node])\fR" 4
|
||||
.el .IP "\fB\f(CB$obj\fB\->testquery($query, [$node])\fR" 4
|
||||
.IX Item "$obj->testquery($query, [$node])"
|
||||
Returns 1 if the specified node meets the conditions of the specified
|
||||
query, 0 if it does not. If the node is not specified, the local node
|
||||
is checked.
|
||||
.SH "AUTHOR"
|
||||
.IX Header "AUTHOR"
|
||||
Albert Chu <chu11@llnl.gov>
|
||||
.SH "SEE ALSO"
|
||||
.IX Header "SEE ALSO"
|
||||
Libgenders.
|
||||
.PP
|
||||
libgenders.
|
||||
Executable
+296
@@ -0,0 +1,296 @@
|
||||
.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
|
||||
.\"
|
||||
.\" Standard preamble:
|
||||
.\" ========================================================================
|
||||
.de Sp \" Vertical space (when we can't use .PP)
|
||||
.if t .sp .5v
|
||||
.if n .sp
|
||||
..
|
||||
.de Vb \" Begin verbatim text
|
||||
.ft CW
|
||||
.nf
|
||||
.ne \\$1
|
||||
..
|
||||
.de Ve \" End verbatim text
|
||||
.ft R
|
||||
.fi
|
||||
..
|
||||
.\" Set up some character translations and predefined strings. \*(-- will
|
||||
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
|
||||
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
|
||||
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
|
||||
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
|
||||
.\" nothing in troff, for use with C<>.
|
||||
.tr \(*W-
|
||||
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
|
||||
.ie n \{\
|
||||
. ds -- \(*W-
|
||||
. ds PI pi
|
||||
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
|
||||
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
|
||||
. ds L" ""
|
||||
. ds R" ""
|
||||
. ds C` ""
|
||||
. ds C' ""
|
||||
'br\}
|
||||
.el\{\
|
||||
. ds -- \|\(em\|
|
||||
. ds PI \(*p
|
||||
. ds L" ``
|
||||
. ds R" ''
|
||||
. ds C`
|
||||
. ds C'
|
||||
'br\}
|
||||
.\"
|
||||
.\" Escape single quotes in literal strings from groff's Unicode transform.
|
||||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.\"
|
||||
.\" If the F register is >0, we'll generate index entries on stderr for
|
||||
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
|
||||
.\" entries marked with X<> in POD. Of course, you'll have to process the
|
||||
.\" output yourself in some meaningful fashion.
|
||||
.\"
|
||||
.\" Avoid warning from groff about undefined register 'F'.
|
||||
.de IX
|
||||
..
|
||||
.nr rF 0
|
||||
.if \n(.g .if rF .nr rF 1
|
||||
.if (\n(rF:(\n(.g==0)) \{\
|
||||
. if \nF \{\
|
||||
. de IX
|
||||
. tm Index:\\$1\t\\n%\t"\\$2"
|
||||
..
|
||||
. if !\nF==2 \{\
|
||||
. nr % 0
|
||||
. nr F 2
|
||||
. \}
|
||||
. \}
|
||||
.\}
|
||||
.rr rF
|
||||
.\" ========================================================================
|
||||
.\"
|
||||
.IX Title "Libgenders 3pm"
|
||||
.TH Libgenders 3pm "2023-07-25" "perl v5.36.0" "User Contributed Perl Documentation"
|
||||
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
|
||||
.\" way too many mistakes in technical documents.
|
||||
.if n .ad l
|
||||
.nh
|
||||
.SH "NAME"
|
||||
Libgenders \- Perl extension for libgenders
|
||||
.SH "SYNOPSIS"
|
||||
.IX Header "SYNOPSIS"
|
||||
.Vb 1
|
||||
\& use Libgenders;
|
||||
\&
|
||||
\& Libgenders::GENDERS_ERR_SUCCESS
|
||||
\& Libgenders::GENDERS_ERR_NULLHANDLE
|
||||
\& Libgenders::GENDERS_ERR_OPEN
|
||||
\& Libgenders::GENDERS_ERR_READ
|
||||
\& Libgenders::GENDERS_ERR_PARSE
|
||||
\& Libgenders::GENDERS_ERR_NOTLOADED
|
||||
\& Libgenders::GENDERS_ERR_ISLOADED
|
||||
\& Libgenders::GENDERS_ERR_OVERFLOW
|
||||
\& Libgenders::GENDERS_ERR_PARAMETERS
|
||||
\& Libgenders::GENDERS_ERR_NULLPTR
|
||||
\& Libgenders::GENDERS_ERR_NOTFOUND
|
||||
\& Libgenders::GENDERS_ERR_SYNTAX
|
||||
\& Libgenders::GENDERS_ERR_QUERYINPUT
|
||||
\& Libgenders::GENDERS_ERR_OUTMEM
|
||||
\& Libgenders::GENDERS_ERR_MAGIC
|
||||
\& Libgenders::GENDERS_ERR_INTERNAL
|
||||
\& Libgenders::GENDERS_ERR_ERRNUMRANGE
|
||||
\& Libgenders::GENDERS_DEFAULT_FILE
|
||||
\&
|
||||
\& $handle = Libgenders\->genders_handle_create();
|
||||
\& $handle\->genders_load_data([$filename]);
|
||||
\&
|
||||
\& $handle\->genders_errnum()
|
||||
\& $handle\->genders_strerror($errnum)
|
||||
\& $handle\->genders_errormsg()
|
||||
\& $handle\->genders_perror($msg)
|
||||
\&
|
||||
\& $handle\->genders_getnumnodes()
|
||||
\& $handle\->genders_getnumattrs()
|
||||
\& $handle\->genders_getnodename()
|
||||
\&
|
||||
\& $handle\->genders_getnodes([$attr, [$val]])
|
||||
\& $handle\->genders_getattr([$node])
|
||||
\& $handle\->genders_getattr_all()
|
||||
\& $handle\->genders_getattrval($attr, [$node])
|
||||
\& $handle\->genders_testattr($attr, [$node])
|
||||
\& $handle\->genders_testattrval($attr, $val, [$node])
|
||||
\&
|
||||
\& $handle\->genders_isnode([$node])
|
||||
\& $handle\->genders_isattr($attr)
|
||||
\& $handle\->genders_isattrval($attr, $val)
|
||||
\&
|
||||
\& $handle\->genders_index_attrvals($attr)
|
||||
\&
|
||||
\& $handle\->genders_query([$query])
|
||||
\& $handle\->genders_testquery($query, [$node])
|
||||
\&
|
||||
\& $handle\->genders_parse([$filename]);
|
||||
.Ve
|
||||
.SH "DESCRIPTION"
|
||||
.IX Header "DESCRIPTION"
|
||||
This package provides a perl interface to the genders C \s-1API\s0 (see
|
||||
\&\fBlibgenders\fR\|(3)). The perl interface is simliar to the genders C \s-1API,\s0
|
||||
with some necessary changes due to the inherent differences between C
|
||||
and perl. Some of the functions from the C \s-1API\s0 cannot be accessed via
|
||||
this perl interface, some new functions were created, the behavior of
|
||||
some functions was modified, and the parameters passed into some
|
||||
functions have been changed. Please read the instructions below so to
|
||||
understand how to use the Libgenders package.
|
||||
.SS "Initialization"
|
||||
.IX Subsection "Initialization"
|
||||
.IP "\fBLibgenders\->genders_handle_create\fR" 4
|
||||
.IX Item "Libgenders->genders_handle_create"
|
||||
Returns a genders object on success, undef on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_load_data([$filename])\fR" 4
|
||||
.IX Item "$handle->genders_load_data([$filename])"
|
||||
Opens, reads, and parses the genders file specified by \f(CW$filename\fR. If
|
||||
\&\f(CW$filename\fR is not specified, the default genders file is parsed.
|
||||
Returns 0 on success, \-1 on error.
|
||||
.SS "Error Messages"
|
||||
.IX Subsection "Error Messages"
|
||||
Similarly to the C \s-1API,\s0 an error code is stored in the genders object
|
||||
after an error has occurred. The following can be used to retrieve
|
||||
the error code and output information about the error.
|
||||
.IP "\fB\f(CB$handle\fB\->\fBgenders_errnum()\fB\fR" 4
|
||||
.IX Item "$handle->genders_errnum()"
|
||||
Returns the error code most recently set.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_strerror($errnum)\fR" 4
|
||||
.IX Item "$handle->genders_strerror($errnum)"
|
||||
Returns a string describing the error code \f(CW$errnum\fR.
|
||||
.IP "\fB\f(CB$handle\fB\->\fBgenders_errormsg()\fB\fR" 4
|
||||
.IX Item "$handle->genders_errormsg()"
|
||||
Returns a string describing the most recent error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_perror([$msg])\fR" 4
|
||||
.IX Item "$handle->genders_perror([$msg])"
|
||||
Outputs \f(CW$msg\fR and a string describing the most recent error to standard
|
||||
error. If \f(CW$msg\fR is not specified, only a description of the most
|
||||
recent error will be output to standard error.
|
||||
.SS "Utility Functions"
|
||||
.IX Subsection "Utility Functions"
|
||||
.IP "\fB\f(CB$handle\fB\->\fBgenders_getnumnodes()\fB\fR" 4
|
||||
.IX Item "$handle->genders_getnumnodes()"
|
||||
Returns the number of nodes listed in the genders file. Returns \-1 on
|
||||
error.
|
||||
.IP "\fB\f(CB$handle\fB\->\fBgenders_getnumattrs()\fB\fR" 4
|
||||
.IX Item "$handle->genders_getnumattrs()"
|
||||
Returns the number of attributes listed in the genders file. Returns
|
||||
\&\-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->\fBgenders_getnodename()\fB\fR" 4
|
||||
.IX Item "$handle->genders_getnodename()"
|
||||
Returns the shortened hostname of the current node. Returns undef on
|
||||
error.
|
||||
.SS "Parsing Functions"
|
||||
.IX Subsection "Parsing Functions"
|
||||
.IP "\fB\f(CB$handle\fB\->genders_getnodes([$attr, [$val]])\fR" 4
|
||||
.IX Item "$handle->genders_getnodes([$attr, [$val]])"
|
||||
Returns a reference to a list of nodes that have the specified
|
||||
attribute and value. If \f(CW$val\fR is not specified, only \f(CW$attr\fR is
|
||||
considered. If both \f(CW$attr\fR and \f(CW$val\fR are not specified, all nodes
|
||||
listed in the genders file are returned. Returns undef on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_getattr([$node])\fR" 4
|
||||
.IX Item "$handle->genders_getattr([$node])"
|
||||
Returns a reference to an array that holds references to two lists.
|
||||
The first list is a reference to an array of attributes for the
|
||||
specified node. The second list is a reference to an array of values
|
||||
for the specified node. If \f(CW$node\fR is not specified, the local node is
|
||||
used. Returns undef on error.
|
||||
.IP "\fB\f(CB$handle\fB\->\fBgenders_getattr_all()\fB\fR" 4
|
||||
.IX Item "$handle->genders_getattr_all()"
|
||||
Returns a reference to a list of all the attributes listed in the
|
||||
genders file. Returns undef on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_getattrval($attr, [$node])\fR" 4
|
||||
.IX Item "$handle->genders_getattrval($attr, [$node])"
|
||||
Returns the value of an attribute listed in a node. Returns the empty
|
||||
string if the attribute has no value. If \f(CW$node\fR is not specified,
|
||||
local node is used. Returns undef on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_testattr($attr, [$node])\fR" 4
|
||||
.IX Item "$handle->genders_testattr($attr, [$node])"
|
||||
Tests if a node has a specified attribute. If \f(CW$node\fR is not specified,
|
||||
local node is used. Returns 1 if the node contains the attribute, 0
|
||||
if not, \-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_testattrval($attr, \f(CB$val\fB, [$node])\fR" 4
|
||||
.IX Item "$handle->genders_testattrval($attr, $val, [$node])"
|
||||
Tests if a node has a specified attribute=value pair. If \f(CW$node\fR is not
|
||||
specified, local node is used. Returns 1 if the node contains the
|
||||
attribute=value pair, 0 if not, \-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_isnode([$node])\fR" 4
|
||||
.IX Item "$handle->genders_isnode([$node])"
|
||||
Tests if a node is listed in the genders file. If \f(CW$node\fR is not
|
||||
specified, local node is used. Returns 1 if the node is listed, 0 if
|
||||
it is not, \-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_isattr($attr)\fR" 4
|
||||
.IX Item "$handle->genders_isattr($attr)"
|
||||
Tests if the attribute \f(CW$attr\fR is listed in the genders file. Returns 1
|
||||
if the attribute is listed, 0 if it is not, \-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_isattrval($attr, \f(CB$val\fB)\fR" 4
|
||||
.IX Item "$handle->genders_isattrval($attr, $val)"
|
||||
Tests if the attribute=value pair is listed in the genders file.
|
||||
Returns 1 if the pair is listed, 0 if it is not, \-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_index_attrvals($attr)\fR" 4
|
||||
.IX Item "$handle->genders_index_attrvals($attr)"
|
||||
Internally adds indexing to decrease search times for genders
|
||||
attribute value combinations. Will specifically aid performance of
|
||||
the genders_getnodes and genders_isattrval functions. Only one
|
||||
attribute can be indexed at a time. Subsequent calls to this function
|
||||
with a different attribute will overwrite earlier indexes.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_query([$query])\fR" 4
|
||||
.IX Item "$handle->genders_query([$query])"
|
||||
Returns a reference to a list of nodes specified by a genders query.
|
||||
A genders query is based on the union, intersection, set difference,
|
||||
or complement between genders attributes and values. Union is
|
||||
represented by two pipe symbols ('||'), intersection by two ampersand
|
||||
symbols ('&&'), difference by two minus symbols ('\-\-'), and complement
|
||||
by a tilde ('~') Operations are performed from left to right.
|
||||
Parentheses may be used to change the order of operations. For
|
||||
example, the following query would retrieve all nodes other than
|
||||
management or login nodes: \*(L"~(mgmt||login)\*(R". If \f(CW$query\fR is not
|
||||
specified, all nodes listed in the genders file are returned. Returns
|
||||
undef on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_testquery($query, [$node])\fR" 4
|
||||
.IX Item "$handle->genders_testquery($query, [$node])"
|
||||
Tests if a node meets the conditions specified in the query. If \f(CW$node\fR
|
||||
is not specified, local node is used. Returns 1 if the node is
|
||||
contained within the query, 0 if not, \-1 on error.
|
||||
.IP "\fB\f(CB$handle\fB\->genders_parse([$filename])\fR" 4
|
||||
.IX Item "$handle->genders_parse([$filename])"
|
||||
Parse a genders file and output parse errors to standard error. If
|
||||
\&\f(CW$filename\fR is not specified, the default genders file is parsed.
|
||||
Returns the number of errors (0 if no parse errors were found) on
|
||||
success, \-1 on error.
|
||||
.SS "Error Codes/Constants"
|
||||
.IX Subsection "Error Codes/Constants"
|
||||
The same error codes and constants listed in /usr/include/genders.h
|
||||
can be accessed through the following functions:
|
||||
.PP
|
||||
.Vb 10
|
||||
\& Libgenders::GENDERS_ERR_SUCCESS
|
||||
\& Libgenders::GENDERS_ERR_NULLHANDLE
|
||||
\& Libgenders::GENDERS_ERR_OPEN
|
||||
\& Libgenders::GENDERS_ERR_READ
|
||||
\& Libgenders::GENDERS_ERR_PARSE
|
||||
\& Libgenders::GENDERS_ERR_NOTLOADED
|
||||
\& Libgenders::GENDERS_ERR_ISLOADED
|
||||
\& Libgenders::GENDERS_ERR_OVERFLOW
|
||||
\& Libgenders::GENDERS_ERR_PARAMETERS
|
||||
\& Libgenders::GENDERS_ERR_NULLPTR
|
||||
\& Libgenders::GENDERS_ERR_NOTFOUND
|
||||
\& Libgenders::GENDERS_ERR_OUTMEM
|
||||
\& Libgenders::GENDERS_ERR_SYNTAX
|
||||
\& Libgenders::GENDERS_ERR_QUERYINPUT
|
||||
\& Libgenders::GENDERS_ERR_MAGIC
|
||||
\& Libgenders::GENDERS_ERR_INTERNAL
|
||||
\& Libgenders::GENDERS_ERR_ERRNUMRANGE
|
||||
\& Libgenders::GENDERS_DEFAULT_FILE
|
||||
.Ve
|
||||
.SH "AUTHOR"
|
||||
.IX Header "AUTHOR"
|
||||
Albert Chu <chu11@llnl.gov>
|
||||
.SH "SEE ALSO"
|
||||
.IX Header "SEE ALSO"
|
||||
libgenders
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
Original Author:
|
||||
Jim Galick <garlick1@llnl.gov>
|
||||
|
||||
Current Maintainer:
|
||||
Albert Chu <chu11@llnl.gov>
|
||||
Executable
+340
@@ -0,0 +1,340 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
Executable
+1918
File diff suppressed because it is too large
Load Diff
Executable
+24
@@ -0,0 +1,24 @@
|
||||
This work was produced at the Lawrence Livermore National Laboratory
|
||||
(LLNL) under Contract No. DE-AC52-07NA27344 (Contract 44) between
|
||||
the U.S. Department of Energy (DOE) and Lawrence Livermore National
|
||||
Security, LLC (LLNS) for the operation of LLNL.
|
||||
|
||||
This work was prepared as an account of work sponsored by an agency of
|
||||
the United States Government. Neither the United States Government nor
|
||||
Lawrence Livermore National Security, LLC nor any of their employees,
|
||||
makes any warranty, express or implied, or assumes any liability or
|
||||
responsibility for the accuracy, completeness, or usefulness of any
|
||||
information, apparatus, product, or process disclosed, or represents
|
||||
that its use would not infringe privately-owned rights.
|
||||
|
||||
Reference herein to any specific commercial products, process, or
|
||||
services by trade name, trademark, manufacturer or otherwise does
|
||||
not necessarily constitute or imply its endorsement, recommendation,
|
||||
or favoring by the United States Government or Lawrence Livermore
|
||||
National Security, LLC. The views and opinions of authors expressed
|
||||
herein do not necessarily state or reflect those of the Untied States
|
||||
Government or Lawrence Livermore National Security, LLC, and shall
|
||||
not be used for advertising or product endorsement purposes.
|
||||
|
||||
The precise terms and conditions for copying, distribution, and
|
||||
modification are specified in the file "COPYING".
|
||||
Executable
+45
@@ -0,0 +1,45 @@
|
||||
Copyright (C) 2001-2007 The Regents of the University of California.
|
||||
Produced at Lawrence Livermore National Laboratory.
|
||||
Written by Jim Garlick <garlick@llnl.gov> and Albert Chu <chu11@llnl.gov>.
|
||||
UCRL-CODE-2003-004.
|
||||
|
||||
This file is part of Genders, an cluster configuration database.
|
||||
For details, see <http://www.llnl.gov/linux/genders/>.
|
||||
|
||||
Genders is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
Genders is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with Genders; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
This notice is required to be provided under our contract with the U.S.
|
||||
Department of Energy (DOE). This work was produced at the University
|
||||
of California, Lawrence Livermore National Laboratory under Contract
|
||||
No. W-7405-ENG-48 with the DOE.
|
||||
|
||||
Neither the United States Government nor the University of California
|
||||
nor any of their employees, makes any warranty, express or implied, or
|
||||
assumes any liability or responsibility for the accuracy, completeness,
|
||||
or usefulness of any information, apparatus, product, or process
|
||||
disclosed, or represents that its use would not infringe
|
||||
privately-owned rights.
|
||||
|
||||
Also, reference herein to any specific commercial products, process, or
|
||||
services by trade name, trademark, manufacturer or otherwise does not
|
||||
necessarily constitute or imply its endorsement, recommendation, or
|
||||
favoring by the United States Government or the University of
|
||||
California. The views and opinions of authors expressed herein do not
|
||||
necessarily state or reflect those of the United States Government or
|
||||
the University of California, and shall not be used for advertising or
|
||||
product endorsement purposes.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification are specified in the file "COPYING".
|
||||
Executable
+229
@@ -0,0 +1,229 @@
|
||||
Copyright 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
|
||||
Foundation, Inc.
|
||||
|
||||
This file is free documentation; the Free Software Foundation gives
|
||||
unlimited permission to copy, distribute and modify it.
|
||||
|
||||
Basic Installation
|
||||
==================
|
||||
|
||||
These are generic installation instructions.
|
||||
|
||||
The `configure' shell script attempts to guess correct values for
|
||||
various system-dependent variables used during compilation. It uses
|
||||
those values to create a `Makefile' in each directory of the package.
|
||||
It may also create one or more `.h' files containing system-dependent
|
||||
definitions. Finally, it creates a shell script `config.status' that
|
||||
you can run in the future to recreate the current configuration, and a
|
||||
file `config.log' containing compiler output (useful mainly for
|
||||
debugging `configure').
|
||||
|
||||
It can also use an optional file (typically called `config.cache'
|
||||
and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
||||
the results of its tests to speed up reconfiguring. (Caching is
|
||||
disabled by default to prevent problems with accidental use of stale
|
||||
cache files.)
|
||||
|
||||
If you need to do unusual things to compile the package, please try
|
||||
to figure out how `configure' could check whether to do them, and mail
|
||||
diffs or instructions to the address given in the `README' so they can
|
||||
be considered for the next release. If you are using the cache, and at
|
||||
some point `config.cache' contains results you don't want to keep, you
|
||||
may remove or edit it.
|
||||
|
||||
The file `configure.ac' (or `configure.in') is used to create
|
||||
`configure' by a program called `autoconf'. You only need
|
||||
`configure.ac' if you want to change it or regenerate `configure' using
|
||||
a newer version of `autoconf'.
|
||||
|
||||
The simplest way to compile this package is:
|
||||
|
||||
1. `cd' to the directory containing the package's source code and type
|
||||
`./configure' to configure the package for your system. If you're
|
||||
using `csh' on an old version of System V, you might need to type
|
||||
`sh ./configure' instead to prevent `csh' from trying to execute
|
||||
`configure' itself.
|
||||
|
||||
Running `configure' takes awhile. While running, it prints some
|
||||
messages telling which features it is checking for.
|
||||
|
||||
2. Type `make' to compile the package.
|
||||
|
||||
3. Optionally, type `make check' to run any self-tests that come with
|
||||
the package.
|
||||
|
||||
4. Type `make install' to install the programs and any data files and
|
||||
documentation.
|
||||
|
||||
5. You can remove the program binaries and object files from the
|
||||
source code directory by typing `make clean'. To also remove the
|
||||
files that `configure' created (so you can compile the package for
|
||||
a different kind of computer), type `make distclean'. There is
|
||||
also a `make maintainer-clean' target, but that is intended mainly
|
||||
for the package's developers. If you use it, you may have to get
|
||||
all sorts of other programs in order to regenerate files that came
|
||||
with the distribution.
|
||||
|
||||
Compilers and Options
|
||||
=====================
|
||||
|
||||
Some systems require unusual options for compilation or linking that
|
||||
the `configure' script does not know about. Run `./configure --help'
|
||||
for details on some of the pertinent environment variables.
|
||||
|
||||
You can give `configure' initial values for configuration parameters
|
||||
by setting variables in the command line or in the environment. Here
|
||||
is an example:
|
||||
|
||||
./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
|
||||
|
||||
*Note Defining Variables::, for more details.
|
||||
|
||||
Compiling For Multiple Architectures
|
||||
====================================
|
||||
|
||||
You can compile the package for more than one kind of computer at the
|
||||
same time, by placing the object files for each architecture in their
|
||||
own directory. To do this, you must use a version of `make' that
|
||||
supports the `VPATH' variable, such as GNU `make'. `cd' to the
|
||||
directory where you want the object files and executables to go and run
|
||||
the `configure' script. `configure' automatically checks for the
|
||||
source code in the directory that `configure' is in and in `..'.
|
||||
|
||||
If you have to use a `make' that does not support the `VPATH'
|
||||
variable, you have to compile the package for one architecture at a
|
||||
time in the source code directory. After you have installed the
|
||||
package for one architecture, use `make distclean' before reconfiguring
|
||||
for another architecture.
|
||||
|
||||
Installation Names
|
||||
==================
|
||||
|
||||
By default, `make install' will install the package's files in
|
||||
`/usr/local/bin', `/usr/local/man', etc. You can specify an
|
||||
installation prefix other than `/usr/local' by giving `configure' the
|
||||
option `--prefix=PATH'.
|
||||
|
||||
You can specify separate installation prefixes for
|
||||
architecture-specific files and architecture-independent files. If you
|
||||
give `configure' the option `--exec-prefix=PATH', the package will use
|
||||
PATH as the prefix for installing programs and libraries.
|
||||
Documentation and other data files will still use the regular prefix.
|
||||
|
||||
In addition, if you use an unusual directory layout you can give
|
||||
options like `--bindir=PATH' to specify different values for particular
|
||||
kinds of files. Run `configure --help' for a list of the directories
|
||||
you can set and what kinds of files go in them.
|
||||
|
||||
If the package supports it, you can cause programs to be installed
|
||||
with an extra prefix or suffix on their names by giving `configure' the
|
||||
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||
|
||||
Optional Features
|
||||
=================
|
||||
|
||||
Some packages pay attention to `--enable-FEATURE' options to
|
||||
`configure', where FEATURE indicates an optional part of the package.
|
||||
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||
is something like `gnu-as' or `x' (for the X Window System). The
|
||||
`README' should mention any `--enable-' and `--with-' options that the
|
||||
package recognizes.
|
||||
|
||||
For packages that use the X Window System, `configure' can usually
|
||||
find the X include and library files automatically, but if it doesn't,
|
||||
you can use the `configure' options `--x-includes=DIR' and
|
||||
`--x-libraries=DIR' to specify their locations.
|
||||
|
||||
Specifying the System Type
|
||||
==========================
|
||||
|
||||
There may be some features `configure' cannot figure out
|
||||
automatically, but needs to determine by the type of machine the package
|
||||
will run on. Usually, assuming the package is built to be run on the
|
||||
_same_ architectures, `configure' can figure that out, but if it prints
|
||||
a message saying it cannot guess the machine type, give it the
|
||||
`--build=TYPE' option. TYPE can either be a short name for the system
|
||||
type, such as `sun4', or a canonical name which has the form:
|
||||
|
||||
CPU-COMPANY-SYSTEM
|
||||
|
||||
where SYSTEM can have one of these forms:
|
||||
|
||||
OS KERNEL-OS
|
||||
|
||||
See the file `config.sub' for the possible values of each field. If
|
||||
`config.sub' isn't included in this package, then this package doesn't
|
||||
need to know the machine type.
|
||||
|
||||
If you are _building_ compiler tools for cross-compiling, you should
|
||||
use the `--target=TYPE' option to select the type of system they will
|
||||
produce code for.
|
||||
|
||||
If you want to _use_ a cross compiler, that generates code for a
|
||||
platform different from the build platform, you should specify the
|
||||
"host" platform (i.e., that on which the generated programs will
|
||||
eventually be run) with `--host=TYPE'.
|
||||
|
||||
Sharing Defaults
|
||||
================
|
||||
|
||||
If you want to set default values for `configure' scripts to share,
|
||||
you can create a site shell script called `config.site' that gives
|
||||
default values for variables like `CC', `cache_file', and `prefix'.
|
||||
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||
`CONFIG_SITE' environment variable to the location of the site script.
|
||||
A warning: not all `configure' scripts look for a site script.
|
||||
|
||||
Defining Variables
|
||||
==================
|
||||
|
||||
Variables not defined in a site shell script can be set in the
|
||||
environment passed to `configure'. However, some packages may run
|
||||
configure again during the build, and the customized values of these
|
||||
variables may be lost. In order to avoid this problem, you should set
|
||||
them in the `configure' command line, using `VAR=value'. For example:
|
||||
|
||||
./configure CC=/usr/local2/bin/gcc
|
||||
|
||||
will cause the specified gcc to be used as the C compiler (unless it is
|
||||
overridden in the site shell script).
|
||||
|
||||
`configure' Invocation
|
||||
======================
|
||||
|
||||
`configure' recognizes the following options to control how it
|
||||
operates.
|
||||
|
||||
`--help'
|
||||
`-h'
|
||||
Print a summary of the options to `configure', and exit.
|
||||
|
||||
`--version'
|
||||
`-V'
|
||||
Print the version of Autoconf used to generate the `configure'
|
||||
script, and exit.
|
||||
|
||||
`--cache-file=FILE'
|
||||
Enable the cache: use and save the results of the tests in FILE,
|
||||
traditionally `config.cache'. FILE defaults to `/dev/null' to
|
||||
disable caching.
|
||||
|
||||
`--config-cache'
|
||||
`-C'
|
||||
Alias for `--cache-file=config.cache'.
|
||||
|
||||
`--quiet'
|
||||
`--silent'
|
||||
`-q'
|
||||
Do not print messages saying which checks are being made. To
|
||||
suppress all normal output, redirect it to `/dev/null' (any error
|
||||
messages will still be shown).
|
||||
|
||||
`--srcdir=DIR'
|
||||
Look for the package's source code in directory DIR. Usually
|
||||
`configure' can determine that directory automatically.
|
||||
|
||||
`configure' also accepts some other, not widely useful, options. Run
|
||||
`configure --help' for more details.
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
##
|
||||
# $Id: META,v 1.53 2010-03-24 21:32:37 chu11 Exp $
|
||||
##
|
||||
# Metadata for RPM/TAR makefile targets
|
||||
##
|
||||
Meta: 1
|
||||
Name: genders
|
||||
Version: 1.28
|
||||
Release: 1
|
||||
Executable
+846
@@ -0,0 +1,846 @@
|
||||
# Makefile.in generated by automake 1.13.4 from Makefile.am.
|
||||
# Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/genders
|
||||
pkgincludedir = $(includedir)/genders
|
||||
pkglibdir = $(libdir)/genders
|
||||
pkglibexecdir = $(libexecdir)/genders
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
target_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = .
|
||||
DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
|
||||
$(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
||||
$(top_srcdir)/configure $(am__configure_deps) \
|
||||
$(top_srcdir)/config/config.h.in $(srcdir)/genders.spec.in \
|
||||
COPYING TODO config/config.guess config/config.sub \
|
||||
config/depcomp config/install-sh config/missing \
|
||||
config/ltmain.sh $(top_srcdir)/config/config.guess \
|
||||
$(top_srcdir)/config/config.sub \
|
||||
$(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \
|
||||
$(top_srcdir)/config/missing
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/config/ac_cplusplus_extensions.m4 \
|
||||
$(top_srcdir)/config/ac_debug.m4 \
|
||||
$(top_srcdir)/config/ac_extension_destdir.m4 \
|
||||
$(top_srcdir)/config/ac_genders_file.m4 \
|
||||
$(top_srcdir)/config/ac_java_extenions.m4 \
|
||||
$(top_srcdir)/config/ac_meta.m4 \
|
||||
$(top_srcdir)/config/ac_perl_extensions.m4 \
|
||||
$(top_srcdir)/config/ac_perl_site_arch.m4 \
|
||||
$(top_srcdir)/config/ac_perl_vendor_arch.m4 \
|
||||
$(top_srcdir)/config/ac_python_extensions.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config/config.h
|
||||
CONFIG_CLEAN_FILES = genders.spec
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
||||
ctags-recursive dvi-recursive html-recursive info-recursive \
|
||||
install-data-recursive install-dvi-recursive \
|
||||
install-exec-recursive install-html-recursive \
|
||||
install-info-recursive install-pdf-recursive \
|
||||
install-ps-recursive install-recursive installcheck-recursive \
|
||||
installdirs-recursive pdf-recursive ps-recursive \
|
||||
tags-recursive uninstall-recursive
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
am__recursive_targets = \
|
||||
$(RECURSIVE_TARGETS) \
|
||||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
CSCOPE = cscope
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
if test -d "$(distdir)"; then \
|
||||
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -rf "$(distdir)" \
|
||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
||||
else :; fi
|
||||
am__post_remove_distdir = $(am__remove_distdir)
|
||||
am__relativize = \
|
||||
dir0=`pwd`; \
|
||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
||||
sed_rest='s,^[^/]*/*,,'; \
|
||||
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
||||
sed_butlast='s,/*[^/]*$$,,'; \
|
||||
while test -n "$$dir1"; do \
|
||||
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
||||
if test "$$first" != "."; then \
|
||||
if test "$$first" = ".."; then \
|
||||
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
||||
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
||||
else \
|
||||
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
||||
if test "$$first2" = "$$first"; then \
|
||||
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
||||
else \
|
||||
dir2="../$$dir2"; \
|
||||
fi; \
|
||||
dir0="$$dir0"/"$$first"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
DIST_TARGETS = dist-gzip
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = aclocal-1.13
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AR = ar
|
||||
AUTOCONF = autoconf
|
||||
AUTOHEADER = autoheader
|
||||
AUTOMAKE = automake-1.13
|
||||
AWK = mawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -O3 -Wall -fno-strict-aliasing
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
EXEEXT =
|
||||
EXTENSION_DESTDIR =
|
||||
FGREP = /usr/bin/grep -F
|
||||
FORCE_YACC =
|
||||
GENDERS_DEFAULT_FILE = "/etc/genders"
|
||||
GREP = /usr/bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
JAR = /usr/bin/jar
|
||||
JAVA = /usr/bin/java
|
||||
JAVAC = /usr/bin/javac
|
||||
JAVADOC = /usr/bin/javadoc
|
||||
JAVAH =
|
||||
LD = /usr/bin/ld -m elf_x86_64
|
||||
LDFLAGS =
|
||||
LEX = flex
|
||||
LEXLIB = -lfl
|
||||
LEX_OUTPUT_ROOT = lex.yy
|
||||
LIBGENDERSJNI_VERSION_INFO = 0:0:0
|
||||
LIBGENDERSPLUSPLUS_VERSION_INFO = 2:0:0
|
||||
LIBGENDERS_VERSION_INFO = 3:3:3
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MANPAGE_DEBUG = 0
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = /usr/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = genders
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = genders
|
||||
PACKAGE_STRING = genders 1.28
|
||||
PACKAGE_TARNAME = genders
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 1.28
|
||||
PATH_SEPARATOR = :
|
||||
PERL = /usr/bin/perl
|
||||
PERLGENDERS_VERSION = 0.03
|
||||
PERLMAN3EXT = 3pm
|
||||
PERL_ARCH_INSTALL = vendor
|
||||
POD2MAN = /usr/bin/pod2man
|
||||
PROJECT = genders
|
||||
PYTHON =
|
||||
PYTHONGENDERS_VERSION = 1.2
|
||||
RANLIB = ranlib
|
||||
RELEASE = 1
|
||||
SED = /usr/bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
STRIP = strip
|
||||
VERSION = 1.28
|
||||
YACC = byacc
|
||||
YFLAGS =
|
||||
abs_builddir = /home/local/DEVEL/genders-master
|
||||
abs_srcdir = /home/local/DEVEL/genders-master
|
||||
abs_top_builddir = /home/local/DEVEL/genders-master
|
||||
abs_top_srcdir = /home/local/DEVEL/genders-master
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = tar --format=ustar -chf - "$$tardir"
|
||||
am__untar = tar -xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /home/local/DEVEL/genders-master/config/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = $(MKDIR_P)
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /home/local/PREFIX
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target = x86_64-unknown-linux-gnu
|
||||
target_alias =
|
||||
target_cpu = x86_64
|
||||
target_os = linux-gnu
|
||||
target_vendor = unknown
|
||||
top_build_prefix =
|
||||
top_builddir = .
|
||||
top_srcdir = .
|
||||
DISTCHECK_CONFIGURE_FLAGS = --with-perl-destdir=$$dc_install_base
|
||||
SUBDIRS = \
|
||||
src \
|
||||
compat \
|
||||
contrib \
|
||||
man
|
||||
|
||||
EXTRA_DIST = META DISCLAIMER DISCLAIMER.UC TUTORIAL genders.sample genders.spec
|
||||
all: all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh: Makefile
|
||||
@:
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
config/config.h: config/stamp-h1
|
||||
@if test ! -f $@; then rm -f config/stamp-h1; else :; fi
|
||||
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) config/stamp-h1; else :; fi
|
||||
|
||||
config/stamp-h1: $(top_srcdir)/config/config.h.in $(top_builddir)/config.status
|
||||
@rm -f config/stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config/config.h
|
||||
$(top_srcdir)/config/config.h.in: # $(am__configure_deps)
|
||||
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
||||
rm -f config/stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config/config.h config/stamp-h1
|
||||
genders.spec: $(top_builddir)/config.status $(srcdir)/genders.spec.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool config.lt
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run 'make' without going through this Makefile.
|
||||
# To change the values of 'make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in 'config.status', edit 'config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run 'make');
|
||||
# (2) otherwise, pass the desired values on the 'make' command line.
|
||||
$(am__recursive_targets):
|
||||
@fail=; \
|
||||
if $(am__make_keepgoing); then \
|
||||
failcom='fail=yes'; \
|
||||
else \
|
||||
failcom='exit 1'; \
|
||||
fi; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-recursive
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-recursive
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscope: cscope.files
|
||||
test ! -s cscope.files \
|
||||
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
||||
clean-cscope:
|
||||
-rm -f cscope.files
|
||||
cscope.files: clean-cscope cscopelist
|
||||
cscopelist: cscopelist-recursive
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
$(am__make_dryrun) \
|
||||
|| test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
||||
$(am__relativize); \
|
||||
new_distdir=$$reldir; \
|
||||
dir1=$$subdir; dir2="$(top_distdir)"; \
|
||||
$(am__relativize); \
|
||||
new_top_distdir=$$reldir; \
|
||||
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
||||
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
||||
($(am__cd) $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$new_top_distdir" \
|
||||
distdir="$$new_distdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
am__skip_mode_fix=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-lzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist dist-all:
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lz*) \
|
||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir)
|
||||
chmod u+w $(distdir)
|
||||
mkdir $(distdir)/_build $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__post_remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@test -n '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: trying to run $@ with an empty' \
|
||||
'$$(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||
am--refresh check check-am clean clean-cscope clean-generic \
|
||||
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
||||
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
||||
dist-xz dist-zip distcheck distclean distclean-generic \
|
||||
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
||||
distdir distuninstallcheck dvi dvi-am html html-am info \
|
||||
info-am install install-am install-data install-data-am \
|
||||
install-dvi install-dvi-am install-exec install-exec-am \
|
||||
install-html install-html-am install-info install-info-am \
|
||||
install-man install-pdf install-pdf-am install-ps \
|
||||
install-ps-am install-strip installcheck installcheck-am \
|
||||
installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
##*****************************************************************************
|
||||
## $Id: Makefile.am,v 1.14 2007-10-17 17:31:14 chu11 Exp $
|
||||
##*****************************************************************************
|
||||
## Process this file with automake to produce Makefile.in.
|
||||
##*****************************************************************************
|
||||
|
||||
DISTCHECK_CONFIGURE_FLAGS = --with-perl-destdir=$$dc_install_base
|
||||
|
||||
SUBDIRS = \
|
||||
src \
|
||||
compat \
|
||||
contrib \
|
||||
man
|
||||
|
||||
EXTRA_DIST = META DISCLAIMER DISCLAIMER.UC TUTORIAL genders.sample genders.spec
|
||||
Executable
+846
@@ -0,0 +1,846 @@
|
||||
# Makefile.in generated by automake 1.13.4 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = .
|
||||
DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
|
||||
$(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
||||
$(top_srcdir)/configure $(am__configure_deps) \
|
||||
$(top_srcdir)/config/config.h.in $(srcdir)/genders.spec.in \
|
||||
COPYING TODO config/config.guess config/config.sub \
|
||||
config/depcomp config/install-sh config/missing \
|
||||
config/ltmain.sh $(top_srcdir)/config/config.guess \
|
||||
$(top_srcdir)/config/config.sub \
|
||||
$(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \
|
||||
$(top_srcdir)/config/missing
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/config/ac_cplusplus_extensions.m4 \
|
||||
$(top_srcdir)/config/ac_debug.m4 \
|
||||
$(top_srcdir)/config/ac_extension_destdir.m4 \
|
||||
$(top_srcdir)/config/ac_genders_file.m4 \
|
||||
$(top_srcdir)/config/ac_java_extenions.m4 \
|
||||
$(top_srcdir)/config/ac_meta.m4 \
|
||||
$(top_srcdir)/config/ac_perl_extensions.m4 \
|
||||
$(top_srcdir)/config/ac_perl_site_arch.m4 \
|
||||
$(top_srcdir)/config/ac_perl_vendor_arch.m4 \
|
||||
$(top_srcdir)/config/ac_python_extensions.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config/config.h
|
||||
CONFIG_CLEAN_FILES = genders.spec
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
AM_V_P = $(am__v_P_@AM_V@)
|
||||
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
||||
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_@AM_V@)
|
||||
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
||||
ctags-recursive dvi-recursive html-recursive info-recursive \
|
||||
install-data-recursive install-dvi-recursive \
|
||||
install-exec-recursive install-html-recursive \
|
||||
install-info-recursive install-pdf-recursive \
|
||||
install-ps-recursive install-recursive installcheck-recursive \
|
||||
installdirs-recursive pdf-recursive ps-recursive \
|
||||
tags-recursive uninstall-recursive
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
am__recursive_targets = \
|
||||
$(RECURSIVE_TARGETS) \
|
||||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
CSCOPE = cscope
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
if test -d "$(distdir)"; then \
|
||||
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -rf "$(distdir)" \
|
||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
||||
else :; fi
|
||||
am__post_remove_distdir = $(am__remove_distdir)
|
||||
am__relativize = \
|
||||
dir0=`pwd`; \
|
||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
||||
sed_rest='s,^[^/]*/*,,'; \
|
||||
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
||||
sed_butlast='s,/*[^/]*$$,,'; \
|
||||
while test -n "$$dir1"; do \
|
||||
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
||||
if test "$$first" != "."; then \
|
||||
if test "$$first" = ".."; then \
|
||||
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
||||
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
||||
else \
|
||||
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
||||
if test "$$first2" = "$$first"; then \
|
||||
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
||||
else \
|
||||
dir2="../$$dir2"; \
|
||||
fi; \
|
||||
dir0="$$dir0"/"$$first"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
DIST_TARGETS = dist-gzip
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
||||
AR = @AR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
EXTENSION_DESTDIR = @EXTENSION_DESTDIR@
|
||||
FGREP = @FGREP@
|
||||
FORCE_YACC = @FORCE_YACC@
|
||||
GENDERS_DEFAULT_FILE = @GENDERS_DEFAULT_FILE@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
JAR = @JAR@
|
||||
JAVA = @JAVA@
|
||||
JAVAC = @JAVAC@
|
||||
JAVADOC = @JAVADOC@
|
||||
JAVAH = @JAVAH@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBGENDERSJNI_VERSION_INFO = @LIBGENDERSJNI_VERSION_INFO@
|
||||
LIBGENDERSPLUSPLUS_VERSION_INFO = @LIBGENDERSPLUSPLUS_VERSION_INFO@
|
||||
LIBGENDERS_VERSION_INFO = @LIBGENDERS_VERSION_INFO@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAINT = @MAINT@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MANPAGE_DEBUG = @MANPAGE_DEBUG@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PERL = @PERL@
|
||||
PERLGENDERS_VERSION = @PERLGENDERS_VERSION@
|
||||
PERLMAN3EXT = @PERLMAN3EXT@
|
||||
PERL_ARCH_INSTALL = @PERL_ARCH_INSTALL@
|
||||
POD2MAN = @POD2MAN@
|
||||
PROJECT = @PROJECT@
|
||||
PYTHON = @PYTHON@
|
||||
PYTHONGENDERS_VERSION = @PYTHONGENDERS_VERSION@
|
||||
RANLIB = @RANLIB@
|
||||
RELEASE = @RELEASE@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
DISTCHECK_CONFIGURE_FLAGS = --with-perl-destdir=$$dc_install_base
|
||||
SUBDIRS = \
|
||||
src \
|
||||
compat \
|
||||
contrib \
|
||||
man
|
||||
|
||||
EXTRA_DIST = META DISCLAIMER DISCLAIMER.UC TUTORIAL genders.sample genders.spec
|
||||
all: all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh: Makefile
|
||||
@:
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
config/config.h: config/stamp-h1
|
||||
@if test ! -f $@; then rm -f config/stamp-h1; else :; fi
|
||||
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) config/stamp-h1; else :; fi
|
||||
|
||||
config/stamp-h1: $(top_srcdir)/config/config.h.in $(top_builddir)/config.status
|
||||
@rm -f config/stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config/config.h
|
||||
$(top_srcdir)/config/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
||||
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
||||
rm -f config/stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config/config.h config/stamp-h1
|
||||
genders.spec: $(top_builddir)/config.status $(srcdir)/genders.spec.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool config.lt
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run 'make' without going through this Makefile.
|
||||
# To change the values of 'make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in 'config.status', edit 'config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run 'make');
|
||||
# (2) otherwise, pass the desired values on the 'make' command line.
|
||||
$(am__recursive_targets):
|
||||
@fail=; \
|
||||
if $(am__make_keepgoing); then \
|
||||
failcom='fail=yes'; \
|
||||
else \
|
||||
failcom='exit 1'; \
|
||||
fi; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-recursive
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-recursive
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscope: cscope.files
|
||||
test ! -s cscope.files \
|
||||
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
||||
clean-cscope:
|
||||
-rm -f cscope.files
|
||||
cscope.files: clean-cscope cscopelist
|
||||
cscopelist: cscopelist-recursive
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
$(am__make_dryrun) \
|
||||
|| test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
||||
$(am__relativize); \
|
||||
new_distdir=$$reldir; \
|
||||
dir1=$$subdir; dir2="$(top_distdir)"; \
|
||||
$(am__relativize); \
|
||||
new_top_distdir=$$reldir; \
|
||||
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
||||
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
||||
($(am__cd) $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$new_top_distdir" \
|
||||
distdir="$$new_distdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
am__skip_mode_fix=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-lzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist dist-all:
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lz*) \
|
||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir)
|
||||
chmod u+w $(distdir)
|
||||
mkdir $(distdir)/_build $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__post_remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@test -n '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: trying to run $@ with an empty' \
|
||||
'$$(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||
am--refresh check check-am clean clean-cscope clean-generic \
|
||||
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
||||
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
||||
dist-xz dist-zip distcheck distclean distclean-generic \
|
||||
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
||||
distdir distuninstallcheck dvi dvi-am html html-am info \
|
||||
info-am install install-am install-data install-data-am \
|
||||
install-dvi install-dvi-am install-exec install-exec-am \
|
||||
install-html install-html-am install-info install-info-am \
|
||||
install-man install-pdf install-pdf-am install-ps \
|
||||
install-ps-am install-strip installcheck installcheck-am \
|
||||
installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
Executable
+185
@@ -0,0 +1,185 @@
|
||||
This file describes changes in recent versions of genders. It
|
||||
primarily documents those changes that are of interest to users
|
||||
and admins.
|
||||
|
||||
Changes in genders-1.27
|
||||
=======================
|
||||
-- Fix parsing corner case, newsline are not required at end of
|
||||
lines.
|
||||
|
||||
Changes in genders-1.26
|
||||
=======================
|
||||
-- Improve genders file parsing performance.
|
||||
|
||||
Changes in genders-1.24
|
||||
=======================
|
||||
-- nodeattr: User can now use -X to exclude from -A.
|
||||
|
||||
Changes in genders-1.23
|
||||
=======================
|
||||
-- Support --compress-hosts option in nodeattr, to compress genders database by
|
||||
hosts rather than attrs.
|
||||
-- Support --compress-attrs option as an alias of --compress for consistency.
|
||||
|
||||
Changes in genders-1.22
|
||||
=======================
|
||||
-- Fix getnodename errors in Python plugin.
|
||||
|
||||
Changes in genders-1.21
|
||||
=======================
|
||||
-- Report proper error on invalidly specified hostranges.
|
||||
-- Remove debug message outputs from convenience libraries.
|
||||
-- Fix documentation errors in perl extensions.
|
||||
-- Add Java extensions for libgenders.
|
||||
|
||||
Changes in genders-1.20
|
||||
=======================
|
||||
-- Fix typo in Genders Python extension.
|
||||
-- Support --with-non-shortened-hostnames compile option.
|
||||
|
||||
Changes in genders-1.19
|
||||
=======================
|
||||
-- By default install perl to vendorarch instead of sitearch.
|
||||
|
||||
Changes in genders-1.18
|
||||
=======================
|
||||
-- Support -A option in nodeattr, to output all nodes.
|
||||
-- Support --expand and --compress options in nodeattr, to output
|
||||
expanded or compressed genders databases.
|
||||
-- Support new libgenders flags.
|
||||
|
||||
Changes in genders-1.17
|
||||
=======================
|
||||
-- Fix RHEL6 build bugs.
|
||||
|
||||
Changes in genders-1.16
|
||||
=======================
|
||||
-- Support --with-perl-vendor-arch and --with-perl-site-arch
|
||||
configure options.
|
||||
|
||||
Changes in genders-1.15
|
||||
=======================
|
||||
-- Fix genders_parse() corner case.
|
||||
-- Fix genders_testattr() corner case.
|
||||
-- Fix potential genders_parse() corruption corner case.
|
||||
-- Force stricter genders file database format rules
|
||||
- Empty string attributes and values no longer allowed
|
||||
- e.g. "node1 attr1="
|
||||
- e.g. "node1 =val1"
|
||||
- Catch errant commas
|
||||
- e.g. "node1 attr1,"
|
||||
- e.g. "node1 attr1,,attr2"
|
||||
-- Include beta Python extensions library.
|
||||
-- Include beta C++ extensions library.
|
||||
|
||||
Changes in genders-1.14
|
||||
=======================
|
||||
-- Support '+' sign in genders query parsing.
|
||||
|
||||
Changes in genders-1.13-2
|
||||
=========================
|
||||
-- Fix FC11/RHEL6 portability bugs.
|
||||
|
||||
Changes in genders-1.13
|
||||
=========================
|
||||
-- Add genders_testquery() library function.
|
||||
-- Add nodeattr -Q option.
|
||||
|
||||
Changes in genders-1.12
|
||||
=========================
|
||||
-- Greatly improve performance of genders parsing.
|
||||
-- Improve performance of many libgenders functions.
|
||||
-- Parsing error descriptions in genders_parse() may be different than before.
|
||||
|
||||
Changes in genders-1.11-4
|
||||
=========================
|
||||
-- Support building without perl extensions.
|
||||
|
||||
Changes in genders-1.11-3
|
||||
=========================
|
||||
-- Fix spec file build requirements.
|
||||
|
||||
Changes in genders-1.11-2
|
||||
=========================
|
||||
-- Fix Solaris build corner cases.
|
||||
|
||||
Changes in genders-1.11-1
|
||||
=========================
|
||||
-- Fix hostrange calculation corner cases.
|
||||
|
||||
Changes in genders-1.10-1
|
||||
=========================
|
||||
-- Minor documentation and bug fixes.
|
||||
|
||||
Changes in genders-1.9-1
|
||||
========================
|
||||
-- Support -V and -U options in nodeattr.
|
||||
-- Minor bug fixes.
|
||||
|
||||
Changes in genders-1.8-1
|
||||
========================
|
||||
-- Support empty genders file as degenerate case.
|
||||
|
||||
Changes in genders-1.7-1
|
||||
========================
|
||||
-- Fix nodeattr -X corner case.
|
||||
|
||||
Changes in genders-1.6-1
|
||||
========================
|
||||
-- Fix bugs in genders querying.
|
||||
-- AIX port patches from Py Watson.
|
||||
-- Solaris port fixes.
|
||||
|
||||
Changes in genders-1.5-2
|
||||
========================
|
||||
-- Alter nodeattr --diff output.
|
||||
|
||||
Changes in genders-1.5-1
|
||||
========================
|
||||
-- Added nodeattr --diff to compare genders databases.
|
||||
-- Added nodeattr -X option.
|
||||
-- AIX Support.
|
||||
|
||||
Changes in genders-1.4-1
|
||||
===========================
|
||||
-- Increased genders loading and search speed.
|
||||
-- Added genders querying ability.
|
||||
-- Removed maximum attribute and value limitations.
|
||||
|
||||
Changes in genders-1.3-1
|
||||
===========================
|
||||
-- Added fixes for the following corner cases:
|
||||
- duplicate attributes
|
||||
- whitespace between attributes and inline comments
|
||||
- trailing whitespace
|
||||
- no nodes listed
|
||||
- no attributes listed
|
||||
-- Added hostrange nodename support to specify ranges of hosts
|
||||
rather than a single node on each line of the genders file
|
||||
-- Nodes can now be specified on multiple lines
|
||||
-- Re-ordered error return code priority within many API functions.
|
||||
For example, when an array of length 0 is specified,
|
||||
GENDERS_ERR_OVERFLOW may be returned instead of GENDERS_ERR_PARAMETERS.
|
||||
|
||||
Changes in genders-1.2-1
|
||||
===========================
|
||||
-- Removed implicit "all" attribute from compat/gendlib.pl. If
|
||||
future use of the "all" attribute is required, it must be listed
|
||||
as an attribute of every node in the genders database. See
|
||||
the genders.sample file for an example.
|
||||
-- Removed use of the /etc/clusters file from compat/gendlib.pl. If
|
||||
future use of a cluster name is required, it must be listed as the
|
||||
value of the "cluster" attribute for each node in the genders
|
||||
database. See the genders.sample file for an example.
|
||||
-- Removed -r and -C options from nodeattr. If future use of the
|
||||
cluster name is required, the value of the "cluster" attribute can
|
||||
be retrieved using the -v option.
|
||||
|
||||
Changes in genders-1.2-pre1
|
||||
===========================
|
||||
-- Hostlist code in hostlist.pl (genders-compat package only)
|
||||
can now expand ranges without a prefix (.e.g "[0-10]" and "0-10")
|
||||
as well as compress back to this same form.
|
||||
-- started NEWS file.
|
||||
|
||||
$Id: NEWS,v 1.37 2010-03-24 21:26:04 chu11 Exp $
|
||||
Executable
+47
@@ -0,0 +1,47 @@
|
||||
Genders is a static cluster configuration database used for cluster
|
||||
configuration management. It is used by a variety of tools and
|
||||
scripts for management of large clusters. The genders database is
|
||||
typically replicated on every node of the cluster. It describes the
|
||||
layout and configuration of the cluster so that tools and scripts can
|
||||
sense the variations of cluster nodes. By abstracting this information
|
||||
into a plain text file, it becomes possible to change the
|
||||
configuration of a cluster by modifying only one file.
|
||||
|
||||
This package includes:
|
||||
|
||||
* libgenders
|
||||
- A C library for parsing and querying a genders database. See
|
||||
libgenders(3).
|
||||
|
||||
* Libgenders.pm
|
||||
- A Perl module developed with Perl Extensions that takes advantage
|
||||
of the already available C library. Perl extensions is limited
|
||||
and provides an unorthodox Perl API. It is therefore recommended
|
||||
that users use Genders.pm. See Libgenders(3).
|
||||
|
||||
* Genders.pm
|
||||
- A Perl module that interfaces with Libgenders.pm, hiding away the
|
||||
ugliness of Libgenders.pm. See Genders(3).
|
||||
|
||||
* nodeattr
|
||||
- A genders query tool that that parses and outputs information from
|
||||
a genders database. See nodeattr(1).
|
||||
|
||||
* gendlib.pl
|
||||
- Genders Perl API for backwards compatability. For the most part,
|
||||
this is used exclusively at Lawrence Livermore National
|
||||
Laboratory. This is probably of no use to anyone else. See
|
||||
gendlib(3).
|
||||
|
||||
* Additional extensions
|
||||
- Additional extensions for Genders with C++, Java, and Python are
|
||||
also available. See packages in src/extensions.
|
||||
|
||||
Comments, patches, fixes, suggestions are always welcome. Please read
|
||||
DISCLAIMER and COPYING for copyright and license information.
|
||||
|
||||
For a thorough introduction to Genders, please read the TUTORIAL.
|
||||
|
||||
Albert Chu
|
||||
chu11@llnl.gov
|
||||
Lawrence Livermore National Laboratories
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
Genders is a static cluster configuration database used for cluster
|
||||
configuration management. It is used by a variety of tools and
|
||||
scripts for management of large clusters. The genders database is
|
||||
typically replicated on every node of the cluster. It describes the
|
||||
layout and configuration of the cluster so that tools and scripts can
|
||||
sense the variations of cluster nodes. By abstracting this information
|
||||
into a plain text file, it becomes possible to change the
|
||||
configuration of a cluster by modifying only one file.
|
||||
|
||||
For a thorough introduction to Genders, please read the TUTORIAL.
|
||||
Executable
+52
@@ -0,0 +1,52 @@
|
||||
- Allow attribute values to be overwritten instead of causing errors
|
||||
by some flag option of some sort.
|
||||
o i.e.
|
||||
#! overwrite-flag
|
||||
a,b,c,d,e,f,g,h,i all,attr=val,printer=foo
|
||||
g,h,i printer=bar
|
||||
- Rework to allow multiple hashed attrval mappings?
|
||||
- List nodes in genders database with incremental ability
|
||||
mcr[1-50/2] would be mcr1,3,5,7,...
|
||||
mcr[1-50/3] would be mcr1,4,7,10,...
|
||||
- think about format, do through hostlist.[ch]??
|
||||
- Aliases for nodesets
|
||||
o i.e.
|
||||
@NODESET1 a,b,c,d,e
|
||||
@NODESET2 f,g,h
|
||||
@NODESET1,@NODESET2 attr1,attr2
|
||||
@NODESET1 attr3
|
||||
- For multilib, repackage everything
|
||||
- genders
|
||||
- genders-lib
|
||||
- genders-perl
|
||||
- must be based on current perl install
|
||||
- genders-compat
|
||||
- feed in genders file to nodeattr via stdin
|
||||
- '-' option?
|
||||
- Support empty genders file
|
||||
- Tool to output all attrs and vals for multiple genders files
|
||||
- Genders query equivalent of testattr?
|
||||
- genders_getnodes return a hostlist range rather than a list
|
||||
- do genders query isolated to a specific node
|
||||
- in libgenders and rest
|
||||
- in nodeattr
|
||||
- genders -> netgroups and netgroups -> genders converter
|
||||
- a %r type expression?
|
||||
- node[1-15] ip=192.168.1.[2-16]
|
||||
- with math?
|
||||
node[0-255] 192.168.1.%r
|
||||
node[256-511] 192.168.2.%r
|
||||
node[512-767] 192.168.3.%r
|
||||
<etc>
|
||||
|
||||
to
|
||||
|
||||
node[0-2047] 192.168.{%r/256 + 1}.{%r % 256}
|
||||
- genders value shouldn't have '=' in them.
|
||||
- make genders_load_data() way faster
|
||||
- int->unsigned int?
|
||||
- possible integer overflows all over the place?
|
||||
- rehashing
|
||||
- readline stuff
|
||||
- use file streams (i.e. fread) to avoid constant syscalls to read()
|
||||
- support FQDN
|
||||
Executable
+291
@@ -0,0 +1,291 @@
|
||||
Genders
|
||||
|
||||
Jim Garlick
|
||||
|
||||
High Performance Computing Systems Group
|
||||
Livermore Computing
|
||||
Lawrence Livermore National Laboratory
|
||||
|
||||
June 19, 2000
|
||||
|
||||
(Revised by Albert Chu - May 2003, April 2004)
|
||||
(Revised by Ben Casses - July 2015)
|
||||
|
||||
------------------------------------------------------------------------
|
||||
NOTE: This document is part of the "Genders" software package,
|
||||
approved by LLNL for public release. Please see the DISCLAIMER file
|
||||
distributed with the package for restrictions.
|
||||
------------------------------------------------------------------------
|
||||
|
||||
Introduction
|
||||
|
||||
Genders is a simple concept that has been extended to address configuration
|
||||
management issues that arise on MPP clusters[1]. The basic concept is that a
|
||||
genders file containing a list of node names and their attributes is
|
||||
replicated on each node in a cluster. By representing the configuration of
|
||||
an MPP in this file, scripts and rdist Distfiles that might otherwise
|
||||
contain hard-coded node lists, can be generalized to work with different
|
||||
configurations of the same cluster, and even with multiple clusters.
|
||||
|
||||
The framework has proven to be useful on clusters ranging in size from the
|
||||
ASCI Blue-Pacific SST system at 1464 nodes, to collections of two or three
|
||||
workstations.
|
||||
|
||||
Basic Operation
|
||||
|
||||
This section describes the formats of the genders file and the nodeattr
|
||||
command. The genders file, briefly described in the introduction, contains
|
||||
a list of node names and attributes. The genders file is typically found
|
||||
in /etc (on Linux when installed from the genders RPM) or /admin/etc (on
|
||||
other systems).
|
||||
|
||||
Genders Format
|
||||
|
||||
Each line of the genders file may have one of the following formats. See
|
||||
the section "Host Ranges" below for most information on host ranges.
|
||||
|
||||
nodename attr[=value],attr[=value],...
|
||||
nodename1,nodename2,... attr[=value],attr[=value],...
|
||||
nodenames[A-B] attr[=value],attr[=value],...
|
||||
|
||||
The nodename(s) is the shortened[2] hostname of a node. This is followed by
|
||||
any number of spaces or tabs, and then the comma-separated list of attributes,
|
||||
each of which can optionally have a value. The substitution string "%n" can
|
||||
be used in an attribute value to represent the nodename. Nodenames can be
|
||||
listed on multiple lines, so a node's attributes can be specified on multiple
|
||||
lines. However, no single node may have duplicate attributes.
|
||||
|
||||
There must be no spaces embedded in the attribute list and there is
|
||||
no provision for continuation lines. Commas and equal characters are special
|
||||
and cannot appear in attribute names or their values. Comments are prefixed
|
||||
with the hash chracter (#) and can appear anywhere in the file. The active
|
||||
genders file is typically found at /etc/genders or /admin/etc/genders.
|
||||
|
||||
Here is an example genders file from a small 16-node linux cluster:
|
||||
|
||||
# slc cluster genders file
|
||||
slci,slcj,slc[0-15] eth2=e%n,cluster=slc,all
|
||||
slci passwdhost
|
||||
slci,slcj management
|
||||
slc[1-15] compute
|
||||
|
||||
Host Ranges
|
||||
|
||||
As noted in section above, the genders database accepts ranges of
|
||||
nodenames in the general form: prefix[n-m,l-k,...], where n < m and l <
|
||||
k, etc., as an alternative to explicit lists of nodenames.
|
||||
|
||||
This range syntax is meant only as a convenience on clusters with a
|
||||
prefixNN naming convention and specification of ranges should not be
|
||||
considered necessary -- the list foo1,foo9 could be specified as such,
|
||||
or by the range foo[1,9].
|
||||
|
||||
Some examples of range usage follow:
|
||||
|
||||
foo01,foo02,foo03,foo04,foo05: foo[01-05]
|
||||
foo3,foo7,foo9,foo11: foo[3,7,9-11]
|
||||
fooi,fooj,foo0,foo1,foo2: fooi,fooj,foo[0-2]
|
||||
|
||||
Host ranges with suffixes, i.e. foo[0-2]x, are generally supported, but behavior
|
||||
may differ.
|
||||
|
||||
Nodeattr Usage
|
||||
|
||||
A program called nodeattr is used to query data in the genders file. Because
|
||||
the genders file is replicated on all nodes in a cluster, this query is a
|
||||
local operation, not dependent on the network. Nodeattr is invoked as
|
||||
follows:
|
||||
|
||||
nodeattr [-f genders] [-q | -c | -n | -s] [-r] attr[=val]
|
||||
nodeattr [-f genders] [-v] [node] attr[=val]
|
||||
nodeattr [-f genders] -l [node]
|
||||
nodeattr [-f genders] -k
|
||||
|
||||
The -f option specifies a genders file path other than the default.
|
||||
|
||||
The -q, -c, -n, or -s options followed by an attribute name cause a list of
|
||||
nodes having the specified attribute to be printed on stdout, formatted
|
||||
according to the option specified: -q (default) is host range, -c is
|
||||
comma-separated, -n is newline separated, and -s is space separated.
|
||||
|
||||
If none of the formatting options are specified, nodeattr returns a zero
|
||||
value if the local node has the specified attribute, else nonzero. The -v
|
||||
option causes any value associated with the attribute to go to stdout. If a
|
||||
node name is specified before the attribute, it is queried instead of the
|
||||
local node.
|
||||
|
||||
The -l option is used to generate a list of attributes for a particular
|
||||
node. If no node is listed, all attributes appearing in the genders file
|
||||
will be listed.
|
||||
|
||||
The -k option checks the genders file for proper formatting. Information
|
||||
about improper formatting will be output to standard error.
|
||||
|
||||
Nodeattr can usually be found in /usr/bin (Linux RPM) or /admin/scripts
|
||||
(other systems).
|
||||
|
||||
Programming with Genders
|
||||
|
||||
Three different APIs have been developed that allow programmers to parse
|
||||
and query the genders file. "libgenders" is a C API which can be linked
|
||||
by including genders.h and linking the library libgenders. "Libgenders"
|
||||
is a Perl module developed with Perl extensions. "Genders" is another
|
||||
Perl modules, but offers a more traditional Perl API than "Libgenders."
|
||||
The reader can learn more about these libraries by reading the manpages
|
||||
libgenders(3), Libgenders(3), and Genders(3).
|
||||
|
||||
Example: Rc Script
|
||||
|
||||
The nodeattr command can enable a single script to behave differently
|
||||
depending on the role or gender of the node it is executing on, simplifying
|
||||
configuration management of the MPP. For example, all nodes in an MPP
|
||||
could have the same rc.local file:
|
||||
|
||||
#!/bin/sh
|
||||
if nodeattr raid; then
|
||||
initialize_raid
|
||||
fi
|
||||
if nodeattr login;
|
||||
then sshd
|
||||
fi
|
||||
...
|
||||
|
||||
If the node has "raid" in its attribute list, it would execute
|
||||
initialize_raid; if it had "login" in its attribute list, it would start the
|
||||
secure shell daemon. This technique is simpler and less prone to failure
|
||||
than adding code to test for "clues" to a nodes function, such as the
|
||||
existence of a RAID device in /dev or a different set of installed products
|
||||
on a login node. Further, changing the role of a node does not require
|
||||
a laborious audit of scripts; one simply changes the genders file and
|
||||
all genders-enabled scripts change their behavior.
|
||||
|
||||
Attribute values might be used to store node configuration information such
|
||||
as a node's default IP route. For example, the node may have an attribute:
|
||||
|
||||
iprouter=big-rtr.llnl.gov
|
||||
|
||||
and rc script could extract this value and pass it to the route command:
|
||||
|
||||
route add net default `nodeattr -v iprouter`
|
||||
|
||||
Example: Host Lists
|
||||
|
||||
Host lists are commonly needed on MPP's to set up parallel jobs or to run
|
||||
system administration commands on particular sets of nodes. In the following
|
||||
example, nodeattr generates a newline-separated list of nodes with the login
|
||||
attribute to pass to the fping parallel ping command:
|
||||
|
||||
fping `nodeattr -c login`
|
||||
|
||||
Batch system configurations typically need lists of nodes that belong to
|
||||
batch queues. These might be generated by assigning nodes belonging to a
|
||||
particular queue an attribute in the genders file and then using nodeattr to
|
||||
generate the batch configuration. For example, an NQS manager host might get
|
||||
its configuration as follows, assuming the nqsmgr and nqscompute attributes
|
||||
are appropriately assigned in the genders file:
|
||||
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Configure queues on the nqsmgr node.
|
||||
#
|
||||
if nodeattr nqsmgr; then
|
||||
|
||||
# All nodes with the nqscompute attribute will be B queue destinations.
|
||||
# Make a comma-separated list of B@host destinations.
|
||||
for host in `nodeattr -n nqscompute`; do
|
||||
CPU_QUEUES=${CPU_QUEUES}B@${host},
|
||||
done
|
||||
CPU_QUEUES=`echo $CPU_QUEUES|sed 's/,$//'`
|
||||
|
||||
echo Adding manager queues
|
||||
qmgr << EOT
|
||||
set log_file /var/spool/nqs/log
|
||||
set shell_strategy fixed = (/bin/sh)
|
||||
set default destination_retry wait 1
|
||||
create pipe_queue X priority = 10 \
|
||||
server = (/usr/lib/nqs/pipeclient) \
|
||||
destination = ($CPU_QUEUES)
|
||||
run_limit = 1
|
||||
set default batch_request queue X
|
||||
enable queue X
|
||||
start queue X
|
||||
exit
|
||||
EOT
|
||||
fi
|
||||
|
||||
#
|
||||
# Configure queues on the nqscompute nodes.
|
||||
#
|
||||
if nodeattr nqscompute; then
|
||||
echo Adding compute queues
|
||||
qmgr << EOT2
|
||||
set log_file /var/spool/nqs/log
|
||||
set shell_strategy fixed = (/bin/sh)
|
||||
create batch_queue A priority=10
|
||||
create pipe_queue B priority=10 \
|
||||
server=(/usr/lib/nqs/pipeclient) \
|
||||
destination=(A) run_limit=1
|
||||
enable queue A
|
||||
enable queue B
|
||||
start queue A
|
||||
start queue B
|
||||
exit
|
||||
EOT2
|
||||
fi
|
||||
exit 0
|
||||
|
||||
Example: nqs_mknmap
|
||||
|
||||
The following script uses the Genders library to get a list of all nodes
|
||||
in the cluster. It then adds them to the NMAP database used by NQS:
|
||||
|
||||
#!/usr/bin/perl
|
||||
#
|
||||
# $Id: TUTORIAL,v 1.9 2004-11-13 19:58:09 achu Exp $
|
||||
# $Source: /g/g0/achu/temp/genders-cvsbackup-full/genders/TUTORIAL,v $
|
||||
#
|
||||
|
||||
use Genders;
|
||||
|
||||
$prog = "nqs_mknmap";
|
||||
$path_nmapmgr = "/usr/bin/nmapmgr";
|
||||
$path_nmapdir = "/etc/nmap";
|
||||
|
||||
if (opendir(DIR, $path_nmapdir)) {
|
||||
foreach $file (grep(!/^\.\.?$/, readdir(DIR))) {
|
||||
unlink("$path_nmapdir/$file");
|
||||
}
|
||||
closedir(DIR);
|
||||
}
|
||||
if (! -d $path_nmapdir) {
|
||||
mkdir($path_nmapdir, 0755);
|
||||
}
|
||||
|
||||
if (open(PIPE, "|$path_nmapmgr")) {
|
||||
printf PIPE ("create\n");
|
||||
$i = 0;
|
||||
$obj = Genders->new();
|
||||
foreach $node ($obj->getnodes()) {
|
||||
printf PIPE ("add mid %d %s\n", $i, $node);
|
||||
$i++;
|
||||
}
|
||||
printf PIPE ("exit\n");
|
||||
close(PIPE);
|
||||
} else {
|
||||
printf STDERR ("%s: could not exec $path_nmap_mgr\n", $prog);
|
||||
exit(1);
|
||||
}
|
||||
exit(0);
|
||||
|
||||
------------------------------------------------------------------------
|
||||
[1] Here a cluster is a collection of nodes that are administered as a unit,
|
||||
where each node runs its own UNIX operating system image.
|
||||
|
||||
[2] This should be the hostname as reported by the hostname -s command.
|
||||
Names for other network interfaces on the same node do not appear in the
|
||||
genders file.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
$Id: TUTORIAL,v 1.9 2004-11-13 19:58:09 achu Exp $
|
||||
$Source: /g/g0/achu/temp/genders-cvsbackup-full/genders/TUTORIAL,v $
|
||||
+9740
File diff suppressed because it is too large
Load Diff
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
##
|
||||
# $Id: autogen.sh,v 1.1 2005-04-19 23:47:27 achu Exp $
|
||||
##
|
||||
|
||||
PATH=/bin:/usr/bin:/usr/local/bin
|
||||
|
||||
set -x
|
||||
aclocal -I config || exit 1
|
||||
libtoolize --copy || exit 1
|
||||
autoheader || exit 1
|
||||
automake --add-missing --copy --gnu || exit 1
|
||||
autoconf --warnings=all || exit 1
|
||||
exit 0
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#! /bin/bash
|
||||
#
|
||||
./configure --prefix=/home/local/PREFIX --with-python-extensions=enable --with-perl-extensions=enable --with-java-extensions=enable
|
||||
make -I/usr/lib/jvm/java-17-openjdk-amd64/include/jni.h
|
||||
make install
|
||||
Executable
+539
@@ -0,0 +1,539 @@
|
||||
# Makefile.in generated by automake 1.13.4 from Makefile.am.
|
||||
# compat/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
|
||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/genders
|
||||
pkgincludedir = $(includedir)/genders
|
||||
pkglibdir = $(libdir)/genders
|
||||
pkglibexecdir = $(libexecdir)/genders
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-unknown-linux-gnu
|
||||
host_triplet = x86_64-unknown-linux-gnu
|
||||
target_triplet = x86_64-unknown-linux-gnu
|
||||
subdir = compat
|
||||
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/config/ac_cplusplus_extensions.m4 \
|
||||
$(top_srcdir)/config/ac_debug.m4 \
|
||||
$(top_srcdir)/config/ac_extension_destdir.m4 \
|
||||
$(top_srcdir)/config/ac_genders_file.m4 \
|
||||
$(top_srcdir)/config/ac_java_extenions.m4 \
|
||||
$(top_srcdir)/config/ac_meta.m4 \
|
||||
$(top_srcdir)/config/ac_perl_extensions.m4 \
|
||||
$(top_srcdir)/config/ac_perl_site_arch.m4 \
|
||||
$(top_srcdir)/config/ac_perl_vendor_arch.m4 \
|
||||
$(top_srcdir)/config/ac_python_extensions.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
am__installdirs = "$(DESTDIR)$(gendlibdir)"
|
||||
SCRIPTS = $(gendlib_SCRIPTS)
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = aclocal-1.13
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AR = ar
|
||||
AUTOCONF = autoconf
|
||||
AUTOHEADER = autoheader
|
||||
AUTOMAKE = automake-1.13
|
||||
AWK = mawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -O3 -Wall -fno-strict-aliasing
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
EXEEXT =
|
||||
EXTENSION_DESTDIR =
|
||||
FGREP = /usr/bin/grep -F
|
||||
FORCE_YACC =
|
||||
GENDERS_DEFAULT_FILE = "/etc/genders"
|
||||
GREP = /usr/bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
JAR = /usr/bin/jar
|
||||
JAVA = /usr/bin/java
|
||||
JAVAC = /usr/bin/javac
|
||||
JAVADOC = /usr/bin/javadoc
|
||||
JAVAH =
|
||||
LD = /usr/bin/ld -m elf_x86_64
|
||||
LDFLAGS =
|
||||
LEX = flex
|
||||
LEXLIB = -lfl
|
||||
LEX_OUTPUT_ROOT = lex.yy
|
||||
LIBGENDERSJNI_VERSION_INFO = 0:0:0
|
||||
LIBGENDERSPLUSPLUS_VERSION_INFO = 2:0:0
|
||||
LIBGENDERS_VERSION_INFO = 3:3:3
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
MAINT = #
|
||||
MAKEINFO = makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MANPAGE_DEBUG = 0
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = /usr/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = genders
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = genders
|
||||
PACKAGE_STRING = genders 1.28
|
||||
PACKAGE_TARNAME = genders
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 1.28
|
||||
PATH_SEPARATOR = :
|
||||
PERL = /usr/bin/perl
|
||||
PERLGENDERS_VERSION = 0.03
|
||||
PERLMAN3EXT = 3pm
|
||||
PERL_ARCH_INSTALL = vendor
|
||||
POD2MAN = /usr/bin/pod2man
|
||||
PROJECT = genders
|
||||
PYTHON =
|
||||
PYTHONGENDERS_VERSION = 1.2
|
||||
RANLIB = ranlib
|
||||
RELEASE = 1
|
||||
SED = /usr/bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
STRIP = strip
|
||||
VERSION = 1.28
|
||||
YACC = byacc
|
||||
YFLAGS =
|
||||
abs_builddir = /home/local/DEVEL/genders-master/compat
|
||||
abs_srcdir = /home/local/DEVEL/genders-master/compat
|
||||
abs_top_builddir = /home/local/DEVEL/genders-master
|
||||
abs_top_srcdir = /home/local/DEVEL/genders-master
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = tar --format=ustar -chf - "$$tardir"
|
||||
am__untar = tar -xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-unknown-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = unknown
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-unknown-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = linux-gnu
|
||||
host_vendor = unknown
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /home/local/DEVEL/genders-master/config/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = $(MKDIR_P)
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /home/local/PREFIX
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target = x86_64-unknown-linux-gnu
|
||||
target_alias =
|
||||
target_cpu = x86_64
|
||||
target_os = linux-gnu
|
||||
target_vendor = unknown
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
|
||||
# Don't use ${libdir}, the /lib is a legacy path that must be maintained
|
||||
gendlibdir = ${prefix}/lib/genders
|
||||
gendlib_SCRIPTS = gendlib.pl hostlist.pl
|
||||
EXTRA_DIST = gendlib.pl hostlist.pl
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu compat/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu compat/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: # $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-gendlibSCRIPTS: $(gendlib_SCRIPTS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(gendlib_SCRIPTS)'; test -n "$(gendlibdir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(gendlibdir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(gendlibdir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
|
||||
done | \
|
||||
sed -e 'p;s,.*/,,;n' \
|
||||
-e 'h;s|.*|.|' \
|
||||
-e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
|
||||
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
|
||||
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
||||
if ($$2 == $$4) { files[d] = files[d] " " $$1; \
|
||||
if (++n[d] == $(am__install_max)) { \
|
||||
print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
|
||||
else { print "f", d "/" $$4, $$1 } } \
|
||||
END { for (d in files) print "f", d, files[d] }' | \
|
||||
while read type dir files; do \
|
||||
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(gendlibdir)$$dir'"; \
|
||||
$(INSTALL_SCRIPT) $$files "$(DESTDIR)$(gendlibdir)$$dir" || exit $$?; \
|
||||
} \
|
||||
; done
|
||||
|
||||
uninstall-gendlibSCRIPTS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(gendlib_SCRIPTS)'; test -n "$(gendlibdir)" || exit 0; \
|
||||
files=`for p in $$list; do echo "$$p"; done | \
|
||||
sed -e 's,.*/,,;$(transform)'`; \
|
||||
dir='$(DESTDIR)$(gendlibdir)'; $(am__uninstall_files_from_dir)
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
tags TAGS:
|
||||
|
||||
ctags CTAGS:
|
||||
|
||||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(SCRIPTS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(gendlibdir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-gendlibSCRIPTS
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-gendlibSCRIPTS
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
cscopelist-am ctags-am distclean distclean-generic \
|
||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am \
|
||||
install-gendlibSCRIPTS install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
|
||||
uninstall-am uninstall-gendlibSCRIPTS
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
##*****************************************************************************
|
||||
## $Id: Makefile.am,v 1.4 2004-12-14 21:39:23 achu Exp $
|
||||
##*****************************************************************************
|
||||
## Process this file with automake to produce Makefile.in.
|
||||
##*****************************************************************************
|
||||
|
||||
# Don't use ${libdir}, the /lib is a legacy path that must be maintained
|
||||
gendlibdir = ${prefix}/lib/genders
|
||||
gendlib_SCRIPTS = gendlib.pl hostlist.pl
|
||||
EXTRA_DIST = gendlib.pl hostlist.pl
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user