User Tools

Site Tools


notes:sysprog:projects:wut1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
notes:sysprog:projects:wut1 [2018/01/29 19:52] – [addition.c] wedgenotes:sysprog:projects:wut1 [2018/02/13 19:25] (current) – [command-line arguments] wedge
Line 12: Line 12:
 The programs are (edit the appropriate section and record your name to claim it; once someone has claimed a program, it is considered unavailable for others in the class to do for core credit): The programs are (edit the appropriate section and record your name to claim it; once someone has claimed a program, it is considered unavailable for others in the class to do for core credit):
  
-====COMMAND-LINE ARGUMENTS====+====command-line arguments====
 All of the programs should accept the following command-line arguments (check for program-specific additional ones as well in the appropriate section): All of the programs should accept the following command-line arguments (check for program-specific additional ones as well in the appropriate section):
  
-  * **-h/-?** display usage information and exit+  * **-h** display usage information and exit
   * **-V** display version information and exit   * **-V** display version information and exit
   * **-s "STRING"** specify STRING as value to process   * **-s "STRING"** specify STRING as value to process
Line 22: Line 22:
   * **-8** set byte/word as 8-bits (default)   * **-8** set byte/word as 8-bits (default)
   * **-n** no delimiter between processing units   * **-n** no delimiter between processing units
-  * **-d 'CHAR'** use CHAR as delimiter between processing units+  * **-d 'CHAR'** use CHAR as delimiter between processing units (space is default)
   * **-q** quiet, do not display anything to STDOUT   * **-q** quiet, do not display anything to STDOUT
   * **-v** verbose, display more information to STDOUT    * **-v** verbose, display more information to STDOUT 
  
-====GENERAL PROGRAM PROCESSING/USAGE====+====general program processing/usage====
  
 **__usage__:** the program takes delimiter-separated numeric values via specified filename, or as a string communicated via the command-line, or from STDIN, converts them and then displays the result as appropriate for the particular tool (considering delimited output as well; delimiter is set to a single space by default). The program terminates upon exhausting all of its input. **__usage__:** the program takes delimiter-separated numeric values via specified filename, or as a string communicated via the command-line, or from STDIN, converts them and then displays the result as appropriate for the particular tool (considering delimited output as well; delimiter is set to a single space by default). The program terminates upon exhausting all of its input.
 +
 +====compiling===
 +
 +The Makefiles are set up for this, but you are basically to compile each program with the following compiler options:
 +
 +  * **-Wall** increased warning pickiness/verbosity
 +  * **-Werror** treat warnings as errors
 +  * **--std=c99** compile with C99 language standards
 +
 ====binary.c==== ====binary.c====
  
 <code> <code>
  
- binary.c - helper program to display hex numbers in their+ binary.c - program to display hex numbers in their
             binary representation.             binary representation.
  
   synopsis: binary [OPTION]... [FILE]...   synopsis: binary [OPTION]... [FILE]...
  
-   compile: gcc -o binary binary.c -Wall --std=c99 -Werror 
    execute: binary -s "de ad be ef 00 01 5a"    execute: binary -s "de ad be ef 00 01 5a"
         or: echo "de ad be ef 00 01 5a" | binary         or: echo "de ad be ef 00 01 5a" | binary
- 
 </code> </code>
  
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
 +  * **-B** input data is to be considered as binary (basically a passthrough)
   * **-O** input data is to be considered as octal   * **-O** input data is to be considered as octal
   * **-D** input data is to be considered as decimal   * **-D** input data is to be considered as decimal
   * **-H** input data is to be considered as hexadecimal (default)   * **-H** input data is to be considered as hexadecimal (default)
  
-Claimed by:+Claimed by: Christian Cattell (ccattell)
  
 ====parity.c==== ====parity.c====
  
 <code> <code>
- parity.c - helper program to check the parity (odd, even, none)+ parity.c - program to check the parity (odd, even, none)
             of input binary values.             of input binary values.
  
   synopsis: parity PARITYOPTION [OPTION]... [FILE]...   synopsis: parity PARITYOPTION [OPTION]... [FILE]...
  
-   compile: gcc -o parity parity.c -Wall --std=c99 -Werror 
    execute: parity -O -s "10110010"    execute: parity -O -s "10110010"
         or: echo "10110010" | parity -E         or: echo "10110010" | parity -E
Line 73: Line 80:
 Lack of one of these options should generate an error. Lack of one of these options should generate an error.
  
-Claimed by:+Claimed by:Jeff Jansen
  
 ====endian.c==== ====endian.c====
  
 <code> <code>
-endian.c helper program to encode value(s) according to+endian.c  - program to encode value(s) according to
             an indicated endianness.             an indicated endianness.
  
   synopsis: endian [OPTION]... [FILE]...   synopsis: endian [OPTION]... [FILE]...
  
-   compile: gcc -o endian endian.c -Wall -Werror --std=c99 +   execute: endian -s "dead beef" -e -w 16 -b 16 
-   execute: endian -s "de ad be ef" --8 +        or: echo "de ad be ef" | endian --16
-        or: echo "de ad be ef" | endian --16+
 </code> </code>
  
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-16** use 16-bits as endian wordsize +  * **-w #** set wordsize (power of 2 between 4 and 128, 8 is default) 
-  * **-b** also consider underlying bytes in endianness encoding +  * **-u** also consider underlying bytes in endianness encoding 
-  * **-B** encode as big endian +  * **-E** encode as big endian 
-  * **-L** encode as little endian (default)+  * **-e** encode as little endian (default) 
 +  * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)
  
 Your program can indicate a "setting not supported" message (and exit) if the **-7** argument is specified. Your program can indicate a "setting not supported" message (and exit) if the **-7** argument is specified.
  
-Claimed by:+The **-4** and **-8** arguments are equivalent to **-w 4** and **-w 8**, respectively. 
 + 
 +Claimed by: Dillon Vargeson(dvarges3)
  
 ====checksum.c==== ====checksum.c====
  
 <code> <code>
-checksum.c - helper program to calculate checksum+checksum.c - program to calculate checksum
              of provided values.              of provided values.
  
    synopsis: checksum [OPTION]... [FILE]...    synopsis: checksum [OPTION]... [FILE]...
  
-    compilegcc -o checksum checksum.c -Wall -Werror --std=c99 +    execute: checksum -b 16 -s "de ad be ef" 
-    execute: checksum -s "de ad be ef" +         or: echo "de ad be ef" | checksum -b 16
-         or: echo "de ad be ef" | checksum+
 </code> </code>
  
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
 +  * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)
   * **-P** perform parity word checksum   * **-P** perform parity word checksum
   * **-S** perform word sum checksum (default)   * **-S** perform word sum checksum (default)
  
-Claimed by:+Claimed by:Patrick (phastin1)
  
 ====twoscomp.c==== ====twoscomp.c====
  
 <code> <code>
-twoscomp.c - helper program to calculate two's complement+twoscomp.c - program to calculate two's complement
              of provided values.              of provided values.
  
Line 134: Line 143:
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-B** input/output is in binary (default) +  * **-w #** set wordsize (power of 2 between 4 and 128, 8 is default) 
-  * **-O** input/output is in octal +  * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)
-  * **-D** input/output is in decimal +
-  * **-H** input/output is in hexadecimal+
  
-Claimed by:+Claimed by: Ben Schultes (bschulte)
  
 ====addition.c==== ====addition.c====
  
 <code> <code>
-addition.c - helper program to perform addition (without+addition.c - program to perform addition (without
              actually using any addition- only logic operations)              actually using any addition- only logic operations)
              on the input values.              on the input values.
Line 150: Line 157:
    synopsis: addition [OPTION]... [FILE]...    synopsis: addition [OPTION]... [FILE]...
  
-    compile: gcc -o addition addition.c -Wall -Werror --std=c99 
     execute: addition -s "10011010 11010001"     execute: addition -s "10011010 11010001"
          or: echo "11001011 00011101" | addition          or: echo "11001011 00011101" | addition
Line 157: Line 163:
 Additional Command-line arguments to implement: Additional Command-line arguments to implement:
  
-  * **-B** input/output is in binary (default) +  * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default) 
-  * **-O** input/output is in octal +  * **-C** final carry out value is set to return value (otherwise return 0 on success) 
-  * **-D** input/output is in decimal +  * **-I #** set an initial carry in value (defaults to 0)
-  * **-H** input/output is in hexadecimal+
  
-Claimed by:+Claimed by: Kris (kbeykirc)
  
 ====bitmask.c==== ====bitmask.c====
  
-<code c+<code> 
-Claimed by Andrei-abratkov+bitmask.c  - program to apply specified bitmask 
 +             against set of input values. 
 + 
 +   synopsis: bitmask -M BITMASK [OPTION]... [FILE]... 
 + 
 +    execute: bitmask -M "10110111" -s "10011010 11010001" 
 +         or: echo "11001011 00011101" | bitmask -M "10110101"
 </code> </code>
  
 +Additional Command-line arguments to implement:
 +
 +  * **-w #** set wordsize (power of 2 between 4 and 128, 8 is default)
 +  * **-b BASE** input/output base (of 2, 8, 10, or 16; base 2 is default)
 +  * **-M "BITMASK"** specify bitmask value for processing (required)
 +
 +Claimed by: Andrei Bratkovski (abratkov)
  
 ====rotate.c==== ====rotate.c====
  
-<code c>+<code> 
 +rotate.c   - program to perform a bit rotate 
 +             against a set of input values. 
 + 
 +   synopsis: rotate -L[#]|-R[#] [OPTION]... [FILE]...
  
 +    execute: rotate -L 3 -s "10011010 11010001"
 +         or: echo "1100101100011101" | rotate -W 16 -R
 </code> </code>
  
-Claimed by:+A bit rotate preserves bits, a bit shift discards bits. 
 + 
 +Additional Command-line arguments to implement: 
 + 
 +  * **-w #** set wordsize (power of 2 between 4 and 128) 
 +  * **-L #** perform a left rotate operation (shift by # bits; 1 if not specified) 
 +  * **-R #** perform a right rotate operation (shift by # bits; 1 if not specified) 
 + 
 +Claimed by: Aaron Houghtaling (ahought2)
  
 ====invert.c==== ====invert.c====
  
-<code c>+<code> 
 +invert.c   - program to perform a bit inversion 
 +             against a set of input values (toggle all 
 +             0s to 1s, and 1s to 0s).
  
 +   synopsis: invert [OPTION]... [FILE]...
 +
 +    execute: invert -s "10011010 11010001"
 +         or: echo "1100101100011101" | invert
 </code> </code>
  
-Claimed by:+Word size doesn't really matter for invert. It is merely flipping bits, however many there are. 
 + 
 +Additional Command-line arguments to implement: 
 + 
 +  * **-B** input data is to be considered as binary (default) 
 +  * **-O** input data is to be considered as octal 
 +  * **-D** input data is to be considered as decimal 
 +  * **-H** input data is to be considered as hexadecimal 
 + 
 +Claimed by: Matthew Chon (mchon)
  
 =====SPECIFICATIONS===== =====SPECIFICATIONS=====
Line 204: Line 252:
  
 <cli> <cli>
-lab46:~/src/sysprog/wut#$ submit sysprog wut# tool.c+lab46:~/src/sysprog/wut#make submit
 ... ...
 </cli> </cli>
notes/sysprog/projects/wut1.1517255539.txt.gz · Last modified: 2018/01/29 19:52 by wedge