[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Create text_info_t for storing text related parts of patch_target_t

From: Daniel Näslund <daniel_at_longitudo.com>
Date: Fri, 16 Jul 2010 20:54:32 +0200

Hi Stefan!

Do you think the attached patch looks reasonable, e.g. it does not
interfer with the overall design of 'svn patch'? It's not fun to review
a patch that touches on so many parts. Sorry 'bout that. Find below some
specific questions.

The patch code consist of four steps:

1) match text in streams
2) apply text to target stream (or reject stream)
3) install tmp files by copying them to the target path
4) send notifications on what we've done.

Question 1
------------
text_info_t is the datatype that will be passed around in step 1 and 2.
Is the name ok? I tried target_info_t first but it sounded too vague. On
the other hand, the doc strings for scan_for_match() and friends will
sound strange:

  Scan lines of TEXT_INFO for a match of the original text of HUNK...

Question 2
--------------
In step 3, we're passing both patch_target_t and text_info_t as
parameters to apply_hunk() and reject_hunk() since we might need
target->path and target->had_rejects. Is it ok to pass both?

[[[
Create text_info_t for storing text related parts of patch_target_t.

This is a step towards handling properties in the patch code. The idea
is that text_info_t should be able to describe any text, be it from a
file or a property. But for now we're only dealing with texts from a
file.

* subversion/libsvn_client/patch.c
  (text_info_t): New.
  (patch_target_t): Fields related to the text have been moved to the
    field 'text_info'
  (init_patch_target): Initialize 'text_info'.
  (resolve_target_wc_file_info,
  (read_line,
  (seek_to_line,
  (match_hunk,
  (scan_for_match): Replace 'target->' with 'text_info->' for fields
    that have moved.
  (match_existing_file): Use 'target->text_info' for accessing the
    streams. We still need other fields from the target and text_info
    can only refer to text_info of the file in this case.
  (get_hunk_info): Add 'text_info' parameter. We still need target for
    match_existing_file().
  (copy_lines_to_target): Add 'text_info' parameter.
  (reject_hunk,
  (apply_hunk): Add 'text_info' parameter. We still need target for
    marking a target as having rejects.
  (send_patch_notification): Uses text_info->hunks
  (apply_one_patch): Pass around target->text_info to the match and
    apply/reject functions.
]]]

Thanks,
Daniel

Received on 2010-07-16 20:56:18 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.