C: Convert string to unsigned long long Error
up vote
1
down vote
favorite
I'm simply trying to convert a String
(readed from a line in a file) in a long long
variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)
#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read
typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;
// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};
// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------
int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}
// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}
struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;
if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}
// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}
// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}
array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;
return(array);
}
// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing
printf("nLoading data from file...n");
FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}
char *read_line_p;
char buffer[1024];
int buf_size = 1024;
while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);
/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);
struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;
generic_array_add(array, (void*) record_p);
free(read_line_p);
}
fclose(dataset_p);
printf("nData loadedn");
}
Here's the file which I want to read, it's a simple .txt
file:
9
8
7
6
5
4
3
2
2
1
10
c segmentation-fault strtoull
add a comment |
up vote
1
down vote
favorite
I'm simply trying to convert a String
(readed from a line in a file) in a long long
variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)
#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read
typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;
// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};
// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------
int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}
// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}
struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;
if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}
// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}
// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}
array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;
return(array);
}
// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing
printf("nLoading data from file...n");
FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}
char *read_line_p;
char buffer[1024];
int buf_size = 1024;
while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);
/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);
struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;
generic_array_add(array, (void*) record_p);
free(read_line_p);
}
fclose(dataset_p);
printf("nData loadedn");
}
Here's the file which I want to read, it's a simple .txt
file:
9
8
7
6
5
4
3
2
2
1
10
c segmentation-fault strtoull
Check ifinteger_field_in_read_line_p
isNULL
.strtok
may returnNULL
.
– Jabberwocky
Nov 8 at 9:39
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm simply trying to convert a String
(readed from a line in a file) in a long long
variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)
#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read
typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;
// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};
// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------
int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}
// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}
struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;
if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}
// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}
// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}
array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;
return(array);
}
// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing
printf("nLoading data from file...n");
FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}
char *read_line_p;
char buffer[1024];
int buf_size = 1024;
while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);
/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);
struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;
generic_array_add(array, (void*) record_p);
free(read_line_p);
}
fclose(dataset_p);
printf("nData loadedn");
}
Here's the file which I want to read, it's a simple .txt
file:
9
8
7
6
5
4
3
2
2
1
10
c segmentation-fault strtoull
I'm simply trying to convert a String
(readed from a line in a file) in a long long
variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)
#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read
typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;
// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};
// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------
int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}
// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}
struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;
if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}
// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}
// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}
array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;
return(array);
}
// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing
printf("nLoading data from file...n");
FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}
char *read_line_p;
char buffer[1024];
int buf_size = 1024;
while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);
/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);
struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;
generic_array_add(array, (void*) record_p);
free(read_line_p);
}
fclose(dataset_p);
printf("nData loadedn");
}
Here's the file which I want to read, it's a simple .txt
file:
9
8
7
6
5
4
3
2
2
1
10
c segmentation-fault strtoull
c segmentation-fault strtoull
edited Nov 8 at 9:38
Some programmer dude
290k24241400
290k24241400
asked Nov 8 at 9:33
Lorenzo Tabasso
187
187
Check ifinteger_field_in_read_line_p
isNULL
.strtok
may returnNULL
.
– Jabberwocky
Nov 8 at 9:39
add a comment |
Check ifinteger_field_in_read_line_p
isNULL
.strtok
may returnNULL
.
– Jabberwocky
Nov 8 at 9:39
Check if
integer_field_in_read_line_p
is NULL
. strtok
may return NULL
.– Jabberwocky
Nov 8 at 9:39
Check if
integer_field_in_read_line_p
is NULL
. strtok
may return NULL
.– Jabberwocky
Nov 8 at 9:39
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
The problem is these three lines:
while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
The fgets
function reads one line, and leaves the newline 'n'
at the end of that. That means there's only one 'n'
in the string you attempt to tokenize. So the second call to strtok
should return NULL
.
You don't check for that, and therefore any dereference of that NULL
pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
The problem is these three lines:
while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
The fgets
function reads one line, and leaves the newline 'n'
at the end of that. That means there's only one 'n'
in the string you attempt to tokenize. So the second call to strtok
should return NULL
.
You don't check for that, and therefore any dereference of that NULL
pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
add a comment |
up vote
3
down vote
accepted
The problem is these three lines:
while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
The fgets
function reads one line, and leaves the newline 'n'
at the end of that. That means there's only one 'n'
in the string you attempt to tokenize. So the second call to strtok
should return NULL
.
You don't check for that, and therefore any dereference of that NULL
pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
The problem is these three lines:
while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
The fgets
function reads one line, and leaves the newline 'n'
at the end of that. That means there's only one 'n'
in the string you attempt to tokenize. So the second call to strtok
should return NULL
.
You don't check for that, and therefore any dereference of that NULL
pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.
The problem is these three lines:
while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");
The fgets
function reads one line, and leaves the newline 'n'
at the end of that. That means there's only one 'n'
in the string you attempt to tokenize. So the second call to strtok
should return NULL
.
You don't check for that, and therefore any dereference of that NULL
pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.
answered Nov 8 at 9:38
Some programmer dude
290k24241400
290k24241400
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
add a comment |
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204913%2fc-convert-string-to-unsigned-long-long-error%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Check if
integer_field_in_read_line_p
isNULL
.strtok
may returnNULL
.– Jabberwocky
Nov 8 at 9:39