Use QProcess::errorString instead
[nomnom.git] / src / feed / nfeed.cpp
blob85db3b63dfcc31a29bfc0fc96984035c015f7611
1 /* NomNom
2 * Copyright (C) 2011 Toni Gundogdu <legatvs@gmail.com>
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <QStringList>
19 #include <QFileInfo>
20 #include <QProcess>
22 #include <NFeed>
24 namespace nn
27 namespace feed
30 bool umph_supports(const QString& path, const QString& feature)
32 QStringList args =
33 QStringList() << path.split(" ").takeFirst() << feature;
35 QProcess p;
36 p.start(args.takeFirst(), args);
38 if (!p.waitForFinished())
39 return false;
41 return p.exitStatus() == 0x0 && p.exitCode() == 0x0;
44 QStringList to_args(const QString& path,
45 const QString& type,
46 const QString& ident,
47 const int startIndex,
48 const int maxResults,
49 const bool all)
51 QStringList args = QStringList()
52 << path.split(" ")
53 << "--json"
54 << "-t"
55 << type
56 << ident;
57 if (all)
58 args << "-a";
59 else
61 args << "-s" << QString::number(startIndex);
62 args << "-m" << QString::number(maxResults);
64 return args;
67 } // namespace feed
69 } // namespace nn
71 /* vim: set ts=2 sw=2 tw=72 expandtab: */