aboutsummaryrefslogtreecommitdiffstats
path: root/libidc.c
blob: f5a5e62a22c6420ad6eee38b9d4239b58b4eed7f (plain) (blame)
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
//what data type to use for storing all of the shit?
//hashtable with hash == fd?

//should I use FILE *, or fd, or write functions for both?

#define _GNU_SOURCE //I want memmem out of string.h
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>

//#define CHUNK 4096
#include "idc.h"

#define TSIZE 65536

/* might not put this function in here... or maybe I will, but not use it.
char *read_line_hack(FILE *fp,int len) {
 short in;
 char *t;
 errno=0;
 switch(in=fgetc(fp)) {
  case '\n':
   t=malloc(len+1);
   t[len]=0;
   return t;
  case -1:
   if(errno == EAGAIN) return 0;
   if(feof(fp)) {
    fprintf(stderr,"# reached EOF. exiting.\n");
    exit(0);
   }
   fprintf(stderr,"# some other error happened while reading. %d %d\n",EAGAIN,errno);
   perror("hackvr");
   exit(1);
  default: //we need to check the last strlen(delim) bytes for delim to indicate end of line-read.
   if((t=read_line_hack(fp,len+1))) t[len]=in;
   break;
 }
 return t;
}
*/


/* in line.h
struct shit {
  //I need to choose which of these two.
  //FILE *fp;
  int fd;
  char *backlog;
  int blsize;
  int bllen;
  char buffer[CHUNK];//THIS IS *NOT* NULL TERMINATED.

  char *delim;
  //other stuffs?
//  union {
  void (*line_handler)(struct shit *me,char *line);//function pointer to the handler. ???
//    (void *line_handler_fd)(int fd,char *)
//  };//???
  void *extra_info;//extra info that I don't care to name atm
};
*/

struct global libline;

int update_shits() {
  //loop over all shits and find the maxfd
  int i;
  for(i=0;i < libline.shitlen;i++) {
    libline.fdmax = libline.fds[i].fd>libline.fdmax ? libline.fds[i].fd : libline.fdmax;
  }
  return 0;
}

int add_fd(int fd,void (*line_handler)(struct shit *,char *)) {
  int i;
  for(i=0;libline.fds[i].fd != -1 && i <= libline.shitlen;i++);//we're going to use the index of the first -1 or last spot.
  fprintf(stderr,"adding fd: %d to i: %d\n",fd,i);
  if(libline.fds[i].fd != -1) {
    fprintf(stderr,"I fucked up somehow.\n");
  }
  libline.fds[i].fd=fd;
  //libline.fds[i+1].fd=-1;//not always true! we could be inserting to spot 0 while spot 1 is still valid.
  libline.fds[i].backlog=malloc(CHUNK);
  memset(libline.fds[i].backlog,0,CHUNK);
  memset(libline.fds[i].buffer,0,CHUNK);
  libline.fds[i].blsize=CHUNK;
  libline.fds[i].bllen=0;//CHUNK;
  libline.fds[i].read_lines_for_us=1;//default to reading lines for the fd
  libline.fds[i].line_handler=line_handler;
  libline.shitlen = i >= libline.shitlen ? i+1 : libline.shitlen+1 ;
  libline.fds[libline.shitlen].fd=-1;//this should always work to pad the end with a -1 even though the end should stop sooner.
  update_shits();
  return i;//return the index we used so we can add more stuff to the struct
}

int rm_fd(int fd) {
  int i;
  for(i=0;libline.fds[i].fd != fd && i <= libline.shitlen;i++);//loop until found or at end
  if(libline.fds[i].fd != i) return -1;//fd wasn't found
  libline.fds[i].fd=-1;//good enough probably. maybe free()? probably free()
  free(libline.fds[i].backlog);
  libline.fds[i].backlog=0;
//  free(libline.fds[i].buffer);
  libline.fds[i].buffer[0]=0;
  libline.fds[i].blsize=0;
  libline.fds[i].bllen=0;
  libline.fds[i].line_handler=0;
  if(i == libline.shitlen-1) libline.shitlen--;
  return fd;
}

//functions to add:
/*
main_looper()
add_fd_and_handler()?
remove_fd_and_handler()?
*/


#define SILLYLIMIT 1024

char *memstr(char *s,char *find,size_t l) {
 return memmem(s,l,find,strlen(find));
}

int select_on_everything() {
  int hack;
  int at_least_one;
  FILE *tmpfp;
  fd_set master;
  fd_set readfs;
//  struct timeval timeout;
//  int fdmax=0,n,i;
  int n,i,j;
  char tmp[256];
  char *t,*line=0;
  FD_ZERO(&master);
  FD_ZERO(&readfs);
  for(;;) { //at the start of each loop we'll need to recalculate some stuff if there was a change.
    fprintf(stderr,"in mainloop\n");
    //if(recalc_shit) { //this is set by anything changing the table of descriptors
    fprintf(stderr,"building master: ");
    FD_ZERO(&master);
    at_least_one=0;
    for(i=0;i <= libline.shitlen;i++) {
      if(libline.fds[i].fd != -1) {
        at_least_one++;
        fprintf(stderr,"fd:%d ",libline.fds[i].fd);
        FD_SET(libline.fds[i].fd,&master);
      }
    }
    fprintf(stderr,"\n");
    if(!at_least_one) return 0;//we have nothing else to possibly do.
    //  recalc_shit=0;
    //}
    readfs=master;
//  timeout.tv_sec=0; //going to leave these three lines if I change my mind about acting like snow-white
//  timeout.tv_usec=1000;
//  if((j=select(fdmax+1,&readfs,0,0,&timeout)) == -1 ) {
    fprintf(stderr,"about to select\n");
    if((j=select(libline.fdmax+1,&readfs,0,0,NULL)) == -1 ) {//we want to select-sleep as long as possible.
      //any reason to wake up should be a file descriptor in the list. (works for X11 events, dunno about others)
      //on error filedescriptors aren't changed
      //the value of timeout is undefined
      //so says the linux man page for select.
      if(errno == EINTR) {
        perror("asdf");
        continue;//just try again
      }
      if(errno != 0) return perror("select"),1;
      else perror("wtf? select");
      //continue;
    }
    fprintf(stderr,"after select(). ret: %d\n",j);
//  for(i=0;fds[i] != -1;i++) if(extra_handler) extra_handler(fds[i]);
    if(j == 0) continue;//don't bother to loop over them.
    for(i=0;i < libline.shitlen && j>0;i++) {
      if(libline.fds[i].fd == -1) continue;//skip -1s
      if(!FD_ISSET(libline.fds[i].fd,&readfs)) continue;//did not find one. hurry back to the for loop
      j--;//we found one. trying to get j==0 so we can get out of here early.
      //if(libline.fds[i].read_lines_for_us == 0) {
      //  libline.fds[i].line_handler(&libline.fds[i],0);//the line pointer is null.
      //  continue;//we don't need to read the line.
      //}
      fprintf(stderr,"attempting to read from fd: %d\n",libline.fds[i].fd);
      if((n=read(libline.fds[i].fd,libline.fds[i].buffer,CHUNK)) < 0) {
        snprintf(tmp,sizeof(tmp)-1,"fd %d: read perror:",libline.fds[i].fd);//hopefully this doesn't error and throw off error messages.
        perror(tmp);
        return 2;
      }
      fprintf(stderr,"read %d bytes from fd: %d\n",n,libline.fds[i].fd);
      if(n == 0) {
        fprintf(stderr,"reached EOF on fd: %d\n",libline.fds[i].fd);
        if(libline.fds[i].keep_open) {
          //tmpfp=fdopen(libline.fds[i].fd,"r");
          //lseek(libline.fds[i].fd,SEEK_SET,0);
          //clearerr(tmpfp);
          //fuck if I know...
        } else {
         //we need some way to keep it open on EOF.
          if(libline.fds[i].line_handler) libline.fds[i].line_handler(&libline.fds[i],0);//dunno
          libline.fds[i].fd=-1;//kek
          continue;
         //return 3;
        }
      }
      if(libline.fds[i].bllen+n > libline.fds[i].blsize) {//this is probably off...
        t=malloc(libline.fds[i].blsize+n);
        if(!t) exit(253);
        memcpy(t,libline.fds[i].backlog,libline.fds[i].blsize);
        libline.fds[i].blsize+=n;
        free(libline.fds[i].backlog);
        libline.fds[i].backlog=t;
      }
      memcpy(libline.fds[i].backlog+libline.fds[i].bllen,libline.fds[i].buffer,n);
      libline.fds[i].bllen+=n;
      while((t=memchr(libline.fds[i].backlog,'\n',libline.fds[i].bllen))) {//no. backlogs aren't nulled.
        line=libline.fds[i].backlog;
        if(*(t-1) == '\r') {
          t--;
          hack=2;
        } else {
          hack=1;
        }
        *t=0;//we need a way to undo this if the line wasn't eaten.
//        fprintf(stderr,"libidc: line for %d: %s\n",libline.fds[i].fd,line);
        if(libline.fds[i].line_handler) {
          fprintf(stderr,"libidc: about to line_handler for %d\n",libline.fds[i].fd);
          libline.fds[i].line_handler(&libline.fds[i],line);
          fprintf(stderr,"libidc: back from line_handler for %d\n",libline.fds[i].fd);
          libline.fds[i].bllen-=((t+hack)-libline.fds[i].backlog);
          if(libline.fds[i].bllen <= 0) libline.fds[i].bllen=0;
          else memmove(libline.fds[i].backlog,(t+hack),libline.fds[i].bllen);
          //} else {//if the line handler didn't eat the line we should restore it back to original.
          // if(hack == 2) {*t='\r'; t++;}
          // *t='\n';
          //}
        }
      }//end of looping over each line in backlog
    }//end of the loop over every select()d fd
  }//end of infinite loop
  return 0;
}

//this function mangles the input.
//gotta free the returned pointer but not each pointer in the array.

/*
char **line_cutter(int fd,char *line,struct user *user) {
 int i;
 char **a=malloc(sizeof(char *) * 256);//heh.
 if(!a) exit(54);
 memset(a,0,sizeof(char *) * 256);
 if(!user) return 0;
 user->nick=0;
 user->user=0;
 user->host=0;
 if(!line) return 0;
 if(strchr(line,'\r')) *strchr(line,'\r')=0;
 if(strchr(line,'\n')) *strchr(line,'\n')=0;
 if(line[0]==':') {
  if((user->nick=strchr(line,':'))) {
   *(user->nick)=0;
   (user->nick)++;
  }
 }
 if(user->nick) {

  if((a[0]=strchr((user->nick),' '))) {
   *a[0]=0;
   a[0]++;
   for(i=0;(a[i+1]=strchr(a[i],' '));i++) {
    *a[i+1]=0;
    a[i+1]++;
    if(*a[i+1] == ':') {//we're done.
     *a[i+1]=0;
     a[i+1]++;
     break;
    }
   }
  }

  if(((user->user)=strchr((user->nick),'!'))) {
   *(user->user)=0;
   (user->user)++;
   if(((user->host)=strchr((user->user),'@'))) {
    *(user->host)=0;
    (user->host)++;
   }
  } else {
   user->host=user->nick;
  }
 }
 return a;
}
*/