b7f589c4ff1e6c972c7e6a8a99ed5d09c01f764c
[platform/upstream/libzypp.git] / zypp / solver / detail / ProblemSolutionKeep.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/ProblemSolutionKeep.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(ProblemSolutionKeep);
45
46 //---------------------------------------------------------------------------
47
48 ProblemSolutionKeep::ProblemSolutionKeep( ResolverProblem_Ptr parent,
49                                                 PoolItem item )
50     : ProblemSolution (parent, "", "")
51 {
52     // TranslatorExplanation %s = name of package, patch, selection ...    
53     _description = str::form (_("keep %s"), item->name().c_str() );
54     // TranslatorExplanation %s = name of package, patch, selection ...      
55     _details = str::form (_("keep %s"), Helper::itemToString (item).c_str());
56
57     addAction ( new TransactionSolutionAction (item,
58                                                KEEP));
59 }
60
61 ProblemSolutionKeep::ProblemSolutionKeep( ResolverProblem_Ptr parent,
62                                           PoolItemList & itemList )
63     : ProblemSolution (parent, "", "")
64 {
65     _description = _("Keep resolvables");
66
67     for (PoolItemList::iterator iter = itemList.begin();
68          iter != itemList.end(); iter++) {
69         PoolItem item = *iter;
70         addAction ( new TransactionSolutionAction (item, KEEP));
71     }
72
73     ostringstream details;
74     details << _actions;    
75     _details = details.str();
76     
77 }
78
79       ///////////////////////////////////////////////////////////////////
80     };// namespace detail
81     /////////////////////////////////////////////////////////////////////
82     /////////////////////////////////////////////////////////////////////
83   };// namespace solver
84   ///////////////////////////////////////////////////////////////////////
85   ///////////////////////////////////////////////////////////////////////
86 };// namespace zypp
87 /////////////////////////////////////////////////////////////////////////