summaryrefslogtreecommitdiff
path: root/src/qt/package.cc
blob: 59b0411966bdf2dd07e983a7d57b7572bee8f07f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/** \file package.cc */
//
// Copyright 1999-2008 Daniel Burrows
// Copyright 2008 Obey Arthur Liu
// Copyright (C) 2010 Piotr Galiszewski
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; see the file COPYING.  If not, write to
// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.

// Local includes
#include "package.h"

#include "aptitude.h"
#include "solution_fragment.h" // For archives_text.

#include <generic/apt/apt.h>
#include <generic/apt/config_signal.h>

// System includes
#include <apt-pkg/pkgcache.h>
#include <apt-pkg/strutl.h>
#include <apt-pkg/pkgrecords.h>

namespace cw = cwidget;

using aptitude::apt::get_tags;
using aptitude::apt::tag;
using aptitude::description_element_ref;
using aptitude::parse_desc;
using boost::make_shared;
using cw::util::transcode;

namespace aptitude
{
  namespace gui
  {
    namespace qt
    {
      package_ptr package::create(const pkgCache::PkgIterator &pkg)
      {
        return make_shared<package>(pkg);
      }

      package::package(const pkgCache::PkgIterator &_pkg)
        : pkg(_pkg)
      {
        // name is always used during during initial sorting.
        // So lazy loading doesn't have sense here.
        name = pkg.Name();
      }

      package::~package()
      {
      }

      const pkgCache::PkgIterator &package::get_pkg() const
      {
        return pkg;
      }

      const version_ptr &package::get_candidate_ver() const
      {
        if(!candidate_ver)
        {
          pkgDepCache::StateCache &state = (*apt_cache_file)[pkg];

          pkgCache::VerIterator candver = state.CandidateVerIter(*apt_cache_file);

          if(!candver.end())
            candidate_ver = version::create(candver);
          else
            candidate_ver = version_ptr();
        }
        return *candidate_ver;
      }

      const version_ptr &package::get_visible_ver() const
      {
        if(!visible_ver)
        {
          pkgDepCache::StateCache &state = (*apt_cache_file)[pkg];

          if(get_candidate_ver())
            visible_ver = get_candidate_ver();
          else if(pkg.CurrentVer().end() && state.Install())
            visible_ver = version::create(state.InstVerIter(*apt_cache_file));
          else if(!pkg.CurrentVer().end())
            visible_ver = version::create(pkg.CurrentVer());
          else if(!pkg.VersionList().end())
            visible_ver = version::create(pkg.VersionList());
          else
            visible_ver = version_ptr();
        }
        return *visible_ver;
      }

      package::version_iterator package::versions_begin() const
      {
        if(!versions)
          load_versions();

        return (*versions).begin();
      }

      package::version_iterator package::versions_end() const
      {
        if(!versions)
          load_versions();

        return (*versions).end();
      }

      package::tag_iterator package::tags_begin() const
      {
        if(!tags)
          tags = aptitude::apt::get_tags(pkg);

        return (*tags).begin();
      }

      package::tag_iterator package::tags_end() const
      {
        if(!tags)
          tags = aptitude::apt::get_tags(pkg);

        return (*tags).end();
      }

      void package::load_versions() const
      {
        versions = std::vector<version_ptr>();

        for(pkgCache::VerIterator i=pkg.VersionList(); !i.end(); i++)
          if(i!=get_visible_ver()->get_ver())
            (*versions).push_back(version::create(i));
        else
          (*versions).push_back(get_visible_ver());
      }

      const std::string &package::get_archive() const
      {
        return get_visible_ver()
             ? get_visible_ver()->get_archive()
             : empty_string;
      }

      const std::string &package::get_candidate_version() const
      {
        return get_candidate_ver()
             ? get_candidate_ver()->get_version_number()
             : empty_string;
      }

      const std::string &package::get_current_version() const
      {
        if(!current_version)
          current_version = pkg.CurrentVer()
                          ? pkg.CurrentVer().VerStr()
                          : std::string();

        return *current_version;
      }

      const std::string &package::get_homepage() const
      {
        return get_visible_ver()
             ? get_visible_ver()->get_homepage()
             : empty_string;
      }

      const std::string &package::get_maintainer() const
      {
        return get_visible_ver()
             ? get_visible_ver()->get_maintainer()
             : empty_string;
      }

      const std::string &package::get_name() const
      {
        return name;
      }

      const std::vector<description_element_ref> &package::get_parsed_long_description() const
      {
        return get_visible_ver()
             ? get_visible_ver()->get_parsed_long_description()
             : long_description_fallback;
      }

      const std::string &package::get_priority() const
      {
        return get_visible_ver()
             ? get_visible_ver()->get_priority()
             : empty_string;
      }

      const std::wstring &package::get_raw_long_description() const
      {
        return get_visible_ver()
             ? get_visible_ver()->get_raw_long_description()
             : empty_wstring;
      }

      const std::string &package::get_section() const
      {
        if(!get_visible_ver())
          return empty_string;

        if(!section)
          section = pkg.Section()
                  ? pkg.Section()
                  : _("Unknown");

        return *section;
      }

      const std::string &package::get_short_description() const
      {
        if(!get_visible_ver())
        {
          if(!short_desc_fallback)
            short_desc_fallback = _("virtual");

          return *short_desc_fallback;
        }

        return get_visible_ver()->get_short_description();
      }

      const std::string &package::get_source_package() const
      {
        if(!get_visible_ver())
          return empty_string;

        if(!source_package)
        {
          source_package = get_visible_ver()->get_source_package();
          if((*source_package).empty())
            source_package = get_name();
        }
        return *source_package;
      }
    }
  }
}