d06a8476a86ffa0314bb8015a4c11a7bd8902fa4
[platform/upstream/libzypp.git] / zypp / solver / detail / ProblemSolutionUnlock.cc
1
2 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
3 /* ProblemSolution.cc
4  *
5  * Easy-to use interface to the ZYPP dependency resolver
6  *
7  * Copyright (C) 2000-2002 Ximian, Inc.
8  * Copyright (C) 2005 SUSE Linux Products GmbH
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License,
12  * version 2, as published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22  * 02111-1307, USA.
23  */
24
25 #include <sstream>
26
27 #include "zypp/base/String.h"
28 #include "zypp/base/Gettext.h"
29 #include "zypp/base/Algorithm.h"
30 #include "zypp/ResPool.h"
31 #include "zypp/ResFilters.h"
32 #include "zypp/solver/detail/ProblemSolutionUnlock.h"
33
34 using namespace std;
35
36 /////////////////////////////////////////////////////////////////////////
37 namespace zypp
38 { ///////////////////////////////////////////////////////////////////////
39   ///////////////////////////////////////////////////////////////////////
40   namespace solver
41   { /////////////////////////////////////////////////////////////////////
42     /////////////////////////////////////////////////////////////////////
43     namespace detail
44     { ///////////////////////////////////////////////////////////////////
45
46 IMPL_PTR_TYPE(ProblemSolutionUnlock);
47
48 //---------------------------------------------------------------------------
49
50 struct LockReset : public resfilter::PoolItemFilterFunctor
51 {
52     ProblemSolutionUnlock & _problemSolutionUnlock;
53     LockReset( ProblemSolutionUnlock & solution )
54         : _problemSolutionUnlock( solution )
55     { }
56
57     bool operator()( PoolItem item )
58     {
59         _problemSolutionUnlock.addAction ( new TransactionSolutionAction (item, UNLOCK));       
60         return true;
61     }
62 };
63
64         
65 ProblemSolutionUnlock::ProblemSolutionUnlock( ResolverProblem_Ptr parent,
66                                               const ResPool & pool)
67     : ProblemSolution (parent, "", "")
68 {
69     _description = _("unlock all resolvables");
70     LockReset lockReset (*this);
71
72     invokeOnEach ( pool.begin(), pool.end(),
73                    resfilter::ByLock( ),
74                    functor::functorRef<bool,PoolItem>(lockReset));
75 }
76         
77 ProblemSolutionUnlock::ProblemSolutionUnlock( ResolverProblem_Ptr parent,
78                                               PoolItem item)
79     : ProblemSolution (parent, "", "")
80 {
81     // TranslatorExplanation %s = name of package, patch, selection ... 
82     _description = str::form (_("unlock %s"), item->name().c_str() );
83
84     addAction ( new TransactionSolutionAction (item, UNLOCK));
85 }
86
87 ProblemSolutionUnlock::ProblemSolutionUnlock( ResolverProblem_Ptr parent,
88                                               PoolItemList & itemlist)
89     : ProblemSolution (parent, "", "")
90 {
91     _description = _("Unlock these resolvables");
92
93     for (PoolItemList::iterator iter = itemlist.begin();
94          iter != itemlist.end(); iter++) {
95         PoolItem item = *iter;
96         addAction ( new TransactionSolutionAction (item, UNLOCK));
97     }
98     
99     ostringstream details;
100     details << _actions;    
101     _details = details.str();
102 }
103
104       ///////////////////////////////////////////////////////////////////
105     };// namespace detail
106     /////////////////////////////////////////////////////////////////////
107     /////////////////////////////////////////////////////////////////////
108   };// namespace solver
109   ///////////////////////////////////////////////////////////////////////
110   ///////////////////////////////////////////////////////////////////////
111 };// namespace zypp
112 /////////////////////////////////////////////////////////////////////////