4e8180d9daf47dbb827bf7efdbb2b9ff3a317ffa
[platform/upstream/libzypp.git] / zypp / solver / detail / SolverQueueItemInstallOneOf.cc
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* SolverQueueItem.cc
3  *
4  * Copyright (C) 2008 SUSE Linux Products GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License,
8  * version 2, as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20
21 #include "zypp/base/Logger.h"
22 #include "zypp/solver/detail/SolverQueueItemInstallOneOf.h"
23 #include "satsolver/solver.h"
24
25 /////////////////////////////////////////////////////////////////////////
26 namespace zypp 
27 { ///////////////////////////////////////////////////////////////////////
28   ///////////////////////////////////////////////////////////////////////
29   namespace solver
30   { /////////////////////////////////////////////////////////////////////
31     /////////////////////////////////////////////////////////////////////
32     namespace detail
33     { ///////////////////////////////////////////////////////////////////
34
35 using namespace std;
36
37 IMPL_PTR_TYPE(SolverQueueItemInstallOneOf);
38
39 //---------------------------------------------------------------------------
40
41 std::ostream &
42 SolverQueueItemInstallOneOf::dumpOn( std::ostream & os ) const
43 {
44     os << "[" << "InstallOneOf: ";
45     for (PoolItemList::const_iterator iter = _oneOfList.begin();
46          iter != _oneOfList.end();
47          iter++)
48         os << *iter;
49     os << "]";
50     
51     return os;
52 }
53
54 //---------------------------------------------------------------------------
55
56 SolverQueueItemInstallOneOf::SolverQueueItemInstallOneOf (const ResPool & pool, const PoolItemList & itemList)
57     : SolverQueueItem (QUEUE_ITEM_TYPE_INSTALL_ONE_OF, pool)
58     , _oneOfList (itemList)
59 {
60 }
61
62
63 SolverQueueItemInstallOneOf::~SolverQueueItemInstallOneOf()
64 {
65 }
66
67 //---------------------------------------------------------------------------
68
69 bool SolverQueueItemInstallOneOf::addRule (_Queue & q)
70 {
71     bool ret = true;
72     MIL << "Install one of: " << endl;
73     queue_push( &(q), SOLVER_INSTALL_SOLVABLE_ONE_OF );
74     for (PoolItemList::const_iterator iter = _oneOfList.begin(); iter != _oneOfList.end(); iter++) {
75         Id id = (*iter)->satSolvable().id();
76         if (id == ID_NULL) {
77             ERR << *iter << " not found" << endl;
78             ret = false;
79         } else {
80             MIL << "    candidate:" << *iter << " with the SAT-Pool ID: " << id << endl;
81             queue_push( &(q), id );                 
82         }
83     }
84     queue_push( &(q), 0 ); // finish candidate
85     
86     return ret;
87 }
88
89 SolverQueueItem_Ptr
90 SolverQueueItemInstallOneOf::copy (void) const
91 {
92     SolverQueueItemInstallOneOf_Ptr new_installOneOf = new SolverQueueItemInstallOneOf (pool(), _oneOfList);
93     new_installOneOf->SolverQueueItem::copy(this);
94     
95     return new_installOneOf;
96 }
97
98 int
99 SolverQueueItemInstallOneOf::cmp (SolverQueueItem_constPtr item) const
100 {
101     int cmp = this->compare (item);
102     if (cmp != 0)
103         return cmp;
104     SolverQueueItemInstallOneOf_constPtr install = dynamic_pointer_cast<const SolverQueueItemInstallOneOf>(item);
105
106     return (_oneOfList == install->_oneOfList) ? 0 : -1; // more evaluation would be not useful
107 }
108
109
110 //---------------------------------------------------------------------------
111
112
113 ///////////////////////////////////////////////////////////////////
114     };// namespace detail
115     /////////////////////////////////////////////////////////////////////
116     /////////////////////////////////////////////////////////////////////
117   };// namespace solver
118   ///////////////////////////////////////////////////////////////////////
119   ///////////////////////////////////////////////////////////////////////
120 };// namespace zypp
121 /////////////////////////////////////////////////////////////////////////