added weak
[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 << "[" << (_soft?"Soft":"") << "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                                                           bool soft)
58     : SolverQueueItem (QUEUE_ITEM_TYPE_INSTALL_ONE_OF, pool)
59     , _oneOfList (itemList)
60     , _soft (soft)    
61 {
62 }
63
64
65 SolverQueueItemInstallOneOf::~SolverQueueItemInstallOneOf()
66 {
67 }
68
69 //---------------------------------------------------------------------------
70
71 bool SolverQueueItemInstallOneOf::addRule (_Queue & q)
72 {
73     bool ret = true;
74     MIL << "Install one of " << (_soft ? "(soft):" : ":")<< endl;
75     
76     if (_soft) {    
77         queue_push( &(q), SOLVER_INSTALL_SOLVABLE_ONE_OF | SOLVER_WEAK);
78     } else {
79         queue_push( &(q), SOLVER_INSTALL_SOLVABLE_ONE_OF );
80     }
81     
82     for (PoolItemList::const_iterator iter = _oneOfList.begin(); iter != _oneOfList.end(); iter++) {
83         Id id = (*iter)->satSolvable().id();
84         if (id == ID_NULL) {
85             ERR << *iter << " not found" << endl;
86             ret = false;
87         } else {
88             MIL << "    candidate:" << *iter << " with the SAT-Pool ID: " << id << endl;
89             queue_push( &(q), id );                 
90         }
91     }
92     queue_push( &(q), 0 ); // finish candidate
93     
94     return ret;
95 }
96
97 SolverQueueItem_Ptr
98 SolverQueueItemInstallOneOf::copy (void) const
99 {
100     SolverQueueItemInstallOneOf_Ptr new_installOneOf = new SolverQueueItemInstallOneOf (pool(), _oneOfList);
101     new_installOneOf->SolverQueueItem::copy(this);
102     new_installOneOf->_soft = _soft;
103     
104     return new_installOneOf;
105 }
106
107 int
108 SolverQueueItemInstallOneOf::cmp (SolverQueueItem_constPtr item) const
109 {
110     int cmp = this->compare (item);
111     if (cmp != 0)
112         return cmp;
113     SolverQueueItemInstallOneOf_constPtr install = dynamic_pointer_cast<const SolverQueueItemInstallOneOf>(item);
114
115     return (_oneOfList == install->_oneOfList) ? 0 : -1; // more evaluation would be not useful
116 }
117
118
119 //---------------------------------------------------------------------------
120
121
122 ///////////////////////////////////////////////////////////////////
123     };// namespace detail
124     /////////////////////////////////////////////////////////////////////
125     /////////////////////////////////////////////////////////////////////
126   };// namespace solver
127   ///////////////////////////////////////////////////////////////////////
128   ///////////////////////////////////////////////////////////////////////
129 };// namespace zypp
130 /////////////////////////////////////////////////////////////////////////