added new solver request
[platform/upstream/libzypp.git] / zypp / sat / SolverQueueItem.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_QUEUEITEM_H
22 #define ZYPP_SOLVER_DETAIL_QUEUEITEM_H
23
24 #include <iosfwd>
25 #include <list>
26 #include <string>
27
28 #include "zypp/base/ReferenceCounted.h"
29 #include "zypp/base/NonCopyable.h"
30 #include "zypp/base/PtrTypes.h"
31 #include "zypp/ResPool.h"
32
33 /////////////////////////////////////////////////////////////////////////
34 namespace zypp
35 { ///////////////////////////////////////////////////////////////////////
36   ///////////////////////////////////////////////////////////////////////
37   namespace solver
38   { /////////////////////////////////////////////////////////////////////
39     /////////////////////////////////////////////////////////////////////
40     namespace detail
41     { ///////////////////////////////////////////////////////////////////
42
43 typedef enum {
44     QUEUE_ITEM_TYPE_UNKNOWN = 0,
45     QUEUE_ITEM_TYPE_UPDATE,    
46     QUEUE_ITEM_TYPE_INSTALL,
47     QUEUE_ITEM_TYPE_DELETE,
48     QUEUE_ITEM_TYPE_INSTALL_ONE_OF,    
49 } SolverQueueItemType;
50
51 DEFINE_PTR_TYPE(SolverQueueItem);
52         
53 typedef std::list<SolverQueueItem_Ptr> SolverQueueItemList;
54
55 #define CMP(a,b) (((a) < (b)) - ((b) < (a)))
56
57 ///////////////////////////////////////////////////////////////////
58 //
59 //      CLASS NAME : SolverQueueItem
60
61 class SolverQueueItem : public base::ReferenceCounted, private base::NonCopyable {
62     
63   private:
64
65     SolverQueueItemType _type;
66     ResPool _pool;    
67
68   protected:
69
70     SolverQueueItem (SolverQueueItemType type, const ResPool & pool);
71
72   public:
73
74     virtual ~SolverQueueItem();
75
76     // ---------------------------------- I/O
77
78     virtual std::ostream & dumpOn( std::ostream & str ) const;
79
80     friend std::ostream& operator<<(std::ostream & str, const SolverQueueItem & obj)
81     { return obj.dumpOn (str); }
82     friend std::ostream& operator<<(std::ostream & str, const SolverQueueItemList & itemlist);
83
84     // ---------------------------------- accessors
85
86     ResPool pool (void) const { return _pool; }
87
88     // ---------------------------------- methods
89
90     void copy (const SolverQueueItem *from);
91
92     bool isDelete (void) const { return _type == QUEUE_ITEM_TYPE_DELETE; }
93     bool isInstall (void) const { return _type == QUEUE_ITEM_TYPE_INSTALL; }
94     bool isUpdate (void) const { return _type == QUEUE_ITEM_TYPE_UPDATE; }
95     bool isInstallOneOf (void) const { return _type == QUEUE_ITEM_TYPE_INSTALL_ONE_OF; }    
96
97
98     virtual SolverQueueItem_Ptr copy (void) const = 0;
99     virtual int cmp (SolverQueueItem_constPtr item) const = 0;
100     int compare (SolverQueueItem_constPtr item) const { return CMP(_type, item->_type); }
101
102
103 };
104
105 ///////////////////////////////////////////////////////////////////
106     };// namespace detail
107     /////////////////////////////////////////////////////////////////////
108     /////////////////////////////////////////////////////////////////////
109   };// namespace solver
110   ///////////////////////////////////////////////////////////////////////
111   ///////////////////////////////////////////////////////////////////////
112 };// namespace zypp
113 /////////////////////////////////////////////////////////////////////////
114
115 #endif // ZYPP_SOLVER_DETAIL_QUEUEITEM_H