blob: 90f6e285b65c7dd2a57e57e30cb866d9c11f3187 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
#ifndef PROXY_ATTR_H_
#define PROXY_ATTR_H_
/*
* Predefined attribute ID's and values. These must EXACTLY match org.eclipse.ptp.core.elements.attributes
*/
/*
* Element attributes
*/
#define ELEMENT_ID_ATTR "id"
#define ELEMENT_NAME_ATTR "name"
/*
* Machine attributes
*/
#define MACHINE_STATE_ATTR "machineState"
#define MACHINE_STATE_UNKNOWN "UNKNOWN"
#define MACHINE_STATE_UP "UP"
#define MACHINE_STATE_DOWN "DOWN"
#define MACHINE_STATE_ALERT "ALERT"
/*
* Job attributes
*/
#define JOB_STATE_ATTR "jobState"
#define JOB_STATE_INIT "STARTED"
#define JOB_STATE_RUNNING "RUNNING"
#define JOB_STATE_TERMINATED "TERMINATED"
#define JOB_STATE_ERROR "ERROR"
#define JOB_SUB_ID_ATTR "jobSubId"
#define JOB_ID_ATTR "jobId"
#define JOB_NUM_PROCS_ATTR "jobNumProcs"
#define JOB_EXEC_NAME_ATTR "execName"
#define JOB_EXEC_PATH_ATTR "execPath"
#define JOB_WORKING_DIR_ATTR "workingDir"
#define JOB_PROG_ARGS_ATTR "progArgs"
#define JOB_ENV_ATTR "env"
#define JOB_DEBUG_EXEC_NAME_ATTR "debugExecName"
#define JOB_DEBUG_EXEC_PATH_ATTR "debugExecPath"
#define JOB_DEBUG_ARGS_ATTR "debugArgs"
#define JOB_DEBUG_FLAG_ATTR "debug"
/*
* Node attributes
*/
#define NODE_STATE_ATTR "nodeState"
#define NODE_STATE_UP "UP"
#define NODE_STATE_DOWN "DOWN"
#define NODE_STATE_ERROR "ERROR"
#define NODE_STATE_UNKNOWN "UNKNOWN"
#define NODE_NUMBER_ATTR "nodeNumber"
#ifdef HAVE_SYS_BPROC_H
#define NODE_GROUP_ATTR "nodeGroup"
#define NODE_USER_ATTR "nodeUser"
#define NODE_MODE_ATTR "nodeMode"
#define DEFAULT_NODE_MODE 0111
#endif /* HAVE_SYS_BPROC_H */
/*
* Queue attributes
*/
#define QUEUE_STATE_ATTR "queueState"
#define QUEUE_STATE_NORMAL "NORMAL"
#define QUEUE_STATE_COLLECTING "COLLECTING"
#define QUEUE_STATE_DRAINING "DRAINING"
#define QUEUE_STATE_STOPPED "STOPPED"
#define QUEUE_ID_ATTR "queueId"
/*
* Process attributes
*/
#define PROC_STATE_ATTR "processState"
#define PROC_STATE_STARTING "STARTING"
#define PROC_STATE_RUNNING "RUNNING"
#define PROC_STATE_EXITED "EXITED"
#define PROC_STATE_EXITED_SIGNALLED "EXITED_SIGNALLED"
#define PROC_STATE_STOPPED "STOPPED"
#define PROC_STATE_ERROR "ERROR"
#define PROC_NODEID_ATTR "processNodeId"
#define PROC_PID_ATTR "processPID"
#define PROC_INDEX_ATTR "processIndex"
#define PROC_STDOUT_ATTR "processStdout"
#define PROC_EXITCODE_ATTR "processExitCode"
#define PROC_SIGNALNAME_ATTR "processSignalName"
/*
* Message attributes
*/
#define MSG_LEVEL_ATTR "messageLevel"
#define MSG_LEVEL_FATAL "FATAL"
#define MSG_LEVEL_ERROR "ERROR"
#define MSG_LEVEL_WARNING "WARNING"
#define MSG_LEVEL_INFO "INFO"
#define MSG_CODE_ATTR "messageCode"
#define MSG_TEXT_ATTR "messageText"
/*
* ERROR attributes
*/
#define ERROR_CODE_ATTR "errorCode"
#define ERROR_MSG_ATTR "errorMsg"
/*
* Miscellaneous attributes
*/
#define PROTOCOL_VERSION_ATTR "version"
#define BASE_ID_ATTR "baseId"
extern int proxy_test_attribute(char *key, char *attr_str);
extern char * proxy_get_attribute_value_str(char *attr_str);
extern int proxy_get_attribute_value_int(char *attr_str);
extern int proxy_get_attribute_value_bool(char *attr_str);
#endif /*PROXY_ATTR_H_*/