getmyip Day By Day -- January 2003

January 1 - 7

Vacations.

January 8

CVS authors don't follow their own protocol. Particularly, they arbitrary omit the space character from the sequence "ok \n" indicating the end of transmission. Additional checking added to MyCVS in order to catch this bug.

January 9

Primitive conversation "Valid_responses - valid_requests" implemented in MyCVS.

January 10

Reading CVS info manual again. Whom this book is for? Most terms are heavily using before they are defined. Basic features, like "list files without getting their contents", are absent. Developer's crap, like "locks in the repository", is given in details. I have a temptation to write CVS help.

January 11

Handshake operation improved. Space character removed from most commands. Protocol documentation seems to be wrong. First checkout using MyCVS passed.

January 12

MyCVS command-line user interface designed. The program will provide its own console prompt, similarly to widely used ftp and telnet. Today's implementation processes only the command exit. MyCVS will also support traditional CVS single-command mode for compatibility reasons.

January 13

Most MyCVS commands implemented: connect, disconnect, help, pwd, and web.

January 14

MyCVS command ls (dir) implemented. Windows API supporting locale settings is very inconvenient. For example, I want to print the file size (merely the number of bytes) separating thousands with the appropriate character. If I use "default locale" for US-English language settings, Windows appends fractional decimal part (decimal dot and two zeroes) to the integer number of bytes. In order to cut this tail, I have to use "custom formatting": 90 lines of code just to print one number!

January 15

MyCVS commands cd, helpcvs, and cd implemented.

January 16

MyCVS own command opt must show the dialog box. I don't want to use any framework library for that purpose. From other hand, I want to encapsulate the dialog behavior in one C++ class. Therefore, I need to associate my C++ class with the standard pair "window handle + window procedure". The interesting solution, borrowed from ATL, is discussed in following two articles:
http://www.codeconduct.com/ATL/thunkwnd.asp
http://www.codeguru.com/atl/Thunk.html
The idea is simple. When the C++ class creates the window, it injects virtual callback function into the window procedure (which is the inseparable part of the window). The callback function passes input parameters from the window procedure to the C++ class, handles them accordingly to C++ class behavior, and returns the result to the window procedure caller.

January 17

The virtual callback mechanism applied to MyCVS Options dialog. The cost of using C++ class instead of dialog procedure is 100 lines of code.

January 18

Prototyping MyCVS Options dialog.

January 19

According to "Designed for Windows" recommendations, I need to provide uninstall functionality for MyCVS. Therefore, I should use Registry. I wrote the C++ class encapsulating work with Registry. Not surprisingly, it is similar to ATL CRegKey class, but doesn't depend from any ATL file.

January 20

I'm looking for prototypes of MyCVS window user interface design. SourceSafe uses different storing and checking technology. Its Linux analog Source OffSite is a nightmare ( I'm biased against it because I know it well). Cervisia has too long drop-down menus. WinCVS (or CvsGui; they cannot decide) has no design at all.

January 21

I did a sketch of the MyCVS user interface in window mode. By estimation, in order to release the product in February, I should postpone window interface to the next version.

January 22

MyCVS continues to grow. I finished low-level CVS protocol primitives: Argument, Argumentx, Directory, Entry, Global_option, Is_modified, Modified, Root, Unchanged, UseUnchanged.

January 23

MyCVS protocol implementation evolves. I wrote following low-level CVS protocol primitives: add, admin, annotate, ci, co, diff, editors, export, history, import, init, log, noop, rdiff, release, remove, rtag, status, tag, update, update_patches, watch_on, watch_off, watch_add, watch_remove, watchers, valid_requests, version. Too many commands.

January 24-26

I'm working on MyCVS at home, in rare free hours. I have to take the maximum from every line of the program source. With that goal in mind, I read "The C++ Programming Language" by B.Stroustrup. It's a treasure. It has the same effect as ancient texts: the more you already know, the more you will know after reading. Five years ago, the book seemed difficult. Two years ago, I was excited. Today I admire.
I found dozens very interesting points (for example, the possibility to override a private virtual function in derived classes).

January 27

I splitted one big MyCVS source file to twenty small class files. Most of classes are entirely contained in header files.

January 28-30

In order to use terms correctly, I re-read "Object-Oriented Analysis and Design" by G. Booch. In my opinion, there is more analysis than design. Therefore, the book is best suited for early development stages. Now MyCVS has a good theoretical background, and I'm ready to start conceptual modeling. Just like in most software projects, the design starts after writing code. I call it Over-Extreme Programming.

January 31

The article describing CVS protocol started. The best way to understand what is what is to write the manual. Most articles in popular computer magazines are written this way...