X-Git-Url: http://royale.zerezo.com/git/?p=irssistats;a=blobdiff_plain;f=irssistats.c;h=b7a855ca2ec362c4e8b13465d5796e67c3bd2a89;hp=c528da3db66045cd51970a984de21ddf07e4e318;hb=3908ded2c18f259d9eea9f31600020cf940ada3e;hpb=8d70a2e0456b158f3ca70636b4920e9aff08830a diff --git a/irssistats.c b/irssistats.c index c528da3..b7a855c 100644 --- a/irssistats.c +++ b/irssistats.c @@ -1,9 +1,10 @@ -/* Usage: cat /path/to/file.log | ./irssistats channel maintainer language theme > /path/to/file.html */ +/* Usage: cat /path/to/file.log | ./irssistats channel maintainer language theme [nickfile] > /path/to/file.html */ #include #include #include #include +#include /* Config */ #define MAXUSERS 5000 @@ -18,7 +19,7 @@ #define MINWORDLENGTH 5 /* irssistats */ -#define VERSION "0.3" +#define VERSION "0.4" #define URL "http://royale.zerezo.com/programmation/irssistats/" /* Counters */ @@ -39,7 +40,7 @@ char *counters[NBCOUNTERS]={"C_SMILE","C_FROWN","C_EXCLAM","C_QUESTION","C_ME","C_TOPIC","C_MODE","C_KICK","C_KICKED","C_URL","C_JOIN","C_NICK","C_MONOLOGUE"}; /* Languages */ -#define NBLANGUAGES 2 +#define NBLANGUAGES 4 #define NBKEYS 38 char *keys[NBLANGUAGES][NBKEYS+1][2]= /* first key used for language name and abbreviation */ { @@ -124,6 +125,90 @@ char *keys[NBLANGUAGES][NBKEYS+1][2]= /* first key used for language name and ab { "C_JOIN", "ne sait pas s'il doit rester ou partir" }, { "C_NICK", "change souvent de nick" }, { "C_MONOLOGUE", "parle beaucoup de monologues" } + }, + { /* German language */ + /* contributed by Valentin Gelhorn */ + { "German", "de" }, + { "HEADER", "Statistiken für #%s von %s" }, + { "LEGEND", "Legende" }, + { "LASTDAYS", "Statistik der letzten Tage" }, + { "TOPHOURS", "Stündliche Statistik" }, + { "TOPUSERS", "Die aktivsten Personen" }, + { "OTHERS", "Es bleiben noch %d uneingetragene" }, + { "NBLINES", "Zeilen" }, + { "NICK", "Nick" }, + { "AVGLETTERS", "Buchstaben/Zeile" }, + { "HOURS", "Stunden" }, + { "QUOTE", "Zufällig ausgewaehlte Zitate" }, + { "TOPUSERSTIME", "Die aktivsten Personen zur bestimmten Tageszeit" }, + { "RANDTOPICS", "Ein paar Topics" }, + { "CHANGEDBY", "Gesetzt von" }, + { "NEWTOPIC", "Neues topic" }, + { "RANDURLS", "Ein paar URLs" }, + { "POSTEDBY", "Geschrieben von" }, + { "POSTEDURL", "URL" }, + { "TOPWORDS", "Am häufigsten benutze Wörter" }, + { "WORD", "Wort" }, + { "OCCURRENCES", "Vorkommen" }, + { "BIGNUMBERS", "Ein paar grosse Zahlen" }, + { "NUMBERS", "Zahlen" }, + { "TIME", "%d Zeilen analysiert in %d Sekunden" }, + { "FOOTER", "Statistiken wurden erstellt von" }, + { "C_SMILE", "ist oft glüklich :)" }, + { "C_FROWN", "ist oft traurig :(" }, + { "C_EXCLAM", "schreit oft !" }, + { "C_QUESTION", "stellt viele Fragen ?" }, + { "C_ME", "mag /me'en" }, + { "C_TOPIC", "aendert oft das Topico" }, + { "C_MODE", "aendert oft die Modes" }, + { "C_KICK", "mag /kick'en" }, + { "C_KICKED", "wird oft gekickt"}, + { "C_URL", "schreibt viele URLs"}, + { "C_JOIN", "kann sich nicht entscheiden ob er bleiben oder gehen soll" }, + { "C_NICK", "ändert oft seinen Nick" }, + { "C_MONOLOGUE", "spricht oft Monologe" } + }, + { /* Spanish language */ + /* contributed by Alex */ + { "Spanish", "es" }, + { "HEADER", "Estadísticas de #%s por %s" }, + { "LEGEND", "Leyenda" }, + { "LASTDAYS", "Estadísticas de los últimos días" }, + { "TOPHOURS", "Estadísticas por horas" }, + { "TOPUSERS", "Los que más escriben" }, + { "OTHERS", "Hay %d más que no llegaron..." }, + { "NBLINES", "líneas" }, + { "NICK", "nick" }, + { "AVGLETTERS", "letras por línea" }, + { "HOURS", "horas" }, + { "QUOTE", "Frase aleatoria" }, + { "TOPUSERSTIME", "Los que más escriben según la hora" }, + { "RANDTOPICS", "Algunos topics" }, + { "CHANGEDBY", "Puestos por" }, + { "NEWTOPIC", "topic" }, + { "RANDURLS", "Algunas URLs" }, + { "POSTEDBY", "puestas por" }, + { "POSTEDURL", "URL" }, + { "TOPWORDS", "Palabras más usadas" }, + { "WORD", "Palabra" }, + { "OCCURRENCES", "Frecuencia" }, + { "BIGNUMBERS", "Algunos datos..." }, + { "NUMBERS", "Número de veces" }, + { "TIME", "%d lineas procesadas en %d segundos" }, + { "FOOTER", "Estadísticas generadas por" }, + { "C_SMILE", "Suele estar felíz :)" }, + { "C_FROWN", "Suele estar triste :(" }, + { "C_EXCLAM", "Grita mucho !" }, + { "C_QUESTION", "Hace muchas preguntas ?" }, + { "C_ME", "Abusa del comando /me" }, + { "C_TOPIC", "Suele cambiar el topic" }, + { "C_MODE", "Cambia a veces los modos del canal" }, + { "C_KICK", "Le gusta patear" }, + { "C_KICKED", "Es pateado con frecuencia" }, + { "C_URL", "Pone muchas URLs" }, + { "C_JOIN", "No sabe si irse o quedarse" }, + { "C_NICK", "Cambia mucho de nick" }, + { "C_MONOLOGUE", "Habla solo" } } }; @@ -219,7 +304,7 @@ char *T(char *color) char *channel; char *maintainer; -struct +struct { char nick[MAXNICKLENGTH]; int lines; @@ -280,17 +365,17 @@ void findwords(char *message) while (isletter(*message)) { c=lowercase(*message)-'a'; - if ((*pos).next[(int)c]==NULL) + if (pos->next[(int)c]==NULL) { tmp=malloc(sizeof(struct letter)); - (*tmp).nb=0; - for (i=0;i<26;i++) (*tmp).next[i]=NULL; - (*pos).next[(int)c]=tmp; + tmp->nb=0; + for (i=0;i<26;i++) tmp->next[i]=NULL; + pos->next[(int)c]=tmp; } - pos=(*pos).next[(int)c]; + pos=pos->next[(int)c]; message++; } - (*pos).nb++; + pos->nb++; } return; } @@ -368,7 +453,7 @@ int dichotomic(char *nick) int main(int argc,char *argv[]) { int i,j,k; - int max,user,hour; + int max,user,temp,hour; int mononick,monolines; time_t debut; int totallines=0; @@ -376,12 +461,14 @@ int main(int argc,char *argv[]) char c; char *nick,*message; char line[MAXLINELENGTH]; + FILE *fic; + regex_t preg; /*** INIT ***/ - if (argc!=5) + if ((argc<5) || (argc>6)) { - fprintf(stderr,"Usage: cat /path/to/file.log | ./irssistats channel maintainer language theme > /path/to/file.html\n\n"); + fprintf(stderr,"Usage: cat /path/to/file.log | ./irssistats channel maintainer language theme [nickfile] > /path/to/file.html\n\n"); fprintf(stderr,"Version :\nirssistats %s\n\n",VERSION); fprintf(stderr,"Supported languages :\n"); for (i=0;i0;i--) - { - strcpy(topics[i].nick,topics[i-1].nick); - strcpy(topics[i].topic,topics[i-1].topic); - } - strcpy(topics[0].nick,nick); - strncpy(topics[0].topic,message,MAXQUOTELENGTH); + temp=nbtopics<=NBTOPICS?nbtopics-1:rand()%NBTOPICS; + strcpy(topics[temp].nick,nick); + strncpy(topics[temp].topic,message,MAXQUOTELENGTH); } } else if (strncmp("was kicked from",message,15)==0) /* 00:00 -!- Nick was kicked from #channel by Nick [Reason] */ @@ -493,9 +574,11 @@ int main(int argc,char *argv[]) message=&line[i+1]; } else if (line[7]=='>') /* 00:00 <>>>?Nick<<<> the personal message */ + /* 00:00 <>>?Nick<<> the personal message */ { - for (i=11;line[i]!='<';i++); - nick=&line[11]; + for (i=10;line[i]!='<';i++); + nick=&line[10]; + if (line[9]=='>') nick++; message=&line[i+5]; } else /* 00:00 the message */ @@ -539,17 +622,12 @@ int main(int argc,char *argv[]) for (i=0;(message[i]!=' ') && (i0;i--) - { - strcpy(urls[i].nick,urls[i-1].nick); - strcpy(urls[i].url,urls[i-1].url); - strcpy(urls[i].shorturl,urls[i-1].shorturl); - } - strcpy(urls[0].nick,nick); - strcpy(urls[0].url,message); - strncpy(urls[0].shorturl,message,MAXQUOTELENGTH); + temp=nburls<=NBURLS?nburls-1:rand()%NBURLS; + strcpy(urls[temp].nick,nick); + strcpy(urls[temp].url,message); + strncpy(urls[temp].shorturl,message,MAXQUOTELENGTH); } } findwords(message); @@ -561,6 +639,39 @@ int main(int argc,char *argv[]) bestwords(words,0); + /*** ALIAS ***/ + + if (argc==6) + { + if ((fic=fopen(argv[5],"rt"))==NULL) { fprintf(stderr,"can't open nick file\n"); exit(1); } + while (fscanf(fic,"%s",line)==1) + { + user=dichotomic(line); + fscanf(fic,"%s",line); + if (regcomp(&preg,line,0)!=0) { fprintf(stderr,"error in nick file"); exit(1); } + temp=users[user].lines; + for (i=0;i=0)) + { + if (users[i].lines>temp) /* for nick alias, keep the random quote of the most used nick */ + { + strcpy(users[user].quote,users[i].quote); + temp=users[i].lines; + } + users[user].lines+=users[i].lines; + users[user].letters+=users[i].letters; + for (j=0;j<4;j++) users[user].hours[j]+=users[i].hours[j]; + for (j=0;jmax) max=users[user=j].lines; if (user!=-1) { printf("%d%s%d",T("BGTABLE"),i,T("BGTABLE"),users[user].nick,T("BGTABLE"),users[user].lines,T("BGTABLE")); for (j=0;j<4;j++) if (users[user].hours[j]!=0) printf("",j+1,100*users[user].hours[j]/users[user].lines); - printf("%d\"",T("BGTABLE"),users[user].letters/users[user].lines,T("BGTABLE"),users[user].letters/users[user].lines,T("BGTABLE")); + printf("%d\"",T("BGTABLE"),users[user].lines!=0?users[user].letters/users[user].lines:0,T("BGTABLE"),users[user].lines!=0?users[user].letters/users[user].lines:0,T("BGTABLE")); printhtml(users[user].quote); printf("\"\n"); users[user].lines=-1; } } printf("\n"); - if (nbusers>NBUSERS) + temp=0; + for (i=0;i<=nbusers;i++) if (users[i].lines>=0) temp++; + if (temp>0) { printf("
"); - printf(L("OTHERS"),nbusers-50); + printf(L("OTHERS"),temp); printf("
\n"); } printf("

\n\n"); @@ -645,7 +758,7 @@ int main(int argc,char *argv[]) for (j=0;j<4;j++) { user=-1; - max=-1; + max=0; for (k=0;kmax) max=users[user=k].hours[j]; if (user!=-1) {