summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozpack/chrome/manifest.py
blob: 14c11d4c1daa8cbb03abf3cd2e1a7b60a981abc8 (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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
import re

import six
from six.moves.urllib.parse import urlparse

import mozpack.path as mozpath
from mozpack.chrome.flags import Flags
from mozpack.errors import errors


class ManifestEntry(object):
    """
    Base class for all manifest entry types.
    Subclasses may define the following class or member variables:

        - localized: indicates whether the manifest entry is used for localized
          data.
        - type: the manifest entry type (e.g. 'content' in
          'content global content/global/')
        - allowed_flags: a set of flags allowed to be defined for the given
          manifest entry type.

    A manifest entry is attached to a base path, defining where the manifest
    entry is bound to, and that is used to find relative paths defined in
    entries.
    """

    localized = False
    type = None
    allowed_flags = [
        "application",
        "platformversion",
        "os",
        "osversion",
        "abi",
        "xpcnativewrappers",
        "tablet",
        "process",
        "contentaccessible",
        "backgroundtask",
    ]

    def __init__(self, base, *flags):
        """
        Initialize a manifest entry with the given base path and flags.
        """
        self.base = base
        self.flags = Flags(*flags)
        if not all(f in self.allowed_flags for f in self.flags):
            errors.fatal(
                "%s unsupported for %s manifest entries"
                % (
                    ",".join(f for f in self.flags if f not in self.allowed_flags),
                    self.type,
                )
            )

    def serialize(self, *args):
        """
        Serialize the manifest entry.
        """
        entry = [self.type] + list(args)
        flags = str(self.flags)
        if flags:
            entry.append(flags)
        return " ".join(entry)

    def __eq__(self, other):
        return self.base == other.base and str(self) == str(other)

    def __ne__(self, other):
        return not self.__eq__(other)

    def __repr__(self):
        return "<%s@%s>" % (str(self), self.base)

    def move(self, base):
        """
        Return a new manifest entry with a different base path.
        """
        return parse_manifest_line(base, str(self))

    def rebase(self, base):
        """
        Return a new manifest entry with all relative paths defined in the
        entry relative to a new base directory.
        The base class doesn't define relative paths, so it is equivalent to
        move().
        """
        return self.move(base)


class ManifestEntryWithRelPath(ManifestEntry):
    """
    Abstract manifest entry type with a relative path definition.
    """

    def __init__(self, base, relpath, *flags):
        ManifestEntry.__init__(self, base, *flags)
        self.relpath = relpath

    def __str__(self):
        return self.serialize(self.relpath)

    def rebase(self, base):
        """
        Return a new manifest entry with all relative paths defined in the
        entry relative to a new base directory.
        """
        clone = ManifestEntry.rebase(self, base)
        clone.relpath = mozpath.rebase(self.base, base, self.relpath)
        return clone

    @property
    def path(self):
        return mozpath.normpath(mozpath.join(self.base, self.relpath))


class Manifest(ManifestEntryWithRelPath):
    """
    Class for 'manifest' entries.
        manifest some/path/to/another.manifest
    """

    type = "manifest"


class ManifestChrome(ManifestEntryWithRelPath):
    """
    Abstract class for chrome entries.
    """

    def __init__(self, base, name, relpath, *flags):
        ManifestEntryWithRelPath.__init__(self, base, relpath, *flags)
        self.name = name

    @property
    def location(self):
        return mozpath.join(self.base, self.relpath)


class ManifestContent(ManifestChrome):
    """
    Class for 'content' entries.
        content global content/global/
    """

    type = "content"
    allowed_flags = ManifestChrome.allowed_flags + [
        "contentaccessible",
        "platform",
    ]

    def __str__(self):
        return self.serialize(self.name, self.relpath)


class ManifestMultiContent(ManifestChrome):
    """
    Abstract class for chrome entries with multiple definitions.
    Used for locale and skin entries.
    """

    type = None

    def __init__(self, base, name, id, relpath, *flags):
        ManifestChrome.__init__(self, base, name, relpath, *flags)
        self.id = id

    def __str__(self):
        return self.serialize(self.name, self.id, self.relpath)


class ManifestLocale(ManifestMultiContent):
    """
    Class for 'locale' entries.
        locale global en-US content/en-US/
        locale global fr content/fr/
    """

    localized = True
    type = "locale"


class ManifestSkin(ManifestMultiContent):
    """
    Class for 'skin' entries.
        skin global classic/1.0 content/skin/classic/
    """

    type = "skin"


class ManifestOverload(ManifestEntry):
    """
    Abstract class for chrome entries defining some kind of overloading.
    Used for overlay, override or style entries.
    """

    type = None

    def __init__(self, base, overloaded, overload, *flags):
        ManifestEntry.__init__(self, base, *flags)
        self.overloaded = overloaded
        self.overload = overload

    def __str__(self):
        return self.serialize(self.overloaded, self.overload)


class ManifestOverlay(ManifestOverload):
    """
    Class for 'overlay' entries.
        overlay chrome://global/content/viewSource.xul \
            chrome://browser/content/viewSourceOverlay.xul
    """

    type = "overlay"


class ManifestStyle(ManifestOverload):
    """
    Class for 'style' entries.
        style chrome://global/content/viewSource.xul \
            chrome://browser/skin/
    """

    type = "style"


class ManifestOverride(ManifestOverload):
    """
    Class for 'override' entries.
        override chrome://global/locale/netError.dtd \
            chrome://browser/locale/netError.dtd
    """

    type = "override"


class ManifestResource(ManifestEntry):
    """
    Class for 'resource' entries.
        resource gre-resources toolkit/res/
        resource services-sync resource://gre/modules/services-sync/

    The target may be a relative path or a resource or chrome url.
    """

    type = "resource"

    def __init__(self, base, name, target, *flags):
        ManifestEntry.__init__(self, base, *flags)
        self.name = name
        self.target = target

    def __str__(self):
        return self.serialize(self.name, self.target)

    def rebase(self, base):
        u = urlparse(self.target)
        if u.scheme and u.scheme != "jar":
            return ManifestEntry.rebase(self, base)
        clone = ManifestEntry.rebase(self, base)
        clone.target = mozpath.rebase(self.base, base, self.target)
        return clone


class ManifestBinaryComponent(ManifestEntryWithRelPath):
    """
    Class for 'binary-component' entries.
        binary-component some/path/to/a/component.dll
    """

    type = "binary-component"


class ManifestComponent(ManifestEntryWithRelPath):
    """
    Class for 'component' entries.
        component {b2bba4df-057d-41ea-b6b1-94a10a8ede68} foo.js
    """

    type = "component"

    def __init__(self, base, cid, file, *flags):
        ManifestEntryWithRelPath.__init__(self, base, file, *flags)
        self.cid = cid

    def __str__(self):
        return self.serialize(self.cid, self.relpath)


class ManifestInterfaces(ManifestEntryWithRelPath):
    """
    Class for 'interfaces' entries.
        interfaces foo.xpt
    """

    type = "interfaces"


class ManifestCategory(ManifestEntry):
    """
    Class for 'category' entries.
        category command-line-handler m-browser @mozilla.org/browser/clh;
    """

    type = "category"

    def __init__(self, base, category, name, value, *flags):
        ManifestEntry.__init__(self, base, *flags)
        self.category = category
        self.name = name
        self.value = value

    def __str__(self):
        return self.serialize(self.category, self.name, self.value)


class ManifestContract(ManifestEntry):
    """
    Class for 'contract' entries.
        contract @mozilla.org/foo;1 {b2bba4df-057d-41ea-b6b1-94a10a8ede68}
    """

    type = "contract"

    def __init__(self, base, contractID, cid, *flags):
        ManifestEntry.__init__(self, base, *flags)
        self.contractID = contractID
        self.cid = cid

    def __str__(self):
        return self.serialize(self.contractID, self.cid)


# All manifest classes by their type name.
MANIFESTS_TYPES = dict(
    [
        (c.type, c)
        for c in globals().values()
        if type(c) == type
        and issubclass(c, ManifestEntry)
        and hasattr(c, "type")
        and c.type
    ]
)

MANIFEST_RE = re.compile(r"^#.*$")


def parse_manifest_line(base, line):
    """
    Parse a line from a manifest file with the given base directory and
    return the corresponding ManifestEntry instance.
    """
    # Remove comments
    cmd = MANIFEST_RE.sub("", line).strip().split()
    if not cmd:
        return None
    if not cmd[0] in MANIFESTS_TYPES:
        return errors.fatal("Unknown manifest directive: %s" % cmd[0])
    return MANIFESTS_TYPES[cmd[0]](base, *cmd[1:])


def parse_manifest(root, path, fileobj=None):
    """
    Parse a manifest file.
    """
    base = mozpath.dirname(path)
    if root:
        path = os.path.normpath(os.path.abspath(os.path.join(root, path)))
    if not fileobj:
        fileobj = open(path)
    linenum = 0
    for line in fileobj:
        line = six.ensure_text(line)
        linenum += 1
        with errors.context(path, linenum):
            e = parse_manifest_line(base, line)
            if e:
                yield e


def is_manifest(path):
    """
    Return whether the given path is that of a manifest file.
    """
    return (
        path.endswith(".manifest")
        and not path.endswith(".CRT.manifest")
        and not path.endswith(".exe.manifest")
        and os.path.basename(path) != "cose.manifest"
    )