]> sipb.mit.edu Git - ikiwiki.git/blob - doc/commit-internals.mdwn
remove old discussion page (since it's currently being included into the
[ikiwiki.git] / doc / commit-internals.mdwn
1 Saving this irc transcript here, since it's a fairly in-depth discussion of
2 how ikiwiki handles commits, locking, etc, and avoids some races while
3 doing so.
4
5         <tschwinge> What happens if I edit a page and in the underground a new version is installed into the svn repository?
6         <tschwinge> The revision when I started editing was saved, right?
7         <joeyh> what happens, exactly is:
8         <joeyh> 1. the new version that was committed first get into svn, and ikiwiki updates its WC to have the new version
9         <joeyh> 2. When you save your edit, ikiwiki detects a conflict.
10         <joeyh> 3. It uses svn merge to try to resolve it; if it's resolved it adds your changes transparently
11         <joeyh> 4. If the conflict needs manual resolution, it displays the page with conflict markers in the editor for you to resolve
12         <tschwinge> Ok.
13         <joeyh> Note that in step 2, it detects the conflict by using svn info to get the current Revision of the page in the WC, and compares that to a revision that is stored when you start to edit the page
14         <joeyh> that's why rcs_prepedit exists, to get that revision info
15         <tschwinge> But isn't there a race condition?
16         <joeyh> well, there is locking going on too
17         <joeyh> ikiwiki won't update the WC in step 1. if another instance of itself is getting the Revision info
18         <tschwinge> Is that lockwiki()?
19         <joeyh> yeah
20         <joeyh> note that when it gets the current Revision info of a page during its conflict detection, svn could have changed the page in the repo, and the WC not been updated yet due to the lock, but this isn't a race since the commit will then fail due to a regular svn conflict and the conflict detction will still work.