1/*
2 * Legal Notice
3 *
4 * This document and associated source code (the "Work") is a part of a
5 * benchmark specification maintained by the TPC.
6 *
7 * The TPC reserves all right, title, and interest to the Work as provided
8 * under U.S. and international laws, including without limitation all patent
9 * and trademark rights therein.
10 *
11 * No Warranty
12 *
13 * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION
14 * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE
15 * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER
16 * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,
17 * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,
18 * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR
19 * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF
20 * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE.
21 * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT,
22 * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT
23 * WITH REGARD TO THE WORK.
24 * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO
25 * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE
26 * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS
27 * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT,
28 * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY,
29 * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT
30 * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD
31 * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
32 *
33 * Contributors:
34 * Gradient Systems
35 */
36
37#ifndef DS_ADDRESS_H
38#define DS_ADDRESS_H
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44#include "constants.h"
45
46typedef struct DS_ADDR_T {
47 char suite_num[RS_CC_SUITE_NUM + 1];
48 int street_num;
49 char *street_name1;
50 char *street_name2;
51 char *street_type;
52 char *city;
53 char *county;
54 char *state;
55 char country[RS_CC_COUNTRY + 1];
56 int zip;
57 int plus4;
58 int gmt_offset;
59} ds_addr_t;
60
61#define DS_ADDR_SUITE_NUM 0
62#define DS_ADDR_STREET_NUM 1
63#define DS_ADDR_STREET_NAME1 2
64#define DS_ADDR_STREET_NAME2 3
65#define DS_ADDR_STREET_TYPE 4
66#define DS_ADDR_CITY 5
67#define DS_ADDR_COUNTY 6
68#define DS_ADDR_STATE 7
69#define DS_ADDR_COUNTRY 8
70#define DS_ADDR_ZIP 9
71#define DS_ADDR_PLUS4 10
72#define DS_ADDR_GMT_OFFSET 11
73
74int mk_address(ds_addr_t *pDest, int nColumn);
75int mk_streetnumber(int nTable, int *dest);
76int mk_suitenumber(int nTable, char *dest);
77int mk_streetname(int nTable, char *dest);
78int mk_city(int nTable, char **dest);
79int city_hash(int nTable, char *name);
80int mk_zipcode(int nTable, char *dest, int nRegion, char *city);
81void printAddressPart(FILE *fp, ds_addr_t *pAddr, int nAddressPart);
82void resetCountCount(void);
83
84#ifdef __cplusplus
85};
86#endif
87
88#endif
89