4 * author: frank zirkelbach (frank.zirkelbach@physik.uni-augsburg.de)
6 * this program tries helping to understand the amorphous depuration
7 * and recrystallization of SiCx while ion implantation at temperatures
8 * below 400 degree celsius.
9 * hopefully the program will simulate the stabilization of the
10 * selforganizing lamella structure in the observed behaviour.
13 * - J. K. N. Lindner. Habil.Schrift, Universitaet Augsburg.
14 * - Maik Haeberlen. Diplomarbeit, Universitaet Augsburg.
16 * Copyright (C) 2004 Frank Zirkelbach
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38 #include <sys/types.h>
52 #include "nlsop_general.h"
54 #define LOGFILE "nlsop_gui_logfile"
60 printf("%s -i <ip> -p <port> -l <logfile>\n",prog);
65 * gui internal functions
68 int display_new_line(t_display *display,t_input *input,char *text) {
79 tmp=(unsigned char *)malloc(display->max_x);
80 memset(tmp,0x20,display->max_x);
82 display_line(display,0,0,x,0,'#');
83 display_string(display,x/2-17,1,"nlsop gui (C) 2004 Frank Zirkelbach",35);
84 display_line(display,0,2,x,2,'#');
85 display_line(display,0,y-1,x,y-1,'#');
86 display_string(display,0,y,"prompt: ",8);
87 memcpy(tmp,input->content,input->c_count);
88 display_string(display,8,y,tmp,x-9);
92 for(i=0;i<display->max_y-6;i++) {
93 memcpy(display->screen+ptr,display->screen+ptr+display->max_x,
98 memcpy(display->screen+ptr,text,i);
99 memset(display->screen+ptr+i,0x20,x-i);
102 display_draw(display);
103 display_set_cursor(display,8+input->c_count,y);
108 int send_and_wait_for_answer(t_net *net,t_display *display,t_input *input) {
113 char string[MAX_CONTENT];
117 /* request information */
118 network_send_chan(net,0,&data,sizeof(unsigned char));
120 /* receive information */
121 network_receive_chan(net,0,&data,sizeof(unsigned char));
123 display_new_line(display,input,"no gui info answer, ignored");
127 network_receive_chan(net,0,(unsigned char *)&count,sizeof(int));
128 for(i=0;i<count;i++) {
129 network_receive_chan(net,0,(unsigned char *)&job,sizeof(t_job));
130 snprintf(string,MAX_CONTENT,
131 "channel %d %c => b=%f c=%f s=%f | d: %d %f | %d",
132 job.channel,job.status&IN_WORK?'a':'q',
133 job.info.b,job.info.c,job.info.s,
134 job.info.diff_rate,job.info.dr_ac,job.progress);
135 display_new_line(display,input,string);
138 display_new_line(display,input,"done");
143 int send_job(t_net *net,t_input *input,t_display *display) {
145 char command[MAX_CONTENT];
157 info.diff_rate=DIFF_RATE;
160 info.save_rate=RESAVE;
166 strncpy(command,input->content,MAX_CONTENT);
169 ptr=strtok(command," ");
170 while((ptr=strtok(NULL," "))!=NULL) {
182 info.diff_rate=atoi(ptr+1);
185 info.dr_ac=atof(ptr+1);
188 info.steps=atoi(ptr+1);
191 info.cpi=atoi(ptr+1);
194 info.range=atoi(ptr+1);
197 info.s_rate=atoi(ptr+1);
200 info.save_rate=atoi(ptr+1);
212 display_new_line(display,input,"unknown command");
213 dprintf(display->outfd,"unknown command %s\n",ptr);
218 command[0]=GUI_ADDJOB;
219 network_send_chan(net,0,command,1);
221 network_send_chan(net,0,(unsigned char *)&x,sizeof(int));
222 network_send_chan(net,0,(unsigned char *)&y,sizeof(int));
223 network_send_chan(net,0,(unsigned char *)&z,sizeof(int));
225 network_send_chan(net,0,(unsigned char *)&info,sizeof(info));
227 display_new_line(display,input,"added new job:");
228 snprintf(command,MAX_CONTENT,"b:%f | c:%f | s:%f | d: %d %f | %d",
229 info.b,info.c,info.s,info.diff_rate,info.dr_ac,info.steps);
230 display_new_line(display,input,command);
236 int get_whatever(t_input *input,void *ptr) {
241 display=(t_display *)ptr;
243 last=input->content[input->c_count-1];
245 if((last=='\n')||(last=='\r')) {
246 input->content[input->c_count-1]='\0';
251 display_new_line(display,input,NULL);
256 int nothing(t_event *event,void *allineed) {
261 int send_quit(t_net *net) {
267 network_send_chan(net,0,&data,1);
272 int get_command(t_event *event,void *allineed) {
277 unsigned int addr[3];
279 memcpy(addr,allineed,3*sizeof(unsigned int));
280 net=(t_net *)addr[0];
281 display=(t_display *)addr[1];
282 input=(t_input *)addr[2];
284 input_get_event(input,get_whatever,display);
286 /* if there was a new line! */
287 if(input->c_count==0) {
288 switch(input->content[0]) {
290 send_and_wait_for_answer(net,display,input);
293 send_job(net,input,display);
296 /* stop everything */
297 event_math(0,event,READ,REMOVE);
299 network_shutdown(net);
300 input_shutdown(input);
301 display_shutdown(display);
305 display_new_line(display,input,"unknown gui command");
317 int main(int argc,char **argv)
334 unsigned int addr[3];
337 allyouneed=(void *)addr;
339 addr[0]=(unsigned int)&net;
340 addr[1]=(unsigned int)&display;
341 addr[2]=(unsigned int)&input;
344 strcpy(logfile,LOGFILE);
345 strcpy(server_ip,"");
348 /* parse/check argv */
349 for(i=1;i<argc;i++) {
350 if(argv[i][0]=='-') {
356 strncpy(server_ip,argv[++i],16);
359 port=atoi(argv[++i]);
362 strncpy(logfile,argv[++i],64);
370 if(!strcmp(server_ip,"")) {
375 if((fd=open(logfile,O_WRONLY|O_CREAT))<0) {
376 printf("unable to open file %s\n",logfile);
381 display_init(&display,fd);
384 input_init(&input,fd);
385 input.mode=CONTENT_BUFFER|ECHO;
386 input_ios_init(&input);
389 event_init(&event,fd);
390 event_set_timeout(&event,0,0);
392 /* user interaction */
393 event_math(0,&event,READ,ADD);
395 display_new_line(&display,&input,"welcome to nlsop gui! :)");
397 /* connect to server */
398 network_init(&net,fd);
399 network_set_connection_info(&net,0,server_ip,port);
400 if(network_connect(&net,0)==N_E_CONNECT) {
401 printf("unable to connect to server, aborting ...\n");
404 network_select(&net,0);
406 display_new_line(&display,&input,"successfully connected to server");
408 /* tell server: i am a client, i may work for you */
410 network_send(net.connection[0].fd,&data,1);
412 display_new_line(&display,&input,"send data to server, waiting for input");
415 event_start(&event,allyouneed,get_command,nothing);