Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Code Reviews

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

66%
+2 −0
Code Reviews Counting number of assignments that a `fscanf` format strings implies

I have found an improvement that is worth posting as an answer to my question. One thing that I was not comfortable with was coming up with test cases and figuring out how many assignments a forma...

posted 3y ago by klutt‭  ·  edited 2y ago by klutt‭

Answer
#3: Post edited by user avatar klutt‭ · 2021-08-12T10:28:25Z (over 2 years ago)
  • I have found an improvement that is worth posting as an answer to my question.
  • One thing that I was not comfortable with was coming up with test cases and figuring out how many assignments a format string should have by just analyzing it visually. so I had to find a second way to achieve the same thing that I'm trying to do.
  • I did it by writing a function that takes a format string as argument, creates a file called `warning.c` which only contains a main function with a single scanf call with the format string specified. then the function executes a compile command and counts the number of warnings, because there is one warning for each argument that is missing, and I'm giving no arguments. Here is the code for that:
  • ```c
  • size_t get_no_warnings(const char *fmt)
  • {
  • FILE *fp = fopen("warning.c", "w");
  • if(!fp) {
  • perror("Error opening file");
  • exit(EXIT_FAILURE);
  • }
  • fprintf(fp, "#include <stdio.h>\n\nint main(void) {\n\tscanf(\"%s\");\n}\n", fmt);
  • fclose(fp);
  • fp = popen("gcc warning.c -Wall -Wextra -pedantic 2>&1 | grep \"warning: format\" | wc -l", "r");
  • if(!fp) {
  • perror("Error executing command");
  • exit(EXIT_FAILURE);
  • }
  • char output[100];
  • fgets(output, sizeof(output), fp);
  • size_t ret;
  • if(sscanf(output, "%zu", &ret) != 1) {
  • perror("Error reading output");
  • exit(EXIT_FAILURE);
  • }
  • return ret;
  • }
  • ```
  • With that, I can modify my original code like this. I can change
  • ```c
  • assert(count_assignments(tc.fmt) == tc.n);
  • ```
  • to
  • ```c
  • assert(count_assignments(tc.fmt) == get_no_warnings(tc.fmt));
  • ```
  • I have not made up my mind yet if I should remove the `n` field from `test_case`. would look better, but I'm not sure if it's worth the effort. plus that I assume it's a good thing that I also check if my manual inspection is correct or not. If it's not, there's something about format strings that I don't understand properly.
  • I have found an improvement that is worth posting as an answer to my question.
  • One thing that I was not comfortable with was coming up with test cases and figuring out how many assignments a format string should have by just analyzing it visually. so I had to find a second way to achieve the same thing that I'm trying to do.
  • I did it by writing a function that takes a format string as argument, creates a file called `warning.c` which only contains a main function with a single scanf call with the format string specified. then the function executes a compile command and counts the number of warnings, because there is one warning for each argument that is missing, and I'm giving no arguments. Here is the code for that:
  • ```c
  • size_t get_no_warnings(const char *fmt)
  • {
  • FILE *fp = fopen("warning.c", "w");
  • if(!fp) {
  • perror("Error opening file");
  • exit(EXIT_FAILURE);
  • }
  • fprintf(fp, "#include <stdio.h>\n\nint main(void) {\n\tscanf(\"%s\");\n}\n", fmt);
  • fclose(fp);
  • fp = popen("gcc warning.c -Wall -Wextra -pedantic 2>&1 | grep \"warning: format\" | wc -l", "r");
  • if(!fp) {
  • perror("Error executing command");
  • exit(EXIT_FAILURE);
  • }
  • char output[100];
  • fgets(output, sizeof(output), fp);
  • size_t ret;
  • if(sscanf(output, "%zu", &ret) != 1) {
  • perror("Error reading output");
  • exit(EXIT_FAILURE);
  • }
  • return ret;
  • }
  • ```
  • With that, I can modify my original code like this. I can change
  • ```c
  • assert(count_assignments(tc.fmt) == tc.n);
  • ```
  • to
  • ```c
  • assert(count_assignments(tc.fmt) == get_no_warnings(tc.fmt));
  • ```
  • I have not made up my mind yet if I should remove the `n` field from `test_case`. It would look better, but I'm not sure if it's worth the effort, plus that I assume it's a good thing that I also check if my manual inspection is correct or not. If it's not, there's something about format strings that I don't understand properly.
#2: Post edited by user avatar Kevin M. Mansour‭ · 2021-08-02T05:13:46Z (over 2 years ago)
Minor Stuff
  • I found an improvement that is worth posting as an answer to my own question.
  • One thing I was not comfortable with was coming up with test cases and figuring out how many assignments a format string should have by just analyzing it visually. So I had to find a second way to do achieve the same thing that I'm trying to do.
  • I did it by writing a function that takes a format string as argument, creates a file called `warning.c` which only contains a main function with a single scanf call with the format string specified. Then the function executes a compile command and counts the number of warnings, because there is one warning for each argument that is missing, and I'm giving no arguments. Here is the code for that:
  • ```
  • size_t get_no_warnings(const char *fmt)
  • {
  • FILE *fp = fopen("warning.c", "w");
  • if(!fp) {
  • perror("Error opening file");
  • exit(EXIT_FAILURE);
  • }
  • fprintf(fp, "#include <stdio.h>\n\nint main(void) {\n\tscanf(\"%s\");\n}\n", fmt);
  • fclose(fp);
  • fp = popen("gcc warning.c -Wall -Wextra -pedantic 2>&1 | grep \"warning: format\" | wc -l", "r");
  • if(!fp) {
  • perror("Error executing command");
  • exit(EXIT_FAILURE);
  • }
  • char output[100];
  • fgets(output, sizeof(output), fp);
  • size_t ret;
  • if(sscanf(output, "%zu", &ret) != 1) {
  • perror("Error reading output");
  • exit(EXIT_FAILURE);
  • }
  • return ret;
  • }
  • ```
  • With that, I can modify my original code like this. I can change
  • assert(count_assignments(tc.fmt) == tc.n);
  • to
  • assert(count_assignments(tc.fmt) == get_no_warnings(tc.fmt));
  • I have not made up my mind yet if I should remove the `n` field from `test_case`. Would look better, but I'm not sure if it's worth the effort. Plus that I assume it's a good thing that I also check if my manual inspection is correct or not. If it's not, there's something about format strings that I don't understand properly.
  • I have found an improvement that is worth posting as an answer to my question.
  • One thing that I was not comfortable with was coming up with test cases and figuring out how many assignments a format string should have by just analyzing it visually. so I had to find a second way to achieve the same thing that I'm trying to do.
  • I did it by writing a function that takes a format string as argument, creates a file called `warning.c` which only contains a main function with a single scanf call with the format string specified. then the function executes a compile command and counts the number of warnings, because there is one warning for each argument that is missing, and I'm giving no arguments. Here is the code for that:
  • ```c
  • size_t get_no_warnings(const char *fmt)
  • {
  • FILE *fp = fopen("warning.c", "w");
  • if(!fp) {
  • perror("Error opening file");
  • exit(EXIT_FAILURE);
  • }
  • fprintf(fp, "#include <stdio.h>\n\nint main(void) {\n\tscanf(\"%s\");\n}\n", fmt);
  • fclose(fp);
  • fp = popen("gcc warning.c -Wall -Wextra -pedantic 2>&1 | grep \"warning: format\" | wc -l", "r");
  • if(!fp) {
  • perror("Error executing command");
  • exit(EXIT_FAILURE);
  • }
  • char output[100];
  • fgets(output, sizeof(output), fp);
  • size_t ret;
  • if(sscanf(output, "%zu", &ret) != 1) {
  • perror("Error reading output");
  • exit(EXIT_FAILURE);
  • }
  • return ret;
  • }
  • ```
  • With that, I can modify my original code like this. I can change
  • ```c
  • assert(count_assignments(tc.fmt) == tc.n);
  • ```
  • to
  • ```c
  • assert(count_assignments(tc.fmt) == get_no_warnings(tc.fmt));
  • ```
  • I have not made up my mind yet if I should remove the `n` field from `test_case`. would look better, but I'm not sure if it's worth the effort. plus that I assume it's a good thing that I also check if my manual inspection is correct or not. If it's not, there's something about format strings that I don't understand properly.
#1: Initial revision by user avatar klutt‭ · 2020-10-28T00:52:25Z (over 3 years ago)
I found an improvement that is worth posting as an answer to my own question.

One thing I was not comfortable with was coming up with test cases and figuring out how many assignments a format string should have by just analyzing it visually. So I had to find a second way to do achieve the same thing that I'm trying to do.

I did it by writing a function that takes a format string as argument, creates a file called `warning.c` which only contains a main function with a single scanf call with the format string specified. Then the function executes a compile command and counts the number of warnings, because there is one warning for each argument that is missing, and I'm giving no arguments. Here is the code for that:

```
size_t get_no_warnings(const char *fmt)
{
    FILE *fp = fopen("warning.c", "w");
    if(!fp) {
        perror("Error opening file");
        exit(EXIT_FAILURE);
    }

    fprintf(fp, "#include <stdio.h>\n\nint main(void) {\n\tscanf(\"%s\");\n}\n", fmt);
    fclose(fp);

    fp = popen("gcc warning.c -Wall -Wextra -pedantic 2>&1 | grep \"warning: format\" | wc -l", "r");

    if(!fp) {
        perror("Error executing command");
        exit(EXIT_FAILURE);
    }

    char output[100];
    fgets(output, sizeof(output), fp);
    size_t ret;
    if(sscanf(output, "%zu", &ret) != 1) {
	perror("Error reading output");
	exit(EXIT_FAILURE);
    }
    return ret;
}
```

With that, I can modify my original code like this. I can change

    assert(count_assignments(tc.fmt) == tc.n);

to

    assert(count_assignments(tc.fmt) == get_no_warnings(tc.fmt));

I have not made up my mind yet if I should remove the `n` field from `test_case`. Would look better, but I'm not sure if it's worth the effort. Plus that I assume it's a good thing that I also check if my manual inspection is correct or not. If it's not, there's something about format strings that I don't understand properly.