aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/utils.js
blob: 9d187d01f03a58c3237f5a34084899cd0862f760 (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
//
// utility functions for modules
//

/*!
 * Given a list of file tags, returns the file tag (one of [c, cpp, objc, objcpp])
 * corresponding to the C-family language the file should be compiled as.
 *
 * If no such tag is found, undefined is returned. If more than one match is
 * found, an exception is thrown.
 */
function fileTagForTargetLanguage(fileTags)
{
    var srcTags = ["c", "cpp", "objc", "objcpp"];
    var pchTags = ["c_pch", "cpp_pch", "objc_pch", "objcpp_pch"];

    var canonicalTag = undefined;
    var foundTagCount = 0;
    for (var i = 0; i < fileTags.length; ++i) {
        var idx = srcTags.indexOf(fileTags[i]);
        if (idx === -1)
            idx = pchTags.indexOf(fileTags[i]);

        if (idx !== -1) {
            canonicalTag = srcTags[idx];
            if (++foundTagCount > 1)
                break;
        }
    }

    if (foundTagCount > 1)
        throw ("source files cannot be identified as more than one language");

    return foundTagCount == 1 ? canonicalTag : undefined;
}

/*
 * Returns the name of a language-specific property given the file tag
 * for that property, and the base property name.
 *
 * If \a fileTag is undefined, the language-agnostic property name is returned.
 *
 * \param propertyName flags, platformFlags, precompiledHeader
 * \param fileTag c, cpp, objc, objcpp
 */
function languagePropertyName(propertyName, fileTag)
{
    if (!fileTag)
        fileTag = 'common';

    var map = {
        'c': {
            'flags': 'cFlags',
            'platformFlags': 'platformCFlags',
            'precompiledHeader': 'cPrecompiledHeader'
        },
        'cpp': {
            'flags': 'cxxFlags',
            'platformFlags': 'platformCxxFlags',
            'precompiledHeader': 'cxxPrecompiledHeader'
        },
        'objc': {
            'flags': 'objcFlags',
            'platformFlags': 'platformObjcFlags',
            'precompiledHeader': 'objcPrecompiledHeader'
        },
        'objcpp': {
            'flags': 'objcxxFlags',
            'platformFlags': 'platformObjcxxFlags',
            'precompiledHeader': 'objcxxPrecompiledHeader'
        },
        'common': {
            'flags': 'commonCompilerFlags',
            'platformFlags': 'platformCommonCompilerFlags',
            'precompiledHeader': 'precompiledHeader'
        }
    };

    var lang = map[fileTag];
    if (!lang)
        return propertyName;

    return lang[propertyName] || propertyName;
}

function moduleProperties(config, key, langFilter)
{
    return config.moduleProperties(config.moduleName, languagePropertyName(key, langFilter))
}

function modulePropertiesFromArtifacts(product, artifacts, moduleName, propertyName, langFilter)
{
    var result = product.moduleProperties(moduleName, languagePropertyName(propertyName, langFilter))
    for (var i in artifacts)
        result = result.concat(artifacts[i].moduleProperties(moduleName, languagePropertyName(propertyName, langFilter)))
    return result
}

function moduleProperty(product, propertyName, langFilter)
{
    return product.moduleProperty(product.moduleName, languagePropertyName(propertyName, langFilter))
}

function dumpProperty(key, value, level)
{
    var indent = ''
    for (var k=0; k < level; ++k)
        indent += '  '
    print(indent + key + ': ' + value)
}

function traverseObject(obj, func, level)
{
    if (!level)
        level = 0
    var i, children = {}
    for (i in obj) {
        if (typeof(obj[i]) === "object" && !(obj[i] instanceof Array))
            children[i] = obj[i]
        else
            func.apply(this, [i, obj[i], level])
    }
    level++
    for (i in children) {
        func.apply(this, [i, children[i], level - 1])
        traverseObject(children[i], func, level)
    }
    level--
}

function dumpObject(obj, description)
{
    if (!description)
        description = 'object dump'
    print('+++++++++ ' + description + ' +++++++++')
    traverseObject(obj, dumpProperty)
}

function uniqueConcat(array1, array2)
{
    var result = array1;
    for (i in array2) {
        var elem = array2[i];
        if (result.indexOf(elem) === -1)
            result.push(elem);
    }
    return result;
}


//////////////////////////////////////////////////////////
// The EnvironmentVariable class
//
function EnvironmentVariable(name, separator, convertPathSeparators)
{
    if (!name)
        throw "EnvironmentVariable c'tor needs a name as first argument."
    this.name = name
    this.value = getenv(name).toString()
    this.separator = separator || ''
    this.convertPathSeparators = convertPathSeparators || false
}

EnvironmentVariable.prototype.prepend = function(v)
{
    if (this.value.length > 0 && this.value.charAt(0) !== this.separator)
        this.value = this.separator + this.value
    if (this.convertPathSeparators)
        v = FileInfo.toWindowsSeparators(v)
    this.value = v + this.value
}

EnvironmentVariable.prototype.append = function(v)
{
    if (this.value.length > 0)
        this.value += this.separator
    if (this.convertPathSeparators)
        v = FileInfo.toWindowsSeparators(v)
    this.value += v
}

EnvironmentVariable.prototype.set = function()
{
    putenv(this.name, this.value)
}