Re: [PATCH]Reduce messages in setup.log

2002-01-28 Thread Michael A Chase

- Original Message -
From: Robert Collins [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, January 28, 2002 20:25
Subject: Re: [PATCH]Reduce messages in setup.log

 - Original Message -
 From: Christopher Faylor [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, January 29, 2002 3:14 PM
 Subject: Re: [PATCH]Reduce messages in setup.log


  On Mon, Jan 28, 2002 at 08:00:36PM -0800, Michael A Chase wrote:
 
  I don't know how Robert prefers this, but it is customary to provide a
  single patch file not a bunch of separate attachments.  With one patch
  file you can just say

 Yes please, one  patch is nicer.

Sorry.  I got confused and thought it was the other way around.

What about the compress_gz.error() and compress_bz.error() messages.  The gz
one is commented out and the bz one isn't.  Should they be the same?  If so,
which is preferred?  I lean toward writing both as long as they are going to
setup.log.full.

--
Mac :})
** I normally forward private questions to the appropriate mail list. **
Ask Smarter: http://www.tuxedo.org/~esr/faqs/smart-questions.htm
Give a hobbit a fish and he eats fish for a day.
Give a hobbit a ring and he eats fish for an age.






Re: [PATCH]Reduce messages in setup.log

2002-01-28 Thread Michael A Chase

- Original Message -
From: Robert Collins [EMAIL PROTECTED]
To: Michael A Chase [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Monday, January 28, 2002 21:38
Subject: Re: [PATCH]Reduce messages in setup.log


 - Original Message -
 From: Michael A Chase [EMAIL PROTECTED]

  If the intention of those messages is to highlight methods that should
 have
  been overridden but aren't, then setup.log is the right place.

 Essentially, yes thats why they are there: incomplete methods. When I
 review your patch I'll be looking at the function status.

There's no sense spending your time on the patch.  I need to change it
drastically or withdraw it.

If I understand the intent:

1.  If a method only returns a constant 0, the message should go to
setup.log.full to make it easier to tell where more work may be needed.

2.  If a method does more than just return a constant 0, it should not call
log(), or if it does, the message is only needed in setup.log.

Possible candidates:

   Performs actual work: compress_bz::peek(), compress_gz::peek(),
compress_gz::~compress_gz(), io_stream_cygfile::peek(), and
io_stream_file::peek().

   Returns NULL: archive::next_file_name(), compress::next_file_name(), and
io_stream::factory().

   Returns -1: compress_bz::seek() and compress_gz::seek().
--
Mac :})
** I normally forward private questions to the appropriate mail list. **
Ask Smarter: http://www.tuxedo.org/~esr/faqs/smart-questions.htm
Give a hobbit a fish and he eats fish for a day.
Give a hobbit a ring and he eats fish for an age.





Re: [PATCH]Reduce messages in setup.log

2002-01-28 Thread Robert Collins

- Original Message -
From: Michael A Chase [EMAIL PROTECTED]
  Essentially, yes thats why they are there: incomplete methods. When
I
  review your patch I'll be looking at the function status.

 There's no sense spending your time on the patch.  I need to change it
 drastically or withdraw it.

I appreciate this. I'll take you up on it as well :].

 If I understand the intent:

 1.  If a method only returns a constant 0, the message should go to
 setup.log.full to make it easier to tell where more work may be
needed.

Yes, LOG_TIMESTAMP (so that a casual inspection will have it visible).
Likewise for any constant response, with a couple of exceptions:
* IF the method will *never* get implemented (ie, do we ever need
writeable archives?) Then the message level should be LOG_BABBLE, and it
should say something like Foo::Bar - I wasn't expected to be
implemented OR used!

 2.  If a method does more than just return a constant 0, it should not
call
 log(), or if it does, the message is only needed in setup.log.

Yes, LOG_BABBLE for routine non-user-visible importance. Noting that a
function is called is usually not needed in fact - thus the // in the
compress_gz:: call we discussed earlier.

 Possible candidates:

Performs actual work: compress_bz::peek(), compress_gz::peek(),
 compress_gz::~compress_gz(), io_stream_cygfile::peek(), and
 io_stream_file::peek().

yah, drop to BABBLE, or just remove the logging completely.

Returns NULL: archive::next_file_name(),
compress::next_file_name(), and
 io_stream::factory().

factory is important, archive::next_file_name and
compress::next_file_name should never get called (ie LOG_TIMESTAMP
these) -  indicates a non-properly overriden sub class.

Returns -1: compress_bz::seek() and compress_gz::seek().

Right. Well, compress_* and seeking don't mix well IMO, so I'm happy for
these to become BABBLERS.

Rob




Re: [PATCH]Reduce messages in setup.log

2002-01-28 Thread Robert Collins


===
- Original Message -
From: Robert Collins [EMAIL PROTECTED]
  1.  If a method only returns a constant 0, the message should go to
  setup.log.full to make it easier to tell where more work may be
 needed.

 Yes, LOG_TIMESTAMP (so that a casual inspection will have it visible).
 Likewise for any constant response, with a couple of exceptions:
 * IF the method will *never* get implemented (ie, do we ever need
 writeable archives?) Then the message level should be LOG_BABBLE, and
it
 should say something like Foo::Bar - I wasn't expected to be
 implemented OR used!
* Or for virtual functions that should be abstract, but can't be (for
whatever reason). (ie io_stream::~io_stream()).

Rob




RE: [PATCH]Reduce messages in setup.log

2002-01-28 Thread Gary R. Van Sickle

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Collins
 Sent: Tuesday, January 29, 2002 12:05 AM
 To: Michael A Chase; [EMAIL PROTECTED]
 Subject: Re: [PATCH]Reduce messages in setup.log


 Ok, I've looked at the patch.

 Most of the methods are stubs that should warn when used. Some aren't,
 and I'll try and merge those changes in by hand tonight. Don't bother
 reissuing the patch - I'm about to cause everyone heartache by removing
 much of the char * usage (I got sick of memleaks)

Yeah, I'm cryin' my eyes out here. ;-)

 for a
 quick-and-dirtyish String class. Sigh, still no STL.

Rob, would you care to just graft more functionality onto my embryonic
cistring class?  Or was that the plan?

--
Gary R. Van Sickle
Brewer.  Patriot.





Re: [PATCH]Reduce messages in setup.log

2002-01-28 Thread Robert Collins


===
- Original Message -
From: Gary R. Van Sickle [EMAIL PROTECTED]

  for a
  quick-and-dirtyish String class. Sigh, still no STL.

 Rob, would you care to just graft more functionality onto my embryonic
 cistring class?  Or was that the plan?

I left it to the side for now, but yes I do think they should merge.

Rob