~zeller-benjamin/qtcreator-plugin-ubuntu/qtc41-beta

« back to all changes in this revision

Viewing changes to src/ubuntu/ubuntubzr.cpp

  • Committer: Juhapekka Piiroinen
  • Date: 2013-09-04 15:30:00 UTC
  • mto: (23.1.14 binary-plugin)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: juhapekka.piiroinen@canonical.com-20130904153000-r4lhfhrjlwmop277
Added cordova plugin from ubuntu-qtcreator-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 2.1.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
 
17
 */
 
18
 
 
19
#include "ubuntubzr.h"
 
20
#include "ubuntuconstants.h"
 
21
#include <QCoreApplication>
 
22
 
 
23
using namespace Ubuntu::Internal;
 
24
 
 
25
UbuntuBzr::UbuntuBzr(QObject *parent) :
 
26
    QObject(parent), m_bInitialized(false)
 
27
{
 
28
    connect(&m_cmd,SIGNAL(finished(int)),this,SLOT(scriptExecuted(int)));
 
29
    m_cmd.setWorkingDirectory(QCoreApplication::applicationDirPath());
 
30
}
 
31
 
 
32
void UbuntuBzr::initialize() {
 
33
    m_cmd.start(QString(QLatin1String("%0/qtc_bzr_info")).arg(Ubuntu::Constants::UBUNTU_SCRIPTPATH));
 
34
}
 
35
 
 
36
void UbuntuBzr::scriptExecuted(int sta) {
 
37
    QStringList data = QString(QString::fromLatin1(m_cmd.readAllStandardOutput())).trimmed().split(QLatin1String("\n"));
 
38
 
 
39
    if (data.length()!=2) {
 
40
        return;
 
41
    }
 
42
 
 
43
    this->m_whoami = data.takeFirst();
 
44
    this->m_launchpadId = data.takeFirst();
 
45
 
 
46
    m_bInitialized = true;
 
47
    emit initializedChanged();
 
48
}