-
Notifications
You must be signed in to change notification settings - Fork 4
/
auctioninfo.h
116 lines (110 loc) · 4.04 KB
/
auctioninfo.h
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
/*
* Copyright (c) 2002, 2003, Scott Nicol <[email protected]>
* All rights reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef AUCTIONINFO_H_INCLUDED
#define AUCTIONINFO_H_INCLUDED
#include <stdio.h>
#include <time.h>
/*
* errors from parseError(), getAuctionInfo(), watchAuction()
*/
enum auctionErrorCode {
ae_none,
ae_baditem,
ae_notitle,
ae_noprice,
ae_convprice,
ae_noquantity,
ae_notime,
ae_badtime,
ae_nohighbid,
ae_curlerror,
ae_bidprice,
ae_bidtokens,
ae_badpass,
ae_outbid,
ae_reservenotmet,
ae_ended,
ae_duplicate,
ae_toomany,
ae_unavailable,
ae_login,
ae_buyerblockpref,
ae_buyerblockprefdoesnotshiptolocation,
ae_buyerblockprefnolinkedpaypalaccount,
ae_highbidder,
ae_mustsignin,
ae_cannotbid,
ae_dutchsamebidquantity,
ae_captcha,
ae_cancelled,
ae_bidassistant,
ae_buyerblockprefitemcountlimitexceeded,
ae_bidgreaterthanbin_binblock,
ae_alert,
ae_buyerrequirements,
ae_manualaction,
/* ae_unknown must be last error */
ae_unknown
};
/*
* All information associated with an auction
*/
typedef struct {
char *auction; /* auction number */
char *title; /* auction title */
char *bidPriceStr;/* price you want to bid */
double bidPrice;/* price you want to bid (converted to double) */
time_t remain; /* remaining seconds */
char *remainRaw;/* remaining time string, from ebay */
time_t endTime; /* end time as calculated from remaining seconds */
time_t latency; /* latency from HTTP request to first page data */
char *query; /* bid history query */
char *biduiid; /* bid uiid */
char *bidstok; /* bid stok */
char *bidsrt; /* bid srt */
int quantity; /* number of items available */
int quantityBid;/* number of items currently bid on */
int bids; /* number of bids made */
double price; /* current price */
char *shipping; /* shipping cost */
char *currency; /* currency used in auction */
int bidResult; /* result code from bid (-1=no bid yet, 0=success, 1 = error) */
int reserve; /* auction has reserve and it hasn't been met. */
int won; /* number won (-1 = no clue, 0 or greater = actual #) */
int winning; /* number currently winning (-1 = no clue, 0 or greater = actual #) */
enum auctionErrorCode auctionError;/* error encountered while parsing */
char *auctionErrorDetail;/* details of error */
} auctionInfo;
extern auctionInfo *newAuctionInfo(const char *auction, const char *bidPriceStr);
extern void freeAuction(auctionInfo *aip);
extern int compareAuctionInfo(const void *p1, const void *p2);
extern void printAuctionError(auctionInfo *aip, FILE *fp);
extern void resetAuctionError(auctionInfo *aip);
extern int auctionError(auctionInfo *aip, enum auctionErrorCode pe,
const char *details);
extern int isValidBidPrice(const auctionInfo *aip);
extern int sortAuctions(auctionInfo **auctions, int numAuctions, int *quantity);
#endif /* AUCTIONINFO_H_INCLUDED */