662087c4b536c0aa88c88d5c6e3850ec846ce1aa
[platform/upstream/libzypp.git] / zypp / solver / detail / ProblemSolutionUninstall.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/solver/detail/ProblemSolutionUninstall.h"
30 #include "zypp/solver/detail/Helper.h"
31
32 using namespace std;
33
34 /////////////////////////////////////////////////////////////////////////
35 namespace zypp
36 { ///////////////////////////////////////////////////////////////////////
37   ///////////////////////////////////////////////////////////////////////
38   namespace solver
39   { /////////////////////////////////////////////////////////////////////
40     /////////////////////////////////////////////////////////////////////
41     namespace detail
42     { ///////////////////////////////////////////////////////////////////
43
44 IMPL_PTR_TYPE(ProblemSolutionUninstall);
45
46 //---------------------------------------------------------------------------
47 ProblemSolutionUninstall::ProblemSolutionUninstall( ResolverProblem_Ptr parent, PoolItem item,
48                           const std::string & descr,
49                           const std::string & detail)
50     : ProblemSolution (parent, descr, detail)
51 {
52     addAction ( new TransactionSolutionAction (item, REMOVE));
53 }
54
55         
56
57 ProblemSolutionUninstall::ProblemSolutionUninstall( ResolverProblem_Ptr parent,
58                                                     PoolItem item)
59     : ProblemSolution (parent, "", "")
60 {
61     ResStatus status = item.status();
62     if (status.isInstalled()) {
63         // TranslatorExplanation %s = name of package, patch, selection ...
64         _description = str::form (_("delete %s"), item->name().c_str() );
65         // TranslatorExplanation %s = name of package, patch, selection ...         
66         _details = str::form (_("delete %s"), Helper::itemToString (item).c_str());
67     } else {
68         // TranslatorExplanation %s = name of package, patch, selection ...     
69         _description = str::form (_("do not install %s"), item->name().c_str() );
70         // TranslatorExplanation %s = name of package, patch, selection ...         
71         _details = str::form (_("do not install %s"), Helper::itemToString (item).c_str());
72     }
73
74     addAction ( new TransactionSolutionAction (item, REMOVE));
75 }
76
77 ProblemSolutionUninstall::ProblemSolutionUninstall( ResolverProblem_Ptr parent,
78                                                     PoolItemList & itemlist)
79     : ProblemSolution (parent, "", "")
80 {
81     _description = _("Do not install or delete the resolvables concerned");
82
83     for (PoolItemList::iterator iter = itemlist.begin();
84          iter != itemlist.end(); iter++) {
85         PoolItem item = *iter;
86         addAction ( new TransactionSolutionAction (item, REMOVE));
87     }
88     
89     ostringstream details;
90     details << _actions;    
91     _details = details.str();
92 }
93
94       ///////////////////////////////////////////////////////////////////
95     };// namespace detail
96     /////////////////////////////////////////////////////////////////////
97     /////////////////////////////////////////////////////////////////////
98   };// namespace solver
99   ///////////////////////////////////////////////////////////////////////
100   ///////////////////////////////////////////////////////////////////////
101 };// namespace zypp
102 /////////////////////////////////////////////////////////////////////////