summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/libstocks/stocks.c
blob: eb04ba9577dbf38739ecab617e6d3ae712c14052 (plain)
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/* libstocks - Library to get current stock quotes from Yahoo Finance
 *
 * Copyright (C) 2000 Eric Laeuffer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#define __STOCKS_C__

#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <stdlib.h>

#ifdef __WINDOWS__
#include <mbstring.h>
#endif

#include "http.h"
#include "csv.h"

#include "stocks.h"

/*
s  = symbol
n  = name
l1 = last trade
d1 = date
t1 = time
c1 = variation
o  = open
h  = higher price
g  = lower price
v  = volume
*/

const char yahoo_us_stocks_server[]="finance.yahoo.com";
const char yahoo_eu_stocks_server[]="finance.yahoo.com";
//const char yahoo_eu_stocks_server[]="fr.finance.yahoo.com";

const char yahoo_url_beg[]="/d/quotes.csv?s=";
const char yahoo_url_end[]="&f=snl1d1t1c1ohgv&e=.csv";

typedef enum {
  YAHOO_EUROPE,
  YAHOO_US
} yahoo_source;

#define YAHOO_US_EXT_NB  11
const char *yahoo_us_ext[YAHOO_US_EXT_NB] =
{
  ".US",   /* United States */
  ".TO",   /* Canada */
  ".M",    /* Canada */
  ".V",    /* Canada */
  ".AL",   /* Canada */
  ".MX",   /* Mexico */
  ".SA",   /* Brasil */
  ".BA",   /* Argentina */
  ".CR",   /* Venezuela */
  ".SN",   /* Chili */
  ".AX"    /* Australia */
};

/*****************************************************************************/
/* Finds, according to the symbol extension, the http source of the quotes.  */
/* Actually just finance.yahoo.com and fr.finance.yahoo.com are supported.   */
/* The function returns the country source (US or EUROPE).                   */
/*****************************************************************************/
yahoo_source find_yahoo_source(char *symbol)
{
  char *ptr;
  int i;
  int test;

  ptr = strrchr(symbol, '.');

  /* If no extension we suppose it is a US stock */
  if (!ptr) return YAHOO_US;

  /* extension is found */

  /* Test if it is canadian stock */
  for (i=0; i<YAHOO_US_EXT_NB; i++)
    {

#ifdef __UNIX__
      test = strcasecmp(yahoo_us_ext[i], ptr);
#elif __WINDOWS__
      test = _mbsnbicmp(yahoo_us_ext[i], ptr, strlen(yahoo_us_ext[i]));
#endif

      if (!test) return YAHOO_US;
    }
  
  /* We suppose now it is a European stock */
  return YAHOO_EUROPE;
}

/*****************************************************************************/
/* Gets quotes csv file, parses the file and create the quotes list          */
/* *stocks points to the stocks to fetch                                     */
/* *stock_datas points to the beginning of the list                          */
/* count allows to connect to all country servers                            */
/*****************************************************************************/
libstocks_return_code download_stocks(char *stocks, 
              stock **stock_datas, 
              yahoo_source source)
{
  char *stocks_server=NULL;
  char *url_beg=NULL;
  char *url_end=NULL;

  char *url;
  char *data;

  libstocks_return_code error;

#ifdef DEBUG
  printf("*download_stocks\n");
#endif

  switch (source)
    {
    case YAHOO_US:
      stocks_server = (char *)yahoo_us_stocks_server;
      break;
      
    case YAHOO_EUROPE:
      stocks_server = (char *)yahoo_eu_stocks_server;
      break;
      default:
      stocks_server = (char *)yahoo_us_stocks_server;
    break;
          
    }

  url_beg = (char *)yahoo_url_beg;
  url_end = (char *)yahoo_url_end;

  url = (char *)malloc(strlen(url_beg)
           +strlen(url_end)
           +strlen(stocks)+1);
  if (url==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
        ,__FILE__, __LINE__);
      exit(1);
    }

  strcpy(url, url_beg);
  strcat(url, stocks);
  strcat(url, url_end);
  
  error=http_get(url, stocks_server, &data);
 
  free(url);

  if (error) return error;
  
  *stock_datas = parse_csv_file(data);

  free(data);

  if (!(*stock_datas)) return ERRPCSV;

  return 0;

}

/*****************************************************************************/
/* Gets quotes from yahoo                                                    */
/* Choses to fetch European or US depending on the symbol extension          */
/* and merges the two lists to one                                           */
/* *stocks points to the stocks to fetch                                     */
/* *stock_datas points to the beginning of the list                          */
/*****************************************************************************/
libstocks_return_code get_stocks(const char *stocks, stock **stock_datas)
{
  char *tok_ptr;
  char *eu_quotes=NULL;
  char *eu_quotes_temp=NULL;
  int lgr_eu_quotes=0;

  char *us_quotes=NULL;
  char *us_quotes_temp=NULL;
  int lgr_us_quotes=0;

  char *symbol;

  yahoo_source source;

  int lgr_symbol=0;

  libstocks_return_code error;

  stock *stocks_tmp=NULL;
  stock *stocks_tmp2=NULL;
  stock *stocks_getted=NULL;
  stock *last_stock=NULL;

#ifdef DEBUG
  printf("*get_stocks\n");
#endif

  /* to preserve stocks */
  tok_ptr = malloc(strlen(stocks)+1);
  if(tok_ptr==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
        ,__FILE__, __LINE__);
      exit(1);  
    }
  strcpy(tok_ptr, stocks);

  while( (symbol = strtok(tok_ptr, "+"))!=0)
    {
      /* clear tok_ptr for next strtok */
      tok_ptr = NULL;

      /* look for "." in the symbol */
      source = find_yahoo_source(symbol);

      switch (source)
  {
  case YAHOO_US:

    if (us_quotes) 
      {
        lgr_us_quotes = strlen(us_quotes);
        lgr_symbol = strlen(symbol);

        us_quotes_temp = malloc(lgr_us_quotes + lgr_symbol +2);
        if(us_quotes_temp==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
        ,__FILE__, __LINE__);
      exit(1);  
    }
        strcpy(us_quotes_temp, us_quotes);
        strcat(us_quotes_temp,"+");
        strcat(us_quotes_temp,symbol);

        free(us_quotes);
        us_quotes = us_quotes_temp; 
      }       
    else 
      {
        us_quotes = malloc(strlen(symbol)+1);

        if(us_quotes==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
        ,__FILE__, __LINE__);
      exit(1);  
    }
        strcpy(us_quotes, symbol);
      }

    break;

  case YAHOO_EUROPE:

    if (eu_quotes) 
      {
        lgr_eu_quotes = strlen(eu_quotes);
        lgr_symbol = strlen(symbol);
        
        eu_quotes_temp = malloc(lgr_eu_quotes + lgr_symbol +2);
        if(eu_quotes_temp==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
        ,__FILE__, __LINE__);
      exit(1);  
    }
        strcpy(eu_quotes_temp, eu_quotes);
        strcat(eu_quotes_temp, "+");
        strcat(eu_quotes_temp, symbol);

        free(eu_quotes);
        eu_quotes = eu_quotes_temp; 
      }       
    else 
      {
        eu_quotes = malloc(strlen(symbol)+1);
        if(eu_quotes==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
        ,__FILE__, __LINE__);
      exit(1);  
    }
        strcpy(eu_quotes, symbol);
      }
    break;
  }
    }

  free(tok_ptr);

  if (us_quotes)
    {
      /* Gets us quotes */
      error = download_stocks(us_quotes, &stocks_tmp, YAHOO_US);
      if (error) return error;
    }
 
  if (eu_quotes)
    {
      /* Gets european quotes */
      error = download_stocks(eu_quotes, &stocks_getted, YAHOO_EUROPE);
      if (error) return error;

      /* concats lists if needed */
      if (stocks_tmp)
  {
    stocks_tmp2 = stocks_tmp;

    while(stocks_tmp2 != NULL) 
      {
        last_stock = stocks_tmp2;
        stocks_tmp2 = next_stock(stocks_tmp2);
      }

    last_stock->NextStock = stocks_getted;
    stocks_getted->PreviousStock = last_stock;

  }
      else (stocks_tmp = stocks_getted);      
    }

  *stock_datas = stocks_tmp; 
  
  return(0);
}