Re: [PATCH v3 5/6] transport-helper.c::push_refs(): ignore helper-reported status if ref is not to be pushed

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

On Tue, Jan 05, 2010 at 06:01:13PM +0800, Tay Ray Chuan wrote:


Well, consider it this way. If it's _not_ REF_STATUS_NONE, then what is
it, and what does it mean to be overwriting it?

Maybe I am misunderstanding the problem the patch is addressing, but the
point of these REF_STATUS feels was to act as a small state machine.
Everything starts as NONE, and then:

  - we compare locally against remote refs. We may transition:
      NONE -> UPTODATE
      NONE -> REJECT_NONFASTFORWARD
      NONE -> REJECT_NODELETE

  - we send the push list
      NONE -> EXPECTING_REPORT (if the remote supports individual status)
      NONE -> OK (otherwise)

  - we get back status responses
      EXPECTING_REPORT -> OK
      EXPECTING_REPORT -> REMOTE_REJECT

I haven't looked closely at the new transport helper code, but I would
think it should stick more or less to those transitions. The exception
would be that some transports don't necessarily handle EXPECTING_REPORT
in the same way, and may transition directly from NONE to
OK/REMOTE_REJECT.

So offhand, I would say that your list should also probably include
REJECT_NODELETE. However, I think that status is just for old servers
which didn't support the delete-refs protocol extension. So presumably
that is none of the new helpers, as they all post-date the addition of
that feature by quite a few years.


I'd rather not introduce new state. The point of the status flag was to
encapsulate all of that information, and a new state variable just seems
like introducing extra complexity. If we are not in the NONE state, I
don't see why we would tell the helper about a ref at all.

-Peff
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH resend 0/3] transport: catch non-fast-forwards, Tay Ray Chuan, (Thu Dec 3, 11:54 pm)
[PATCH resend 1/3] refactor ref status logic for pushing, Tay Ray Chuan, (Thu Dec 3, 11:56 pm)
[PATCH v2 0/3] transport: catch non-fast-forwards, Tay Ray Chuan, (Tue Dec 8, 7:34 am)
[PATCH v2 1/3] refactor ref status logic for pushing, Tay Ray Chuan, (Tue Dec 8, 7:35 am)
Re: [PATCH v2 1/3] refactor ref status logic for pushing, Daniel Barkalow, (Tue Dec 8, 10:17 am)
Re: [PATCH v2 1/3] refactor ref status logic for pushing, Daniel Barkalow, (Wed Dec 9, 12:13 am)
[PATCH v3 0/6] transport: catch non-fast forwards, Tay Ray Chuan, (Thu Dec 24, 12:40 am)
[PATCH v3 3/6] refactor ref status logic for pushing, Tay Ray Chuan, (Thu Dec 24, 12:42 am)
Re: [PATCH v3 5/6] transport-helper.c::push_refs(): ignore ..., Jeff King, (Wed Jan 6, 5:04 am)
[PATCH v4 0/6] transport: catch non-fast forwards, Tay Ray Chuan, (Thu Jan 7, 7:12 pm)
[PATCH v4 3/6] refactor ref status logic for pushing, Tay Ray Chuan, (Thu Jan 7, 7:12 pm)