如何在c ++中获得包版本? (Linux)的

时间:2014-11-06 01:14:12

标签: c++ linux system

我一直在编写一个需要2.6或更高版本的葡萄酒版本的程序。我想把它作为一个布尔值,所以我一直在尝试使用下面的代码:

#include <string>
#include <iostream>
#include "WineCheck.h"
#include <cstdlib>

using namespace std;

bool checkForWine()
{
    // Create variables for checking wine state
    bool wineIsThere   = false;
    bool wineIsVersion = false;

    // Check dpkg if wine is there
    if (string(system("dpkg -l | cut -c 4-9 | grep \\ wine\\ ")) == " wine ")
        {
        wineIsThere = true;
        // Check version
        if (double(system("wine --version | cut -c 6-8")) >= 2.6)
            wineIsVersion = true;
        }

    // Return
    if (wineIsThere && wineIsVersion)
        return true;
    else
        return false;
}

1 个答案:

答案 0 :(得分:0)

首先,我认为你不应该为此烦恼。 Wine 2.6应该作为依赖项包含在配置脚本和/或包文件中。如果您希望保持对不使用该打包器的其他GNU / Linux发行版的可移植性,那么在您的程序源代码中定位特定的包管理系统并不是一个好主意。

尽管回答你的问题。我发现有两种方法可以做到这一点。您可以查看/var/lib/dpkg/statusRead through the file line by line直到你进入本节。如果您找不到该部分,或Status: ...行没有说installed,则表示未安装葡萄酒。 Version: ...行会告诉您安装了哪个版本。我通过在Debian Wheezy上安装和卸载Wine来验证这种方法。你没有说出你正在使用的发行版,但很明显你使用的是Debian Packaging系统,所以这应该适用于Ubuntu和其他基于Debian的发行版。

$cat /var/lib/dpkg/status
...
Package: wine
Status: install ok installed
Priority: optional
Section: otherosf
Installed-Size: 80
Maintainer: Debian Wine Party &lt;pkg-wine-party@lists.alioth.debian.org&gt;
Architecture: amd64
Version: 1.4.1-4
...

另一个选项是使用libdpkg。我找到了example that lists all installed packages

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

#include <sys/types.h>
#include <sys/stat.h>

#include <dpkg/dpkg.h>
#include <dpkg/dpkg-db.h>
#include <dpkg/pkg-array.h>
#include "filesdb.h"

const char thisname[] = "example1";

int
main(int argc, const char *const *argv)
{
    struct pkg_array array;
    struct pkginfo *pkg;
    int i;
    enum modstatdb_rw msdb_status;

    standard_startup();
    filesdbinit();
    msdb_status = modstatdb_open(msdbrw_readonly);
    pkg_infodb_init(msdb_status);

    pkg_array_init_from_db(&array);
    pkg_array_sort(&array, pkg_sorter_by_name);

    for (i = 0; i < array.n_pkgs; i++) {
        pkg = array.pkgs[i];
        if (pkg->status == stat_notinstalled)
            continue;
        printf("Package --> %s\n", pkg->set->name);
    }

    pkg_array_destroy(&array);

    modstatdb_shutdown();
    standard_shutdown();

}