Title: COMP309/509 - Lecture 5 class: middle, center, inverse
Recall that the Fibonacci series has to do with breeding rabbits:
If a pair of rabbits can mate at age 1 month and produce another pair.
.center[]
Then each other process in the ring does the following:
It should also check for overflow of the sum.
Solving a complex problem using procedural abstraction:
So the first thing to do is, using procedural abstraction, get the basics right.
void get_integers(char buff[], long *first,long *second){
read(STDIN_FILENO, buff, BUFFSIZE);
*first = atol(strtok(buff," "));
*second = atol(strtok(NULL," "));
}
man strtok
for the details.#include <stdio.h> /* for printf */
#include <stdlib.h> /* for atol */
#include <unistd.h> /* for read */
#include <string.h> /* for strtok */
#define BUFFSIZE 50
void get_integers(char buff[], long *first, long *second){
read(STDIN_FILENO, buff, BUFFSIZE);
*first = atol(strtok(buff, " "));
*second = atol(strtok(NULL, " "));
}
int main(void){
char buff[BUFFSIZE];
long first, second;
get_integers(buff, &first, &second);
printf("Got %ld and %ld\n", first, second);
return 0;
}
gdb
or DDD, the other using valgrind
-g
flag.man gdb
valgrind
with the name of the executable and any command line arguments your executable expects.
Read what it says.void safe_get_integers(char buff[], long *first, long *second){
char* token = NULL;
int bytes;
if((first == NULL) || (second == NULL)) return;
bytes = read(STDIN_FILENO, buff, BUFFSIZE);
if(bytes < 0){
*first = 0;
*second = 0;
} else {
*first = atol((((token = strtok(buff," ")) == NULL) ? "0" : token));
*second = atol((((token = strtok(NULL," ")) == NULL) ? "0" : token));
}
}
21641:examples $ ./example01
Segmentation fault: 11
21641:examples $ ./example01
1
Segmentation fault: 11
21641:examples $ ./example01
1 2
Got 1 and 2
21641:examples $ ./example02
Got 0 and 0
21641:examples $ ./example02
1
Got 1 and 0
21641:examples $ ./example02
1 3
Got 1 and 3
21641:examples $
int send_numbers(char buff[], long num1, long num2){
sprintf(buff, "%ld %ld", num1, num2);
write(STDOUT_FILENO, buff, strlen(buff) + 1);
}
void safe_sum(long first, long *second, long *third){
*third = first + *second;
if(*third < 0){
*third = 0;
*second = 0; };
}
void report_sum(int i,long fst,long old_snd,long snd,long thrd){
fprintf(stderr,
"\nProcess %d
with PID %d
and parent PID %d
recieved %ld %ld
and sent %ld %ld.\n",
i,
(int)getpid(),
(int)getppid(),
fst,
old_snd,
snd,
thrd); }
int main(int argc, char *argv[ ]){
int i;
char buff[BUFFSIZE];
long first;
long second;
long third ;
/* make the ring here */
{
/* ring process code */
long old_second;
if(i == 1){
/* mother of all processes */
send_numbers(buff, 1,1); }
/* all processes */
get_integers(buff, &first, &second);
old_second = second;
safe_sum(first,&second,&third);
if(i > 1){
send_numbers(buff, second, third);
report_sum( i, first, old_second, second, third); }
else {
fprintf(stderr,
"\n\nfibonacci(%d) = %ld\n\n",
nprocs,
first); }
exit (EXIT_SUCCESS);
}
} /* end of main program here */
.center[]
.center[]
.center[]
.center[]
class: middle, center, inverse