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
|
#include "../machine.h"
#include <errno.h>
#ifdef SYSV
#include <string.h>
#else
#include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include "../comm/libCalCom.h"
#include "../comm/libCom.h"
extern void GetMsg();
extern void cerro();
extern void cout();
#define MAXNETWINDOW 512
char *Netwindows[MAXNETWINDOW];
int theNetwindow = 0;
int nNetwindows = 0;
#define MAXNAM 80
static char str[MAXNAM];
void C2F(inimet)(scr,path,lpath)
int *scr;
char *path;
int *lpath;
{
char windowname[MAXNAM];
char command[2 * MAXNAM];
char warg[MAXNAM];
char* env;
char server[MAXHOSTLEN];
char dir[1024];
path[*lpath] = '\0';
strcpy(dir,path);
if (!strcmp(path," ")) getwd(dir);
gethostname(server,MAXHOSTLEN);
GetMsg();
nNetwindows++;
if (nNetwindows > MAXNETWINDOW) {
cerro("Too many windows");
return;
}
sprintf(windowname,"Metanet%d", nNetwindows);
if ((Netwindows[nNetwindows - 1] =
(char *)malloc((strlen(windowname)+1) * sizeof(char))) == NULL) {
cerro("Running out of memory");
return;
}
strcpy(Netwindows[nNetwindows - 1],windowname);
env = getenv("XMETANET");
if (env == NULL) {
env = getenv("SCI");
if (env == NULL) {
cerro("The environment variable SCI is not defined");
return;
}
else sprintf(command,"%s/bin/xmetanet",env);
}
else sprintf(command,"%s",env);
sprintf(warg,"%d",nNetwindows);
envoyer_message_parametres_var(ID_GeCI,
MSG_LANCER_APPLI,
windowname,
server,
command,
"-w",
warg,
path,
"__ID_PIPES__",
NULL);
if (theNetwindow != 0) {
envoyer_message_parametres_var(ID_GeCI,
MSG_DETRUIRE_LIAISON,
identificateur_appli(),
Netwindows[theNetwindow - 1],NULL);
envoyer_message_parametres_var(ID_GeCI,
MSG_DETRUIRE_LIAISON,
Netwindows[theNetwindow - 1],
identificateur_appli(),NULL);
}
theNetwindow = nNetwindows;
envoyer_message_parametres_var(ID_GeCI,
MSG_CREER_LIAISON,
identificateur_appli(),
Netwindows[theNetwindow - 1],NULL);
envoyer_message_parametres_var(ID_GeCI,
MSG_CREER_LIAISON,
Netwindows[theNetwindow - 1],
identificateur_appli(),NULL);
*scr = theNetwindow;
}
/* checkNetconnect and checkTheNetwindow must be called before using XMetanet
typically you put at the beginning of each function speaking to XMetanet:
if (!checkNetconnect() || !checkTheNetwindow()) return;
*/
int checkNetconnect()
{
/* checking for closed Metanet windows */
GetMsg();
if (nNetwindows == 0) {
cerro("You must first execute Metanet");
return 0;
}
return 1;
}
int checkTheNetwindow()
{
if (theNetwindow == 0) {
cerro("The current window is closed");
return 0;
}
return 1;
}
void C2F(netwindow)(s)
int *s;
{
char fname[MAXNAM];
char str[MAXNAM];
if (checkNetconnect() == 0) return;
if (*s > nNetwindows || *s < 1) {
sprintf(str,"Bad window number: %d",*s);
cerro(str);
return;
}
if (strcmp(Netwindows[*s - 1],"CLOSED") == 0) {
sprintf(str,"Window number %d is closed",*s);
cerro(str);
return;
}
if (theNetwindow != 0) {
envoyer_message_parametres_var(ID_GeCI,
MSG_DETRUIRE_LIAISON,
identificateur_appli(),
Netwindows[theNetwindow - 1],NULL);
envoyer_message_parametres_var(ID_GeCI,
MSG_DETRUIRE_LIAISON,
Netwindows[theNetwindow - 1],
identificateur_appli(),NULL);
}
theNetwindow = *s;
envoyer_message_parametres_var(ID_GeCI,
MSG_CREER_LIAISON,
identificateur_appli(),
Netwindows[theNetwindow - 1],NULL);
envoyer_message_parametres_var(ID_GeCI,
MSG_CREER_LIAISON,
Netwindows[theNetwindow - 1],
identificateur_appli(),NULL);
}
void C2F(netwindows)(vs,nvs,cv)
int **vs;
int *nvs;
int *cv;
{
char fname[MAXNAM];
int i,j;
int s[MAXNETWINDOW];
GetMsg();
*nvs = 0;
*cv = 0;
if (nNetwindows == 0) return;
j = 0;
for (i = 1; i <= nNetwindows; i++ ) {
if (strcmp(Netwindows[i - 1],"CLOSED") != 0)
s[j++] = i;
}
*nvs = j;
if (j == 0) return;
if ((*vs = (int *)malloc(*nvs * sizeof(int))) == NULL) {
cerro("Running out of memory");
return;
}
for (i = 0; i < *nvs; i++){
(*vs)[i] = s[i];
}
*cv = theNetwindow;
}
void CloseNetwindow(s)
int s;
{
if ((Netwindows[s - 1] =
(char *)malloc((strlen("CLOSED")+1) * sizeof(char))) == NULL) {
cerro("Running out of memory");
return;
}
strcpy(Netwindows[s - 1],"CLOSED");
if (theNetwindow == s) {
sprintf(str,"Warning: current Metanet window %d has been closed",s);
cout(str);
theNetwindow = 0;
}
}
|