aboutsummaryrefslogtreecommitdiff
path: root/src/extensions/applicationextension/mapplicationextensionmetadata.cpp
blob: 81d11d91100bb6fee1bf7beaf6e44ae67a93aac1 (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
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (directui@nokia.com)
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at directui@nokia.com.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/

#include "mapplicationextensionmetadata.h"
#include <QDir>
#include <MDebug>

const QString EXTENSION_BINARY_KEY("X-MeeGoApplicationExtension/Extension");
const QString IDENTIFIER_KEY("X-MeeGoApplicationExtension/Identifier");
const QString INTERFACE_KEY("X-MeeGoApplicationExtension/Interface");

MApplicationExtensionMetaData::MApplicationExtensionMetaData(const QString &fileName) : MDesktopEntry(fileName)
{
}

MApplicationExtensionMetaData::~MApplicationExtensionMetaData()
{
}

bool MApplicationExtensionMetaData::isValid() const
{
    // Make sure that the metadata file is a valid desktop file.
    if (!MDesktopEntry::isValid()) {
        return false;
    }

    // Loop through keys and check that all are found
    QStringList requiredKeys;
    requiredKeys << EXTENSION_BINARY_KEY << INTERFACE_KEY;
    foreach(const QString &key, requiredKeys) {
        if (!contains(key)) {
            return false;
        }
    }

    // If metadata contains runner binary, check that the binary exists.
    if (exec().length() > 0 && runnerBinary() == NULL) {
        return false;
    }

    // Check that extension binary exists in filesystem.
    if (extensionBinary() == NULL) {
        return false;
    }

    return true;
}

QString MApplicationExtensionMetaData::runnerBinary() const
{
    // If runner binary is specified, return absolute file path.
    QString s = exec();
    if (s.length() > 0) {
        QFileInfo runner(QString(APPLICATION_EXTENSION_LIBS), s);
        if (runner.exists() && runner.isFile() && runner.isExecutable()) {
            return runner.absoluteFilePath();
        } else {
            mDebug("MApplicationExtensionMetaData") << "runner" << runner.absoluteFilePath() << "does not exist!";
        }
    }
    return NULL;
}

QString MApplicationExtensionMetaData::extensionBinary() const
{
    // Fetch the absolute file path and return it.
    QFileInfo extension(QString(APPLICATION_EXTENSION_LIBS), value(EXTENSION_BINARY_KEY));
    if (extension.exists() && extension.isFile()) {
        return extension.absoluteFilePath();
    } else {
        mDebug("MApplicationExtensionMetaData") << "extension" << extension.absoluteFilePath() << "does not exist!";
    }
    return NULL;
}

QString MApplicationExtensionMetaData::interface() const
{
    return value(INTERFACE_KEY);
}

QString MApplicationExtensionMetaData::extractLibraryName(const QString &libFileName)
{
    QRegExp regExp(".*lib([^/]*)[.]so");

    if (regExp.exactMatch(libFileName)) {
        // The given argument can be treated as valid
        QString tmp(libFileName);
        tmp.replace(regExp, "\\1");
        return tmp;
    } else {
        // Invalid input - return empty string
        return QString();
    }
}

QString MApplicationExtensionMetaData::resourceIdentifier() const
{
    QString resourceId;
    QString binary = extensionBinary();

    if (contains(IDENTIFIER_KEY)) {
        resourceId = value(IDENTIFIER_KEY);
    } else if (!binary.isNull()) {
        resourceId = extractLibraryName(binary);
    } else {
        return NULL;
    }

    return resourceId;
}