We didn't reach critical mass for the sail-core audit meeting. 

We are now going to meet tomorrow, Friday, from 12:30-2:30 PDT.  I know 
Hiroki and Tony can make it.

I came up with a few stats:
There are 148 java files in sail-core
There are 135 "types" being built by eclipse.  There are fewer because 
eclipse isn't compiling all the java files.

We touched on ~21 of these classes at the first meeting.   If I remember 
right we met for about 2 hours last time.  So we've got 12 hours to go.

Here is my plan:
- we add a comment to each class we start looking at:
    AUDIT07-
- when we feel we have covered all of methods in that class we remove 
the "-" so it is
    AUDIT07

We can keep track of what has been audited like this:

Go to the terminal and cd to the sail-core folder and run:
 > grep -L "AUDIT07" `find * -name *.java`
That will list all the files that have not been audited

 > grep -l "AUDIT07-" `find * -name *.java`
that will list all the files we have started on but not finished yet

 > grep -l "AUDIT07" `find * -name *.java`
that will list all the files we started on and files we have finished

 > grep -L "AUDIT07" `find * -name *.java` | wc
will give a count of how many files we have to go

I could not figure out how to do something like this in eclipse.  In 
particular I could not figure out how to do "negative" or inverse 
searches, that is why I resorted to the command line.  If anyone knows 
how to do a inverse search in eclipse please let us know.

As we go, we'll at least briefly comment all the methods we talk about.  
And where it is useful build up inheritance and usage relations between 
the classes and methods.

As Stephen suggested we'll start by following the flow through sail-core 
as it happens when the code is used in the classroom.  If practical 
we'll document this flow.  Then we can look at the classes that aren't 
used in this flow.

Scott

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SAIL-Dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/SAIL-Dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to