bd1f5025eded6ec2f605f7b9ba5191e3f7710bf6
[platform/upstream/libzypp.git] / zypp / solver / detail / SolverQueueItemInstallOneOf.h
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* QueueItem.h
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 #ifndef ZYPP_SOLVER_DETAIL_QUEUEITEMINSTALLONEOF_H
22 #define ZYPP_SOLVER_DETAIL_QUEUEITEMINSTALLONEOF_H
23
24 #include <iosfwd>
25 #include <string>
26
27 #include "zypp/solver/detail/SolverQueueItem.h"
28
29 /////////////////////////////////////////////////////////////////////////
30 namespace zypp
31 { ///////////////////////////////////////////////////////////////////////
32   ///////////////////////////////////////////////////////////////////////
33   namespace solver
34   { /////////////////////////////////////////////////////////////////////
35     /////////////////////////////////////////////////////////////////////
36     namespace detail
37     { ///////////////////////////////////////////////////////////////////
38
39 ///////////////////////////////////////////////////////////////////
40 //
41 //      CLASS NAME : SolverQueueItemInstallOneOf
42
43 class SolverQueueItemInstallOneOf : public SolverQueueItem {
44
45   public:
46     typedef std::list<PoolItem> PoolItemList;
47     
48   private:
49
50     PoolItemList _oneOfList; // List of candidates
51     bool _soft;          // if triggered by a soft requirement (a recommends)    
52
53   public:
54
55     SolverQueueItemInstallOneOf (const ResPool & pool, const PoolItemList & itemList, bool soft = false);
56     virtual ~SolverQueueItemInstallOneOf();
57     
58     // ---------------------------------- I/O
59
60     virtual std::ostream & dumpOn( std::ostream & str ) const;
61
62     friend std::ostream& operator<<(std::ostream & str, const SolverQueueItemInstallOneOf & obj)
63     { return obj.dumpOn (str); }
64
65     // ---------------------------------- accessors
66
67     bool isSoft (void) const { return _soft; }    
68     
69     // ---------------------------------- methods
70
71     virtual bool addRule (_Queue & q);    
72     virtual SolverQueueItem_Ptr copy (void) const;
73     virtual int cmp (SolverQueueItem_constPtr item) const;
74 };
75
76 ///////////////////////////////////////////////////////////////////
77     };// namespace detail
78     /////////////////////////////////////////////////////////////////////
79     /////////////////////////////////////////////////////////////////////
80   };// namespace solver
81   ///////////////////////////////////////////////////////////////////////
82   ///////////////////////////////////////////////////////////////////////
83 };// namespace zypp
84 /////////////////////////////////////////////////////////////////////////
85
86 #endif // ZYPP_SOLVER_DETAIL_QUEUEITEMINSTALLONEOF_H