From 73b03f932dd43d684e67db1837bf506ee015f2eb Mon Sep 17 00:00:00 2001 From: llornkcor Date: Thu, 31 Oct 2002 20:32:13 +0000 Subject: make define __UNIX__ inherent --- (limited to 'noncore') diff --git a/noncore/todayplugins/stockticker/libstocks/csv.c b/noncore/todayplugins/stockticker/libstocks/csv.c index 99a44e4..27bcce6 100644 --- a/noncore/todayplugins/stockticker/libstocks/csv.c +++ b/noncore/todayplugins/stockticker/libstocks/csv.c @@ -9,7 +9,7 @@ * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public @@ -19,6 +19,7 @@ */ #define __CSV_C__ +#ifdef __UNIX__ #include #include @@ -126,152 +127,152 @@ stock *parse_csv_file(char *csv) test = line; valid = 0; while ( (test = strstr(test, "N/A")) ) - { - valid ++; - test = test +3; - } + { + valid ++; + test = test +3; + } if (valid < 6) - { - /* This Symbol is valid */ - - StockPtr = malloc_stock(); - - ptr = csv_strtok(line, ","); - if (!ptr) return 0; - - symbol = (char *)malloc(strlen(ptr)+1); - if (symbol==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - strcpy((char *)(symbol), ptr); - StockPtr->Symbol = symbol; - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - - name = (char *)malloc(strlen(ptr)+1); - if (name==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - strcpy((char *)(name), ptr); - StockPtr->Name = name; - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - sscanf(ptr,"%f",&(StockPtr->CurrentPrice)); - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - - date = (char *)malloc(strlen(ptr)+1); - if (date==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - strcpy((char *)(date), ptr); - StockPtr->Date = date; - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - - time = (char *)malloc(strlen(ptr)+1); - if (time==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - strcpy((char *)(time), ptr); - StockPtr->Time = time; - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - sscanf(ptr,"%f",&(StockPtr->Variation)); - - StockPtr->Pourcentage = 100 * StockPtr->Variation / - (StockPtr->CurrentPrice - StockPtr->Variation); - - StockPtr->LastPrice = StockPtr->CurrentPrice - StockPtr->Variation; - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - sscanf(ptr,"%f",&(StockPtr->OpenPrice)); - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - sscanf(ptr,"%f",&(StockPtr->MaxPrice)); - - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - sscanf(ptr,"%f",&(StockPtr->MinPrice)); + { + /* This Symbol is valid */ + + StockPtr = malloc_stock(); + + ptr = csv_strtok(line, ","); + if (!ptr) return 0; + + symbol = (char *)malloc(strlen(ptr)+1); + if (symbol==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + strcpy((char *)(symbol), ptr); + StockPtr->Symbol = symbol; + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + + name = (char *)malloc(strlen(ptr)+1); + if (name==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + strcpy((char *)(name), ptr); + StockPtr->Name = name; + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + sscanf(ptr,"%f",&(StockPtr->CurrentPrice)); + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + + date = (char *)malloc(strlen(ptr)+1); + if (date==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + strcpy((char *)(date), ptr); + StockPtr->Date = date; + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + + time = (char *)malloc(strlen(ptr)+1); + if (time==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + strcpy((char *)(time), ptr); + StockPtr->Time = time; + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + sscanf(ptr,"%f",&(StockPtr->Variation)); + + StockPtr->Pourcentage = 100 * StockPtr->Variation / + (StockPtr->CurrentPrice - StockPtr->Variation); + + StockPtr->LastPrice = StockPtr->CurrentPrice - StockPtr->Variation; + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + sscanf(ptr,"%f",&(StockPtr->OpenPrice)); + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + sscanf(ptr,"%f",&(StockPtr->MaxPrice)); + + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + sscanf(ptr,"%f",&(StockPtr->MinPrice)); - ptr = csv_strtok(NULL, ","); - if (!ptr) return 0; - StockPtr->Volume = atoi(ptr); - - if( !FirstStockPtr ) - { - FirstStockPtr = StockPtr; - StockPtr->PreviousStock = 0; - } - - StockPtr->NextStock = 0; - - if (LastStockPtr) - { - LastStockPtr->NextStock = StockPtr; - StockPtr->PreviousStock = LastStockPtr; - } - - LastStockPtr = StockPtr; - - } + ptr = csv_strtok(NULL, ","); + if (!ptr) return 0; + StockPtr->Volume = atoi(ptr); + + if( !FirstStockPtr ) + { + FirstStockPtr = StockPtr; + StockPtr->PreviousStock = 0; + } + + StockPtr->NextStock = 0; + + if (LastStockPtr) + { + LastStockPtr->NextStock = StockPtr; + StockPtr->PreviousStock = LastStockPtr; + } + + LastStockPtr = StockPtr; + + } else - { - /* this symbol is not valid */ - /* Set the stock struct just with Symbol, all other are NULL */ - /* This can be used to see if the symbol has been reached are not */ - - StockPtr = malloc_stock(); - - ptr = csv_strtok(line, ","); - if (!ptr) return 0; - - symbol = (char *)malloc(strlen(ptr)+1); - if (symbol==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - strcpy((char *)(symbol), ptr); - StockPtr->Symbol = symbol; - - if( !FirstStockPtr ) - { - FirstStockPtr = StockPtr; - StockPtr->PreviousStock = 0; - } - - StockPtr->NextStock = 0; - - if (LastStockPtr) - { - LastStockPtr->NextStock = StockPtr; - StockPtr->PreviousStock = LastStockPtr; - } - - LastStockPtr = StockPtr; - } + { + /* this symbol is not valid */ + /* Set the stock struct just with Symbol, all other are NULL */ + /* This can be used to see if the symbol has been reached are not */ + + StockPtr = malloc_stock(); + + ptr = csv_strtok(line, ","); + if (!ptr) return 0; + + symbol = (char *)malloc(strlen(ptr)+1); + if (symbol==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + strcpy((char *)(symbol), ptr); + StockPtr->Symbol = symbol; + + if( !FirstStockPtr ) + { + FirstStockPtr = StockPtr; + StockPtr->PreviousStock = 0; + } + + StockPtr->NextStock = 0; + + if (LastStockPtr) + { + LastStockPtr->NextStock = StockPtr; + StockPtr->PreviousStock = LastStockPtr; + } + + LastStockPtr = StockPtr; + } end_line++; line = end_line; @@ -321,7 +322,7 @@ stock *parse_csv_history_file(char *csv_file) *end_line = 0; StockPtr = malloc_stock(); - + /* Date */ ptr = strtok(line, ","); if (!ptr) return 0; @@ -340,11 +341,11 @@ stock *parse_csv_history_file(char *csv_file) date = (char *)malloc(DATE_LENGTH); if (date==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } sprintf(date,"%.2d%.2d%.2d", year, month, day); StockPtr->Date = date; @@ -372,25 +373,25 @@ stock *parse_csv_history_file(char *csv_file) ptr = strtok(NULL, ","); if (!ptr) - /* It seems to be an indice */ - /* No volume for indices */ - StockPtr->Volume = 0; + /* It seems to be an indice */ + /* No volume for indices */ + StockPtr->Volume = 0; else - StockPtr->Volume = atoi(ptr); + StockPtr->Volume = atoi(ptr); if( !FirstStockPtr ) - { - FirstStockPtr = StockPtr; - StockPtr->PreviousStock = 0; - } + { + FirstStockPtr = StockPtr; + StockPtr->PreviousStock = 0; + } StockPtr->NextStock = 0; if (LastStockPtr) - { - LastStockPtr->NextStock = StockPtr; - StockPtr->PreviousStock = LastStockPtr; - } + { + LastStockPtr->NextStock = StockPtr; + StockPtr->PreviousStock = LastStockPtr; + } LastStockPtr = StockPtr; diff --git a/noncore/todayplugins/stockticker/libstocks/http.c b/noncore/todayplugins/stockticker/libstocks/http.c index 462080d..3078746 100644 --- a/noncore/todayplugins/stockticker/libstocks/http.c +++ b/noncore/todayplugins/stockticker/libstocks/http.c @@ -9,7 +9,7 @@ * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public @@ -19,6 +19,7 @@ */ #define __HTTP_C__ +#define __UNIX__ #ifdef __UNIX__ #include @@ -85,9 +86,9 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata) { #ifdef DEBUG - printf(" gethostbyname : NOK\n"); + printf(" gethostbyname : NOK\n"); #endif - return ERRHOST; + return ERRHOST; } /* create socket */ @@ -121,7 +122,7 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata) if (http_proxy_server) { sprintf(header,"GET http://%.128s:80%.256s HTTP/1.0\015\012\015\012", - http_server, http_file); + http_server, http_file); } else { @@ -138,7 +139,7 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata) #endif { #ifdef DEBUG - printf(" send header : NOK\n"); + printf(" send header : NOK\n"); #endif return ERRWHEA; } @@ -157,36 +158,36 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata) #endif if (r) - { - if(!data_lgr) - { - if((data = malloc(r+1))==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - - memcpy(data,buf,r); - data_lgr = r; - data[r]=0; - } - else - { - if((temp = malloc(r+data_lgr+1))==NULL) - { - fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); - exit(1); - } - memcpy(temp, data, data_lgr); - memcpy(temp+data_lgr, buf, r); - temp[r+data_lgr]=0; - data_lgr += r; - free(data); - data = temp; - } - } + { + if(!data_lgr) + { + if((data = malloc(r+1))==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + + memcpy(data,buf,r); + data_lgr = r; + data[r]=0; + } + else + { + if((temp = malloc(r+data_lgr+1))==NULL) + { + fprintf(stderr,"Memory allocating error (%s line %d)\n" + ,__FILE__, __LINE__); + exit(1); + } + memcpy(temp, data, data_lgr); + memcpy(temp+data_lgr, buf, r); + temp[r+data_lgr]=0; + data_lgr += r; + free(data); + data = temp; + } + } } /* close socket */ @@ -210,14 +211,14 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata) if (*temp==0) return ERRRHEA; if( *temp==0x0A ) - { - /* test if it is the header end */ - temp ++; - if (*temp == 0x0D) temp++; - if (*temp == 0x0A) header_founded = 1; - } + { + /* test if it is the header end */ + temp ++; + if (*temp == 0x0D) temp++; + if (*temp == 0x0A) header_founded = 1; + } else - temp++; + temp++; } *temp = 0; @@ -238,7 +239,7 @@ libstocks_return_code http_get(char *http_file, char *http_server, char **pdata) { free(data); fprintf(stderr,"Memory allocating error (%s line %d)\n" - ,__FILE__, __LINE__); + ,__FILE__, __LINE__); exit(1); } -- cgit v0.9.0.2