/usr/include/ug/join.h is in libdune-uggrid-dev 2.5.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
/****************************************************************************/
/* */
/* File: join.h */
/* */
/* Purpose: header file for join environment */
/* */
/* Author: Klaus Birken */
/* Institut fuer Computeranwendungen III */
/* Universitaet Stuttgart */
/* Pfaffenwaldring 27 */
/* 70569 Stuttgart */
/* email: birken@ica3.uni-stuttgart.de */
/* phone: 0049-(0)711-685-7007 */
/* fax : 0049-(0)711-685-7000 */
/* */
/* History: 980126 kb begin */
/* */
/* Remarks: */
/* */
/****************************************************************************/
/****************************************************************************/
/* */
/* auto include mechanism and other include files */
/* */
/****************************************************************************/
#ifndef __JOIN_H__
#define __JOIN_H__
#define DebugJoin 10 /* 0 is all, 10 is off */
#include "basic/lowcomm.h"
#include "basic/oopp.h" /* for object-orientated style via preprocessor */
START_UGDIM_NAMESPACE
/****************************************************************************/
/* */
/* defines in the following order */
/* */
/* compile time constants defining static data size (i.e. arrays) */
/* other constants */
/* macros */
/* */
/****************************************************************************/
/* some macros for customizing oopp */
#define _NEWPARAMS
#define _NEWPARAMS_OR_VOID void
#define __INDENT(n) { int i; for(i=0; i<n; i++) fputs(" ",fp);}
#define _PRINTPARAMS , int indent, FILE *fp
#define _PRINTPARAMS_DEFAULT ,0,stdout
#define _INDENT __INDENT(indent)
#define _INDENT1 __INDENT(indent+1)
#define _INDENT2 __INDENT(indent+2)
#define _PRINTNEXT , indent+1, fp
#define _PRINTSAME , indent, fp
/* map memory allocation calls */
#define OO_Allocate join_AllocTmp
#define OO_Free join_FreeTmp
/* extra prefix for all join-related data structures and/or typedefs */
/*#define ClassPrefix*/
/* overall mode of Join */
enum JoinMode {
JMODE_IDLE = 0, /* waiting for next DDD_JoinBegin() */
JMODE_CMDS, /* after DDD_JoinBegin(), before DDD_JoinEnd() */
JMODE_BUSY /* during DDD_JoinEnd() */
};
/****************************************************************************/
/* */
/* data structures exported by the corresponding source file */
/* */
/****************************************************************************/
/****************************************************************************/
/* JIJoin: represents JoinObj command from application */
/****************************************************************************/
#define ClassName JIJoin
Class_Data_Begin
DDD_HDR hdr; /* local obj for which the join is requested */
DDD_PROC dest; /* proc for joining */
DDD_GID new_gid; /* gid of object on dest which should be joined */
Class_Data_End
void Method(Print) (DefThis _PRINTPARAMS);
int Method(Compare) (ClassPtr, ClassPtr);
#undef ClassName
/* define container class */
#ifndef SetOf /* necessary for inline documentation only */
#define SetOf JIJoin
#define Set_SegmSize 256
#define Set_BTreeOrder 32
#endif
#include "basic/ooppcc.h"
/****************************************************************************/
/* JIPartner: description of phase1 message on sender side */
/****************************************************************************/
typedef struct _JIPartner
{
DDD_HDR hdr; /* local obj which has been contacted by join */
DDD_PROC proc; /* proc which initiated join */
} JIPartner;
/****************************************************************************/
/* JIAddCpl: remote command to add cpl for join-obj during phase 2 */
/****************************************************************************/
typedef struct _TEAddCpl
{
DDD_GID gid; /* gid of object to add coupling */
DDD_PROC proc; /* proc of new coupling */
DDD_PRIO prio; /* prio of new coupling */
} TEAddCpl;
#define ClassName JIAddCpl
Class_Data_Begin
DDD_PROC dest; /* receiver of this item */
TEAddCpl te; /* table entry (for message) */
Class_Data_End
void Method(Print) (DefThis _PRINTPARAMS);
int Method(Compare) (ClassPtr, ClassPtr);
#undef ClassName
/* define container class */
#ifndef SetOf /* necessary for inline documentation only */
#define SetOf JIAddCpl
#define Set_SegmSize 256
#define Set_BTreeOrder 32
#endif
#include "basic/ooppcc.h"
/****************************************************************************/
/* JOINMSG1: description of phase1 message on sender side */
/****************************************************************************/
typedef struct _TEJoin
{
DDD_GID gid; /* gid of distributed obj to join with */
DDD_PRIO prio; /* prio of new local object which is joined */
DDD_HDR hdr; /* hdr of local DDD object (only for receiver) */
} TEJoin;
typedef struct _JOINMSG1
{
DDD_PROC dest; /* receiver of message */
struct _JOINMSG1 *next;
JIJoinPtr *arrayJoin;
int nJoins;
/* lowcomm message handle */
LC_MSGHANDLE msg_h;
} JOINMSG1;
/****************************************************************************/
/* JOINMSG2: description of phase2 message on sender side */
/****************************************************************************/
typedef struct _JOINMSG2
{
DDD_PROC dest; /* receiver of message */
struct _JOINMSG2 *next;
JIAddCplPtr *arrayAddCpl;
int nAddCpls;
/* lowcomm message handle */
LC_MSGHANDLE msg_h;
} JOINMSG2;
/****************************************************************************/
/* JOINMSG3: description of phase3 message on sender side */
/****************************************************************************/
typedef struct _JOINMSG3
{
DDD_PROC dest; /* receiver of message */
struct _JOINMSG3 *next;
JIAddCplPtr *arrayAddCpl;
int nAddCpls;
/* lowcomm message handle */
LC_MSGHANDLE msg_h;
} JOINMSG3;
/****************************************************************************/
/* JOIN_GLOBALS: global data for join module */
/****************************************************************************/
typedef struct _JOIN_GLOBALS
{
/* mode of join module */
int joinMode;
/* description for phase1 message */
LC_MSGTYPE phase1msg_t;
LC_MSGCOMP jointab_id;
/* description for phase2 message */
LC_MSGTYPE phase2msg_t;
LC_MSGCOMP addtab_id;
/* description for phase3 message */
LC_MSGTYPE phase3msg_t;
LC_MSGCOMP cpltab_id;
/* entry points for global sets */
JIJoinSet *setJIJoin;
JIAddCplSet *setJIAddCpl2;
JIAddCplSet *setJIAddCpl3;
} JOIN_GLOBALS;
/* one instance of JOIN_GLOBALS */
extern JOIN_GLOBALS joinGlobals;
/****************************************************************************/
/****************************************************************************/
/* */
/* function declarations */
/* */
/****************************************************************************/
/* join.c, used only by cmds.c */
/*
XICopyObj **CplClosureEstimate(XICopyObjPtrArray *, int *);
int PrepareObjMsgs(XICopyObjPtrArray *, XINewCpl **, int,
XIOldCpl **, int, XFERMSG **, size_t *);
void ExecLocalXIDelCmd(XIDelCmd **, int);
void ExecLocalXISetPrio(XISetPrioPtrArray *, XIDelObj **,int, XICopyObj **,int);
void ExecLocalXIDelObj(XIDelObj **, int, XICopyObj **,int);
void PropagateCplInfos(XISetPrio **, int, XIDelObj **, int,
TENewCpl *, int);
*/
void join_SetTmpMem (int);
int JoinMode (void);
int JoinStepMode(int);
/* pack.c, used only by cmds.c */
/*
void XferPackMsgs (XFERMSG *);
*/
/* unpack.c, used only by cmds.c */
/*
void XferUnpack (LC_MSGHANDLE *, int, DDD_HDR *, int,
XISetPrioPtrArray *, XIDelObj **, int,
XICopyObjPtrArray *, XICopyObj **, int);
*/
/* ctrl.c */
/*
void XferDisplayMsg (char *comment, LC_MSGHANDLE);
*/
END_UGDIM_NAMESPACE
#endif
|