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#include "config.h"
37#include "porting.h"
38#include <stdio.h>
39#include "genrand.h"
40#include "w_household_demographics.h"
41#include "columns.h"
42#include "build_support.h"
43#include "tables.h"
44#include "nulls.h"
45#include "tdefs.h"
46#include "sparse.h"
47
48#include "append_info.h"
49
50struct W_HOUSEHOLD_DEMOGRAPHICS_TBL g_w_household_demographics;
51
52/*
53 * mk_household_demographics
54 */
55int mk_w_household_demographics(void *info_arr, ds_key_t index) {
56 /* begin locals declarations */
57 ds_key_t nTemp;
58 struct W_HOUSEHOLD_DEMOGRAPHICS_TBL *r;
59 tdef *pTdef = getSimpleTdefsByNumber(HOUSEHOLD_DEMOGRAPHICS);
60
61 r = &g_w_household_demographics;
62
63 nullSet(&pTdef->kNullBitMap, HD_NULLS);
64 r->hd_demo_sk = index;
65 nTemp = r->hd_demo_sk;
66 r->hd_income_band_id = (nTemp % distsize("income_band")) + 1;
67 nTemp /= distsize("income_band");
68 bitmap_to_dist(&r->hd_buy_potential, "buy_potential", &nTemp, 1, HOUSEHOLD_DEMOGRAPHICS);
69 bitmap_to_dist(&r->hd_dep_count, "dependent_count", &nTemp, 1, HOUSEHOLD_DEMOGRAPHICS);
70 bitmap_to_dist(&r->hd_vehicle_count, "vehicle_count", &nTemp, 1, HOUSEHOLD_DEMOGRAPHICS);
71
72 void *info = append_info_get(info_arr, HOUSEHOLD_DEMOGRAPHICS);
73 append_row_start(info);
74 append_key(info, r->hd_demo_sk);
75 append_key(info, r->hd_income_band_id);
76 append_varchar(info, r->hd_buy_potential);
77 append_integer(info, r->hd_dep_count);
78 append_integer(info, r->hd_vehicle_count);
79 append_row_end(info);
80
81 return 0;
82}
83