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
|
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
#include "ISBNPrefix.h"
ISBNPrefix::ISBNPrefix(const char* filename)
{
fp = NULL;
fp=fopen(filename, "r");
if (fp == NULL)
cout << "Invalid file!" << endl;
}
// Function checks if the area passed is in the prefix list
bool ISBNPrefix::isRegistered(int area) const
{
bool check=false;
if (fp != NULL)
{
char area2[6]; // read file line into this array
int i, j, k, val; // check is the value returned from the function.
rewind(fp);
fscanf(fp, "%d %*s %*s", &val);
while (check == false && !feof(fp))
{
//cout << "val = " << val << endl;
if (area == val)
check = true;
fscanf(fp, "%d %*s %*s", &val);
} //end while loop
}
return check;
} //end isRegistered()
// Function checks the minimum number of digits in a publisher field
int ISBNPrefix::minNoDigits(int area) const
{
int isreg; //check if area exists in file, returned if false
char line[20], lineinput[20];
int numarray[5], i, j, k, check = 0, val, counter = 0; // numarray is the array that will hold the numeric digits read in from the file. check is the while terminator. counter is returned
if (fp != NULL)
{
rewind(fp);
fgets(lineinput, 20, fp);
isreg = isRegistered(area);
if (isreg == 0)
return isreg;
else
{
rewind(fp);
fgets(lineinput, 20, fp);
while (check != 1 && !feof(fp))
{
val = 0; //val is the number used to turn the char values of area section read from the file into an int
for (i = 0; lineinput[i] != ' '; i++) //loop through until lineinput i == whitespace (ie, only area field of line)
{
lineinput[i] = lineinput[i] - '0'; //turns individual char into its numeric int
numarray[i] = lineinput[i]; // now have an int to work with, made up solely of the area
lineinput[i] = lineinput[i] + '0';
}
i--; //i is now the maximum number of digits that area is minus 1 (count from zero)
for (j = 0; j <= i; j++) //turn the individual numbers into an actual number. Say the number is 972 so i = 2 ((number of digits in 972) - 1)
{
k = pow(10, i - j); //10 to the power of 2 - 0 (on first loop) = 100
numarray[j] = numarray[j] * k; // 9 * 100
val += numarray[j]; // val == 900. On the next pass, the 7 will become 70 and will be added to val, so 970. On the 3rd pass, 2*1 will be added.
}
if (area == val)
check = 1;
strcpy(line, lineinput); //line array holds the values of the publisher fields before lineinput gets updated
fgets(lineinput, 20, fp);
} //end while loop
i += 2; // line[i] now equals the first character of the publisher field
while (line[i] != ' ')
{
counter++;
i++;
}
return counter;
} //end else
}
else
return 0;
} // end minNoDigits()
bool ISBNPrefix::isRegistered(int area, const char* publisher) const
{
bool check = false;
if (fp != NULL)
{
char line[20][20], area2[6], publow[11], pubhigh[11], pubnum[11];
int i = 0, j, check1 = 0, count, mindigits, compare;
check = isRegistered(area);
mindigits = minNoDigits(area);
if (check == 1)
{
rewind(fp);
check = false;
while (check == false && !feof(fp))
{
fscanf(fp, "%s %s %s", area2, publow, pubhigh);
if ((strlen(publisher) == strlen(publow)) && atoi(area2) == area)
{
if ((strcmp(publisher, publow) >= 0) && (strcmp(publisher, pubhigh) <= 0))
{
check = true;
}
}
}
}
}
return check;
}
ISBNPrefix::~ISBNPrefix()
{
rewind(fp);
if (fp != NULL)
{
fclose(fp);
}
}
| |