This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:spring2016:cprog:projects:cbf0 [2016/03/21 22:58] – [20 line Throttled display (on a file of 512 bytes)] wedge | haas:spring2016:cprog:projects:cbf0 [2016/03/22 19:56] (current) – [Unthrottled display (512 bytes)] wedge | ||
---|---|---|---|
Line 57: | Line 57: | ||
* error message should be of the form: **Error: Terminal height is less than 20 lines!** | * error message should be of the form: **Error: Terminal height is less than 20 lines!** | ||
* Unlike the width, the height can impact program output (taller terminals, if not otherwise throttled by a second command-line argument, can auto-expand if there is more room and data to display). | * Unlike the width, the height can impact program output (taller terminals, if not otherwise throttled by a second command-line argument, can auto-expand if there is more room and data to display). | ||
- | * If a second command-line argument | + | * The second command-line argument is a sizing throttle (controlling the number of lines your program will display). If a **0** is given, assume autosize (use the detected height to be your maximum in your calculations). |
* Display an ASCII header identifying the various fields (offset, hex, ascii), surrounded by dashed lines, running 79 characters in width. See below for more details. | * Display an ASCII header identifying the various fields (offset, hex, ascii), surrounded by dashed lines, running 79 characters in width. See below for more details. | ||
* Each row after the header will display: | * Each row after the header will display: | ||
Line 110: | Line 110: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||
offset | offset | ||
Line 178: | Line 178: | ||
lab46: | lab46: | ||
</ | </ | ||
+ | |||
+ | ====30 line throttled display (on a 217 byte file)==== | ||
+ | |||
+ | This example demonstrates the scenario where there isn't enough data to complete not only the specified number of lines, but not even the line it was displaying. In such a case, we pad the line with spaces out to the end (both data and ascii fields) so that everything lines up (note the display of the ascii for whatever data was present on the line). | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | ------------------------------------------------------------------------------- | ||
+ | offset | ||
+ | ------------------------------------------------------------------------------- | ||
+ | 0x00000000 eb 63 90 10 8e d0 bc 00 b0 b8 00 00 8e d8 8e c0 .c.............. | ||
+ | 0x00000010 fb be 00 7c bf 00 06 b9 00 02 f3 a4 ea 21 06 00 ...|.........!.. | ||
+ | 0x00000020 00 be be 07 38 04 75 0b 83 c6 10 81 fe fe 07 75 ....8.u........u | ||
+ | 0x00000030 f3 eb 16 b4 02 b0 01 bb 00 7c b2 80 8a 74 01 8b .........|...t.. | ||
+ | 0x00000040 4c 02 cd 13 ea 00 7c 00 00 eb fe 00 00 00 00 00 L.....|......... | ||
+ | 0x00000050 00 00 00 00 00 00 00 00 00 00 00 80 01 00 00 00 ................ | ||
+ | 0x00000060 00 00 00 00 ff fa eb 07 f6 c2 80 75 02 b2 80 ea ...........u.... | ||
+ | 0x00000070 74 7c 00 00 31 c0 8e d8 8e d0 bc 00 20 fb a0 64 t|..1....... ..d | ||
+ | 0x00000080 7c 3c ff 74 02 88 c2 52 be 80 7d e8 1c 01 be 05 |< | ||
+ | 0x00000090 7c f6 c2 80 74 48 b4 41 bb aa 55 cd 13 5a 52 72 |...tH.A..U..ZRr | ||
+ | 0x000000a0 3d 81 fb 55 aa 75 37 83 e1 01 74 32 31 c0 89 44 =..U.u7...t21..D | ||
+ | 0x000000b0 04 40 88 44 ff 89 44 02 c7 04 10 00 66 8b 1e 5c .@.D..D.....f..\ | ||
+ | 0x000000c0 7c 66 89 5c 08 66 8b 1e 60 7c 66 89 5c 0c c7 44 |f.\.f..`|f.\..D | ||
+ | 0x000000d0 06 00 70 b4 42 cd 13 72 05 ..p.B..r. | ||
+ | ------------------------------------------------------------------------------- | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | =====Bonus Opportunities===== | ||
+ | The following can be considered a bonus point opportunity: | ||
+ | |||
+ | * Enhance the program to accept up to 6 pairs of additional values (offset followed by its length), where each offset through length will be colored using ANSI text escape sequences. | ||
+ | * For any line containing this colorized text, highlight the address in bold white. | ||
+ | |||
+ | ====Sample output==== | ||
+ | |||
+ | As an example, running the program with the following arguments could produce results like this: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | {{: | ||
+ | ====ANSI escape sequences for color==== | ||
+ | This probably isn't very portable, and depending on the terminal, it may not work for some people. | ||
+ | |||
+ | It may be most convenient to set up preprocessor #define statements near the top of your code, as follows: | ||
+ | |||
+ | <code c> | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | </ | ||
+ | |||
+ | To use, you output them: | ||
+ | |||
+ | < | ||
+ | fprintf(stdout, | ||
+ | fprintf(stdout, | ||
+ | fprintf(stdout, | ||
+ | </ | ||
+ | |||
+ | You have to remember to turn the color or setting off (resetting it) to revert back to the original color. | ||
+ | |||
+ | You can mix and match as well: | ||
+ | |||
+ | < | ||
+ | fprintf(stdout, | ||
+ | fprintf(stdout, | ||
+ | fprintf(stdout, | ||
+ | fprintf(stdout, | ||
+ | fprintf(stdout, | ||
+ | </ | ||
+ | |||
+ | While there are 8 available foreground colors, bolding can double that range to 16. | ||
=====Submission===== | =====Submission===== | ||
To successfully complete this project, the following criteria must be met: | To successfully complete this project, the following criteria must be met: | ||
* Code must compile cleanly (no warnings or errors) | * Code must compile cleanly (no warnings or errors) | ||
- | | + | |
* Code must be nicely and consistently indented (you may use the **indent** tool) | * Code must be nicely and consistently indented (you may use the **indent** tool) | ||
- | * Code must utilize the specifications presented above | + | * Code must utilize |
+ | * Output **must** match the specifications presented above (when given the same inputs) | ||
* Code must be commented | * Code must be commented | ||
* have a properly filled-out comment banner at the top | * have a properly filled-out comment banner at the top | ||
Line 190: | Line 281: | ||
* Track/ | * Track/ | ||
* Submit a copy of your source code to me using the **submit** tool. | * Submit a copy of your source code to me using the **submit** tool. | ||
- | * You are to submit 3 files: | ||
- | * your C source code to accomplish this task | ||
- | * your copy of out.file | ||
- | * your processed cbf0.jpg file | ||
To submit this program to me using the **submit** tool, run the following command at your lab46 prompt: | To submit this program to me using the **submit** tool, run the following command at your lab46 prompt: | ||
<cli> | <cli> | ||
- | $ submit cprog cbf0 cbf0.c | + | $ submit cprog cbf0 cbf0.c |
Submitting cprog project " | Submitting cprog project " | ||
-> cbf0.c(OK) | -> cbf0.c(OK) | ||
- | -> cbf0.file(OK) | ||
- | -> / | ||
SUCCESSFULLY SUBMITTED | SUCCESSFULLY SUBMITTED |