libzypp  17.32.5
SolverQueueItem.cc
Go to the documentation of this file.
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 extern "C"
21 {
22 #include <solv/solver.h>
23 }
24 
25 #define ZYPP_USE_RESOLVER_INTERNALS
26 
27 #include <zypp/base/Logger.h>
29 
30 #include <utility>
31 
32 using std::endl;
33 
35 namespace zypp
36 {
37  namespace solver
39  {
40  namespace detail
42  {
43 
44 
46 
47 //---------------------------------------------------------------------------
48 
49 std::ostream &
50 SolverQueueItem::dumpOn( std::ostream & os ) const
51 {
52  switch (_type) {
53  case QUEUE_ITEM_TYPE_UNKNOWN : os << "unknown"; break;
54  case QUEUE_ITEM_TYPE_UPDATE : os << "update"; break;
55  case QUEUE_ITEM_TYPE_LOCK : os << "lock"; break;
56  case QUEUE_ITEM_TYPE_INSTALL : os << "install"; break;
57  case QUEUE_ITEM_TYPE_DELETE : os << "delete"; break;
58  case QUEUE_ITEM_TYPE_INSTALL_ONE_OF: os << "install one of"; break;
59  default: os << "?solverqueueitem?"; break;
60  }
61  return os;
62 }
63 
64 
65 std::ostream&
66 operator<<( std::ostream & os, const SolverQueueItemList & itemlist )
67 {
68  for (SolverQueueItemList::const_iterator iter = itemlist.begin(); iter != itemlist.end(); ++iter) {
69  if (iter != itemlist.begin())
70  os << "," << endl << "\t";
71  os << **iter;
72  }
73  return os;
74 }
75 
76 //---------------------------------------------------------------------------
77 
78 SolverQueueItem::SolverQueueItem (SolverQueueItemType type, ResPool pool)
79  : _type (type)
80  , _pool (std::move(pool))
81 {
82 }
83 
84 
85 SolverQueueItem::~SolverQueueItem()
86 {
87 }
88 
89 //---------------------------------------------------------------------------
90 
91 void
93 {
94 }
95 
96 
97 //---------------------------------------------------------------------------
98 
99 
101  };// namespace detail
104  };// namespace solver
107 };// namespace zypp
Definition: Arch.h:363
std::ostream & operator<<(std::ostream &str, const SolutionActionList &actionlist)
std::ostream & dumpOn(std::ostream &str, const Capability &obj)
Definition: Capability.cc:580
std::list< SolverQueueItem_Ptr > SolverQueueItemList
Definition: Types.h:45
std::ostream & copy(std::istream &from_r, std::ostream &to_r)
Copy istream to ostream.
Definition: IOStream.h:51
Global ResObject pool.
Definition: ResPool.h:61
IMPL_PTR_TYPE(SATResolver)
Easy-to use interface to the ZYPP dependency resolver.
Definition: Application.cc:19