6a0723f609a8750acdef9a4adedb7c87d1556f80
[platform/upstream/libzypp.git] / zypp / solver / detail / ProblemSolutionInstall.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
30 #include "zypp/solver/detail/ProblemSolutionInstall.h"
31 #include "zypp/solver/detail/Helper.h"
32
33 using namespace std;
34
35 /////////////////////////////////////////////////////////////////////////
36 namespace zypp
37 { ///////////////////////////////////////////////////////////////////////
38   ///////////////////////////////////////////////////////////////////////
39   namespace solver
40   { /////////////////////////////////////////////////////////////////////
41     /////////////////////////////////////////////////////////////////////
42     namespace detail
43     { ///////////////////////////////////////////////////////////////////
44
45 IMPL_PTR_TYPE(ProblemSolutionInstall);
46
47 //---------------------------------------------------------------------------
48
49 ProblemSolutionInstall::ProblemSolutionInstall( ResolverProblem_Ptr parent,
50                                                 PoolItem item )
51     : ProblemSolution (parent, "", "")
52 {
53     // TranslatorExplanation %s = name of package, patch, selection ...    
54     _description = str::form (_("install %s"), item->name().c_str() );
55     // TranslatorExplanation %s = name of package, patch, selection ...      
56     _details = str::form (_("install %s"), Helper::itemToString (item).c_str());
57
58     addAction ( new TransactionSolutionAction (item,
59                                                INSTALL));
60 }
61
62 ProblemSolutionInstall::ProblemSolutionInstall( ResolverProblem_Ptr parent,
63                                                 PoolItemList & itemList )
64     : ProblemSolution (parent, "", "")
65 {
66     _description = _("Install missing resolvables");
67
68     for (PoolItemList::iterator iter = itemList.begin();
69          iter != itemList.end(); iter++) {
70         PoolItem item = *iter;
71         addAction ( new TransactionSolutionAction (item, INSTALL));
72     }
73
74     ostringstream details;
75     details << _actions;    
76     _details = details.str();
77     
78 }
79
80       ///////////////////////////////////////////////////////////////////
81     };// namespace detail
82     /////////////////////////////////////////////////////////////////////
83     /////////////////////////////////////////////////////////////////////
84   };// namespace solver
85   ///////////////////////////////////////////////////////////////////////
86   ///////////////////////////////////////////////////////////////////////
87 };// namespace zypp
88 /////////////////////////////////////////////////////////////////////////