On Sun, Sep 19, 2010 at 9:39 PM, Daniel Shahaf <d.s_at_daniel.shahaf.name> wrote:
>> * subversion/include/svn_subst.h
>> Â Added documentation of the new public API function
>> Â svn_subst_translate_string2().
>>
>
> Should use this syntax:
>
> * subversion/include/svn_subst.h
> Â (svn_subst_translate_string2): New function.
Okay.
>> * subversion/libsvn_subr/subst.c
>> Â (translation_baton): Added TRANSLATED_EOL field. It's where translate_chunk()
>> Â Â records that it translated a line ending.
>> Â (create_translation_baton): Added a new parameter TRANSLATED_EOL. Initialize
>> Â Â the TRANSLATED_EOL field of the resulting translation_baton to this value.
>> Â (translate_chunk): After translating a line ending, set the value that is
>> Â Â pointed to by TRANSLATED_EOL (from the translation baton) to TRUE.
>
> Could just say "Record that an EOL translation has been done" or similar.
>
> In general, the log message looks good, but to my taste it is borders
> the 'too verbose a log message' line. Â (I might have written the same
> without the last sentence of each bullet.) Â Remember that the log
> message must never /repeat/ the code (or in-code comments); rather, it
> should describe them from a high level.
Okay. I will attempt to make the log message less verbose.
>> Index: subversion/include/svn_subst.h
>> ===================================================================
>> --- subversion/include/svn_subst.h   (revision 996730)
>> +++ subversion/include/svn_subst.h   (working copy)
>> @@ -598,6 +598,26 @@ svn_error_t *svn_subst_translate_string(svn_string
>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â const char *encoding,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â apr_pool_t *pool);
>>
>> +/** Translate the data in @a value (assumed to be in encoded in charset
>> + * @a encoding) to UTF8 and LF line-endings. Â If @a encoding is @c NULL,
>> + * then assume that @a value is in the system-default language encoding.
>> + * If @p translated_to_utf8 is not @c NULL, then
>> + * @code *translated_to_utf8 @endcode is set to @c TRUE if at least one
>
> You use @a, @p, and @code. Â Existing code uses only @a. Â Why the
> difference?
Oops. @p should be @a.
I believe that in Doxygen, @c WORD is short for @code WORD @endode.
>> + * character of @p value in the source charset was translated to UTF-8;
>
> Need the word "to" after the semicolon for the English to be correct.
Fixed. (When I say "fixed", I mean that I committed a fix in my own
fork of Subversion: http://github.com/dtrebbien/subversion )
>> + * @c FALSE otherwise. If @p translated_line_endings is not @c NULL, then
>> + * @code *translated_line_endings @endcode is set to @c TRUE if at least one
>> + * line ending was changed to LF; Â @c FALSE otherwise. Return the translated data in @a *new_value,
>> + * allocated in @a pool.
>> + *
>
> Need to rewrap.
Fixed.
>> + * @since New in 1.6
>
> s/1.6/1.7/
Fixed.
>> + */
>> +svn_error_t *svn_subst_translate_string2(svn_string_t **new_value,
>
> I realize that you followed the precedent of svn_subst_translate_string(),
> but please:
>
> Return type on own line, function name on the next line.
Fixed.
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t *translated_to_utf8,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t *translated_line_endings,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â const svn_string_t *value,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â const char *encoding,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â apr_pool_t *pool);
>> +
>> Â /** Translate the data in @a value from UTF8 and LF line-endings into
>
> Need to update svn_subst_translate_string()'s docstring and
> implementation and mark it deprecated:
> http://subversion.apache.org/docs/community-guide/community-guide.html#deprecation
> http://mid.gmane.org/20100814132023.089A223889B3@eris.apache.org
Okay.
>> Â * native locale and native line-endings, or to the output locale if
>> Â * @a for_output is TRUE. Â Return the translated data in @a
>
>> Index: subversion/libsvn_subr/subst.c
>> ===================================================================
>> --- subversion/libsvn_subr/subst.c   (revision 996730)
>> +++ subversion/libsvn_subr/subst.c   (working copy)
>> @@ -765,6 +765,7 @@ svn_subst_keywords_differ2(apr_hash_t *a,
>> Â struct translation_baton
>> Â {
>> Â Â const char *eol_str;
>> + Â svn_boolean_t *translated_eol;
>> Â Â svn_boolean_t repair;
>> Â Â apr_hash_t *keywords;
>> Â Â svn_boolean_t expand;
>> @@ -805,6 +806,7 @@ struct translation_baton
>> Â */
>> Â static struct translation_baton *
>> Â create_translation_baton(const char *eol_str,
>> + Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t *translated_eol,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t repair,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â apr_hash_t *keywords,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t expand,
>> @@ -818,6 +820,7 @@ create_translation_baton(const char *eol_str,
>>
>> Â Â b->eol_str = eol_str;
>> Â Â b->eol_str_len = eol_str ? strlen(eol_str) : 0;
>> + Â b->translated_eol = translated_eol;
>> Â Â b->repair = repair;
>> Â Â b->keywords = keywords;
>> Â Â b->expand = expand;
>> @@ -884,6 +887,8 @@ translate_chunk(svn_stream_t *dst,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â b->src_format,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â &b->src_format_len, b->newline_buf,
>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â b->newline_off, dst, b->repair));
>> + Â Â Â Â Â Â Â if (b->translated_eol)
>> + Â Â Â Â Â Â Â Â *b->translated_eol = TRUE;
>>
>
> I don't have the patience to dive into this function right now, but the
> patch is large enough that I'll review the rest and come back to this
> some other time.
>
> <appendum>
> There are several calls to translate_newline() in this function, but you
> added the '*translated_eol = TRUE' line only after one of them. Â That
> triggers a red light for me...
> </appendum>
>
> (PS: "appendum"? anyone got a better suggestion?)
> (PPS: "addendum".)
Oh, I didn't notice. I will have to look into this issue.
>> Â Â /* Jam the text into the destination stream (to translate it). */
>> Â Â SVN_ERR(svn_stream_write(dst_stream, src, &len));
>> @@ -1362,6 +1386,19 @@ svn_subst_read_specialfile(svn_stream_t **stream,
>> Â Â return SVN_NO_ERROR;
>> Â }
>>
>> +svn_error_t *
>> +svn_subst_translate_cstring2(const char *src,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â const char **dst,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â const char *eol_str,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t repair,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â apr_hash_t *keywords,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t expand,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â apr_pool_t *pool)
>> +{
>> + Â return translate_cstring2(dst, NULL, src, eol_str, repair, keywords, expand,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â pool);
>> +}
>
> So, this is revved because svn_subst_translate_string2() needs it (and
> svn_subst_translate_string() doesn't).
I am unsure of what you mean.
I took the original implementation of `svn_subst_translate_cstring2`
and placed it in the new static utility function `translate_cstring2`.
`translate_cstring2` accepts another parameter, and its definition
(the old definition on `svn_subst_translate_cstring2`) was
appropriately modified to handle this new parameter. This way, I don't
have to modify the public API.
>> +
>> Â /* Given a special file at SRC, generate a textual representation of
>> Â Â it in a normal file at DST. Â Perform all allocations in POOL. */
>> Â /* ### this should be folded into svn_subst_copy_and_translate3 */
>> @@ -1714,6 +1751,54 @@ svn_subst_translate_string(svn_string_t **new_valu
>>
>>
>> Â svn_error_t *
>> +svn_subst_translate_string2(svn_string_t **new_value,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t *translated_to_utf8,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_boolean_t *translated_line_endings,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â const svn_string_t *value,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â const char *encoding,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â apr_pool_t *pool)
>> +{
>
> Why is this adding entirely new lines of code (the diff shows only /^+/
> lines)? Â Normally we make the new function by editing the old one
> in-place, and then re-create the old one as a wrapper (like
> translate_cstring2()).
>
> The fact you didn't do so makes me suspect you just copied the code of
> svn_subst_translate_string(), which is bad for several reasons:
>
> * It's code duplication. Â If we ever make a bugfix, we'll have to
> Â remember to make it to both versions of the function.
>
> * It makes it impossible for me to see /from the unidiff/ what's the
> Â code difference between the current and being-added versions of the
> Â function.
Yes, I did copy-and-paste. I see your point, though, and I am going to
correct this by adding another `static` function that both will call.
> Out of patience for one sitting, so not reviewing these now. Â (I feel they're
> orthogonal/independent of the parts I'd already reviewed.)
>
> I suggest you go ahead (respond to the review, submit an updated patch,
> etc) without waiting; the svnsync part will eventually get its share of
> reviews. Â Also, you may want to consider splitting this patch into two
> parts (subst work separate from svnsync work).
I like the idea of splitting this into two patches.
Received on 2010-09-21 17:13:17 CEST