00001 /* SVN FILE INFO 00002 * $Revision: 279 $ : Last Committed Revision 00003 * $Date: 2009-04-03 13:48:18 -0700 (Fri, 03 Apr 2009) $ : Last Committed Date */ 00004 /*[ 00005 * Copyright (c) 2007 Integration Engineering Laboratory 00006 University of California, Davis 00007 * 00008 * Permission to use, copy, and distribute this software and its 00009 * documentation for any purpose with or without fee is hereby granted, 00010 * provided that the above copyright notice appear in all copies and 00011 * that both that copyright notice and this permission notice appear 00012 * in supporting documentation. 00013 * 00014 * Permission to modify the software is granted, but not the right to 00015 * distribute the complete modified source code. Modifications are to 00016 * be distributed as patches to the released version. Permission to 00017 * distribute binaries produced by compiling modified sources is granted, 00018 * provided you 00019 * 1. distribute the corresponding source modifications from the 00020 * released version in the form of a patch file along with the binaries, 00021 * 2. add special version identification to distinguish your version 00022 * in addition to the base release version number, 00023 * 3. provide your name and address as the primary contact for the 00024 * support of your modified version, and 00025 * 4. retain our contact information in regard to use of the base 00026 * software. 00027 * Permission to distribute the released version of the source code along 00028 * with corresponding source modifications in the form of a patch file is 00029 * granted with same provisions 2 through 4 for binary distributions. 00030 * 00031 * This software is provided "as is" without express or implied warranty 00032 * to the extent permitted by applicable law. 00033 ]*/ 00034 00035 #ifndef _AGENT_TASK_H_ 00036 #define _AGENT_TASK_H_ 00037 #include "interpreter_variable_data.h" 00038 #include "data_structures.h" 00039 00040 typedef struct agent_task_s{ 00041 00042 int number_of_elements; 00043 int size_of_element_array; 00044 int persistent; 00045 int init_agent_status; 00046 00047 char* var_name; 00048 char* server_name; 00049 char* code_id; 00050 00051 /* data elements */ 00052 interpreter_variable_data_t* agent_return_data; 00053 struct agent_variable_list_s* agent_variable_list; 00054 char** saved_variables; 00055 int num_saved_variables; 00056 00057 } agent_task_t; 00058 00059 typedef agent_task_t* agent_task_p; 00060 00061 agent_task_p 00062 agent_task_New(void); 00063 00064 agent_task_p 00065 agent_task_Copy(agent_task_p task); 00066 00067 int 00068 agent_task_Destroy(agent_task_p agent_task); 00069 #endif