The purpose of this assignment is to help you learn or review (1)
the fundamentals of the C programming language, (2) a portion of the
"de-commenting" task of the C preprocessor, and (3) how to use the
GNU/Unix programming tools,
especially bash
, emacs
,
and gcc209
.
Make sure you study the course Policy web page before doing this assignment or any of the EE 209 assignments. In particular, note that you may consult with the course instructors, lab TAs, mailing list, etc. while doing assignments, as prescribed by that web page. However, there is one exception...
Throughout the semester, each assignment will have an "on your own" part. You must do that part of the assignment completely on your own, without consulting with the course instructors, lab TAs, mailing list, etc., except for clarification of requirements. You might think of the "on your own" part of each assignment as a small take-home exam.
For this assignment, "detecting and reporting unterminated comments" (as described below) is the "on your own" part. That part is worth 10% of this assignment.
Your task is to write a C program named wc209
that
prints the number of lines, words, and characters in the input text
fed from standard input to standard ouput. The program behaves
similarly to Linux wc
, but wc209
skips
"commented text"(e.g., text in /* ... */
) and does not
count such text in the output.
Your program should read characters from the standard input stream, and writes the output to the standard output stream and possibly to the standard error stream. Specifically, your program should (1) read text from the standard input stream, (2) writes the number of lines, words, and characters in the input text to the standard output stream with each comment replaced by a space, and (3) writes error and warning messages as appropriate to the standard error stream. A typical execution of your program from a shell might look like this:
The output (3 13 300
) indicates that there are 3 lines,
13 words, and 300 characters in the file, somefile.txt
.
Here are a few rules.
isspace()
-- space, form-fead ('\f'), newline('\n'), carriage
return ('\r'), horizontal tab('\t'), and vertical tab ('\v').
2 1 4
. However, an
empty file (with no characters at all) produces 0 0 0
.
In the following examples a space character is shown as
"s
" and a newline character as
"n
".
Your program should internally replace each comment with a space. Examples:
Standard Input Stream | Internal Representation After Decommenting | Standard Output Stream | Standard Error Stream |
---|---|---|---|
abc/*def*/ghin
|
abcsghin
|
2s2s8n
|
|
abc/*def*/sghin
|
abcssghin
|
2s2s9n
|
|
abcs/*def*/ghin
|
abcssghin
|
2s2s9n
|
Your program should define "comment" as in the C99 standard. In
particular, your program should consider text of the form
(/*...*/
) to be a comment. It should not
consider text of the form (//...
) to be a
comment. Example:
Standard Input Stream | Internal Representation After Decommenting | Standard Output Stream | Standard Error Stream |
---|---|---|---|
abc//defn
|
abc//defn
|
2s1s9n
|
Your program should allow a comment to span multiple lines. That is, your program should allow a comment to contain newline characters. Your program should add blank lines as necessary to preserve the original line numbering. Also, each newline character in comment is counted as one character. Examples:
Standard Input Stream | Internal Representation After Decommenting | Standard Output Stream | Standard Error Stream |
---|---|---|---|
abc/*defnghi*/jklnmnon
|
abcsnjklnmnon
|
4s3s13n
|
|
abc/*defnghinjkl*/mnonpqrn
|
abcsnnmnonpqrn
|
5s3s14n
|
Your program should not recognize nested comments. Example:
Standard Input Stream | Internal Representation After Decommenting | Standard Output Stream | Standard Error Stream |
---|---|---|---|
abc/*def/*ghi*/jkl*/mnon
|
abcsjkl*/mnon
|
2s2s13n
|
Your program should detect an unterminated comment. If your program detects end-of-file before a comment is terminated, it should write the message "Error: line X: unterminated comment" to the standard error stream. "X" should be the number of the line on which the unterminated comment begins. Examples:
Standard Input Stream | Standard Output Stream | Standard Error Stream |
---|---|---|
abc/*defnghin
|
Error:slines1:sunterminatedscommentn
|
|
abcdefnghi/*n
|
Error:slines2:sunterminatedscommentn
|
|
abc/*def/ghinjkln
|
Error:slines1:sunterminatedscommentn
|
|
abc/*def*ghinjkln
|
Error:slines1:sunterminatedscommentn
|
|
abc/*defnghi*n
|
Error:slines1:sunterminatedscommentn
|
|
abc/*defnghi/n
|
Error:slines1:sunterminatedscommentn
|
Your program (more precisely, its main
function)
should return EXIT_FAILURE
if it was unsuccessful, that
is, if it detects an unterminated comment and so was unable to remove
comments properly. Otherwise it should
return EXIT_SUCCESS
or, equivalently 0. Note that
EXIT_SUCCESS
and EXIT_FAILURE
are defined in the standard header
file, stdlib.h
.
Your program should work for standard input lines of any length whose number of characters is less than 2 billion characters. (You don't have to consider any test cases over 2 billion characters.)
Design your program as a deterministic finite state automaton (DFA, alias FSA). The DFA concept is described in lectures, and in Section 5.1 of the book Introduction to Programming (Sedgewick and Wayne). That book section is available through the web at http://introcs.cs.princeton.edu/java/51language/.
We suggest that your program use the standard C getchar
function to read characters from the standard input stream.
You should create your program on the lab machines cluster using bash
, emacs
, and gcc209
.
Express your DFA using the traditional "ovals and labeled arrows" notation. More precisely, use the same notation as is used in the examples from Section 7.3 of the Sedgewick and Wayne book. Let each oval represent a state. Give each state a descriptive name. Let each arrow represent a transition from one state to another. Label each arrow with the character, or class of characters, that causes the transition to occur. We encourage (but do not require) you also to label each arrow with action(s) that should occur (e.g. "print the character") when the corresponding transition occurs.
Express as much of the program's logic as you can within your DFA. The more logic you express in your DFA, the better your grade on the DFA will be.
To properly report unterminated comments, your program must contain logic to keep track of the current line number of the standard input stream. You need not show that logic in your DFA.
Use emacs
to create source code in a file named wc209.c
that implements your DFA.
Use the gcc209
command to preprocess, compile, assemble, and link your program. Perform each step individually, and examine the intermediate results to the extent possible.
Execute your program multiple times on various input files that test all logical paths through your code.
We have provided several files below.
samplewc209 wc209 Sample Tests
(1) Download all files to your project directory. You will find samplewc209
and 10 test C source files. You need to make samplewc209
executable (by changing file permission) by
(2) samplewc209
is an executable version of a correct assignment solution. Your program should write exactly (character for character) the same data to the standard output stream and the standard error stream as samplewc209
does. You should test your program using commands similar to these:
The Unix diff
command finds
differences between two given files. diff output1
output2
produces output, then samplewc209
and your
program have written different characters to the standard output
stream. Similarly, if the command diff errors1 errors2
produces output, then samplewc209
and your program have
written different characters to the standard error stream.
You also should test your program against its own source code using a command sequence such as this:
readme
File and an Ethics documentUse emacs
to create a text file named readme
(not readme.txt
, or README
, or Readme
, etc.) that contains:
Descriptions of your code should not be in the readme
file. Instead they should be integrated into your code as comments.
Your readme
file should be a plain text file. Don't create your readme
file using Microsoft Word, Hangul (HWP) or any other word processor.
For every assignment submission, you must submit your own Ethics document that pledges that you did not violate any rules of course policy or any rules of ethics enforced by KAIST while doing this assignment.
Please edit an Ethics document for assignment 1 and submit it along with other files. Please write the assignment number, your name, sign on it, and make it into a PDF file (you can convert it into the PDF format in the FILE menu of MS Word).
Your submission should include your wc209.c
file, the files that gcc209
generated from it, and your readme
file.
Also submit your DFA. Create your "labeled ovals and labeled arrows" DFA and make it in a PDF file. A DFA drawn using drawing software (e.g. Microsoft PowerPoint) would be best. But it is sufficient to submit a photo of a neatly hand-drawn DFA. Make sure you convert the file into a PDF file.
Please name the DFA file dfa.pdf
(not dfa.txt
, DFA
, DFA.jpg
, DFA.png
,etc.)
We cannot accept your DFA via e-mail.
Create a local directory named 'YourID_assign1
' and place all your files in it. Then, tar
your submission file by issuing the following command on a lab machine (assuming your ID is 20191234):
Upload your submission file (20191234_assign1.tar.gz) to our KLMS assignment submission page. We do not accept e-mail submission (unless our course KLMS page is down).
Please follow the same procedure for the future assignments.
Your submission file should look like this:
You can use the late submission (late pass; as known as a token) which can be late up to three days without penalty for the first four programming assignments. That is, you can apply your late submission days (within 3 days in total) spread over the first four programming assignments. The minimum granulaity is one day: if you are 1 hour late, that's still counted as one day late. If you're going to spend your free late days, please say so in your readme file.
You need to notify your token usage in your readme file in following format; [TOKEN=n]
where n
is the number of tokens that you
want to use. For example, if you want to use 2 tokens, following text MUST be included in your readme
.
You need to strictly follow this format. Otherwise, TAs will not consider your late token usage.
We will grade your work on two kinds of quality: quality from the user's point of view, and quality from the programmer's point of view. To encourage good coding practices, we will deduct points if gcc209
generates warning messages.
From the user's point of view, a program has quality if it behaves as it should. The correct behavior of your program is defined by the previous sections of this assignment specification, and by the behavior of the given samplewc209
program.
From the programmer's point of view, a program has quality if it is well styled and thereby easy to maintain. In part, style is defined by the rules given in The Practice of Programming (Kernighan and Pike), as summarized by the Rules of Programming Style document. For this assignment we will pay particular attention to rules 1-24. These additional rules apply:
c
might indicate that the variable is of type char
, i
might indicate int
, pc
might mean char*
, ui
might mean unsigned int
, etc. But it is fine to use another style -- a style that does not include the type of a variable in its name -- as long as the result is a clear and readable program.main
function -- should begin with a comment that describes what the function does from the point of view of the caller. (The comment should not describe how the function works.) It should do so by explicitly referring to the function's parameters and return value. The comment also should state what, if anything, the function reads from the standard input stream or any other stream, and what, if anything, the function writes to the standard output stream, the standard error stream, or any other stream. Finally, the function's comment should state which global variables the function uses or affects. In short, a function's comments should describe the flow of data into and out of the function.main
function. Instead your program should consist of multiple small functions, each of which performs a single well-defined task. For example, you might create one function to implement each state of your DFA.As prescribed by Kernighan and Pike style rule 25, generally you should avoid using global variables. Instead all communication of data into and out of a function should occur via the function's parameters and its return value. You should use ordinary call-by-value parameters to communicate data from a calling function to your function. You should use your function's return value to communicate data from your function back to its calling function. You should use call-by-reference parameters to communicate additional data from your function back to its calling function, or as bi-directional channels of communication.
However, call-by-reference involves using pointer variables, which we have not discussed yet. So for this assignment you may use global variables instead of call-by-reference parameters. (But we encourage you to use call-by-reference parameters.)
In short, you should use ordinary call-by-value function parameters and function return values in your program as appropriate. But you need not use call-by-reference parameters; instead you may use global variables. In subsequent assignments you should use global variables only when there is a good reason to do so.