/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to push.py

  • Committer: Adrian Wilkins
  • Date: 2008-04-24 15:26:14 UTC
  • mto: This revision was merged to the branch mainline in revision 470.
  • Revision ID: adrian.wilkins@gmail.com-20080424152614-2rnnljbro6vzqvf7
Detect the reserved null: revision in appropriate places. 

This removes a huge shower of stack traces that get dumped to console when 
you look at the bottom of a log.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
 
2
# Copyright (C) 2007 by Jelmer Vernooij <jelmer@samba.org>
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
try:
 
19
    import pygtk
 
20
    pygtk.require("2.0")
 
21
except:
 
22
    pass
 
23
    
 
24
import gtk
 
25
 
 
26
from errors import show_bzr_error
 
27
 
 
28
# FIXME: This needs to be public JRV 20070714
 
29
from bzrlib.builtins import _create_prefix
 
30
from bzrlib.config import LocationConfig
 
31
import bzrlib.errors as errors
 
32
 
 
33
from dialog import error_dialog, info_dialog, question_dialog
 
34
 
 
35
from history import UrlHistory
 
36
 
 
37
class PushDialog(gtk.Dialog):
 
38
    """ New implementation of the Push dialog. """
 
39
    def __init__(self, repository, revid, branch=None, parent=None):
 
40
        """ Initialize the Push dialog. """
 
41
        gtk.Dialog.__init__(self, title="Push - Olive",
 
42
                                  parent=parent,
 
43
                                  flags=0,
 
44
                                  buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL))
 
45
        
 
46
        # Get arguments
 
47
        self.repository = repository
 
48
        self.revid = revid
 
49
        self.branch = branch
 
50
        
 
51
        # Create the widgets
 
52
        self._label_location = gtk.Label(_("Location:"))
 
53
        self._combo = gtk.ComboBoxEntry()
 
54
        self._button_push = gtk.Button(_("_Push"), use_underline=True)
 
55
        self._hbox_location = gtk.HBox()
 
56
        
 
57
        # Set callbacks
 
58
        self._button_push.connect('clicked', self._on_push_clicked)
 
59
        
 
60
        # Set properties
 
61
        self._label_location.set_alignment(0, 0.5)
 
62
        self._hbox_location.set_spacing(3)
 
63
        self.vbox.set_spacing(3)
 
64
        
 
65
        # Pack widgets
 
66
        self._hbox_location.pack_start(self._label_location, False, False)
 
67
        self._hbox_location.pack_start(self._combo, True, True)
 
68
        self.vbox.pack_start(self._hbox_location)
 
69
        self.action_area.pack_end(self._button_push)
 
70
        
 
71
        # Show the dialog
 
72
        self.vbox.show_all()
 
73
        
 
74
        # Build location history
 
75
        self._history = UrlHistory(self.branch.get_config(), 'push_history')
 
76
        self._build_history()
 
77
        
 
78
    def _build_history(self):
 
79
        """ Build up the location history. """
 
80
        self._combo_model = gtk.ListStore(str)
 
81
        for item in self._history.get_entries():
 
82
            self._combo_model.append([ item ])
 
83
        self._combo.set_model(self._combo_model)
 
84
        self._combo.set_text_column(0)
 
85
        
 
86
        if self.branch is not None:
 
87
            location = self.branch.get_push_location()
 
88
            if location is not None:
 
89
                self._combo.get_child().set_text(location)
 
90
    
 
91
    @show_bzr_error
 
92
    def _on_push_clicked(self, widget):
 
93
        """ Push button clicked handler. """
 
94
        location = self._combo.get_child().get_text()
 
95
        revs = 0
 
96
        if self.branch is not None and self.branch.get_push_location() is None:
 
97
            response = question_dialog(_('Set default push location'),
 
98
                                       _('There is no default push location set.\nSet %r as default now?') % location)
 
99
            if response == gtk.RESPONSE_OK:
 
100
                self.branch.set_push_location(location)
 
101
 
 
102
        try:
 
103
            revs = do_push(self.branch, location=location, overwrite=False)
 
104
        except errors.DivergedBranches:
 
105
            response = question_dialog(_('Branches have been diverged'),
 
106
                                       _('You cannot push if branches have diverged.\nOverwrite?'))
 
107
            if response == gtk.RESPONSE_YES:
 
108
                revs = do_push(self.branch, location=location, overwrite=True)
 
109
        
 
110
        self._history.add_entry(location)
 
111
        info_dialog(_('Push successful'),
 
112
                    _("%d revision(s) pushed.") % revs)
 
113
        
 
114
        self.response(gtk.RESPONSE_OK)
 
115
 
 
116
def do_push(br_from, location, overwrite):
 
117
    """ Update a mirror of a branch.
 
118
    
 
119
    :param br_from: the source branch
 
120
    
 
121
    :param location: the location of the branch that you'd like to update
 
122
    
 
123
    :param overwrite: overwrite target location if it diverged
 
124
    
 
125
    :return: number of revisions pushed
 
126
    """
 
127
    from bzrlib.bzrdir import BzrDir
 
128
    from bzrlib.transport import get_transport
 
129
        
 
130
    transport = get_transport(location)
 
131
    location_url = transport.base
 
132
 
 
133
    old_rh = []
 
134
 
 
135
    try:
 
136
        dir_to = BzrDir.open(location_url)
 
137
        br_to = dir_to.open_branch()
 
138
    except errors.NotBranchError:
 
139
        # create a branch.
 
140
        transport = transport.clone('..')
 
141
        try:
 
142
            relurl = transport.relpath(location_url)
 
143
            transport.mkdir(relurl)
 
144
        except errors.NoSuchFile:
 
145
            response = question_dialog(_('Non existing parent directory'),
 
146
                         _("The parent directory (%s)\ndoesn't exist. Create?") % location)
 
147
            if response == gtk.RESPONSE_OK:
 
148
                _create_prefix(transport)
 
149
            else:
 
150
                return
 
151
        dir_to = br_from.bzrdir.clone(location_url,
 
152
            revision_id=br_from.last_revision())
 
153
        br_to = dir_to.open_branch()
 
154
        count = len(br_to.revision_history())
 
155
    else:
 
156
        old_rh = br_to.revision_history()
 
157
        try:
 
158
            tree_to = dir_to.open_workingtree()
 
159
        except errors.NotLocalUrl:
 
160
            # FIXME - what to do here? how should we warn the user?
 
161
            count = br_to.pull(br_from, overwrite)
 
162
        except errors.NoWorkingTree:
 
163
            count = br_to.pull(br_from, overwrite)
 
164
        else:
 
165
            count = tree_to.pull(br_from, overwrite)
 
166
 
 
167
    return count