Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
appstream-generator/src/asgen/backends/interfaces.d
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
234 lines (206 sloc)
7.01 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (C) 2016-2017 Matthias Klumpp <matthias@tenstral.net> | |
| * | |
| * Licensed under the GNU Lesser General Public License Version 3 | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Lesser General Public License as published by | |
| * the Free Software Foundation, either version 3 of the license, or | |
| * (at your option) any later version. | |
| * | |
| * This software is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| * GNU Lesser General Public License for more details. | |
| * | |
| * You should have received a copy of the GNU Lesser General Public License | |
| * along with this software. If not, see <http://www.gnu.org/licenses/>. | |
| */ | |
| module asgen.backends.interfaces; | |
| import std.typecons : Nullable; | |
| import std.string : format; | |
| import std.array : empty; | |
| import appstream.Component; | |
| import glib.KeyFile : KeyFile; | |
| public import asgen.datastore; | |
| class GStreamer | |
| { | |
| immutable string[] decoders; | |
| immutable string[] encoders; | |
| immutable string[] elements; | |
| immutable string[] uri_sinks; | |
| immutable string[] uri_sources; | |
| @property @safe pure bool isNotEmpty () const { | |
| return !(decoders.empty && | |
| encoders.empty && | |
| elements.empty && | |
| uri_sinks.empty && | |
| uri_sources.empty); | |
| } | |
| this () { | |
| decoders = encoders = elements = uri_sinks = uri_sources = []; | |
| } | |
| this (immutable string[] decoders, | |
| immutable string[] encoders, | |
| immutable string[] elements, | |
| immutable string[] uri_sinks, | |
| immutable string[] uri_sources) { | |
| this.decoders = decoders; | |
| this.encoders = encoders; | |
| this.elements = elements; | |
| this.uri_sinks = uri_sinks; | |
| this.uri_sources = uri_sources; | |
| } | |
| } | |
| /** | |
| * Type of a package that can be processed. | |
| * Allows distinguishing "real" packages from | |
| * virtual or fake ones that are used internally. | |
| */ | |
| enum PackageKind | |
| { | |
| UNKNOWN, | |
| PHYSICAL, | |
| FAKE | |
| } | |
| /** | |
| * Represents a distribution package in the generator. | |
| */ | |
| abstract class Package | |
| { | |
| @property string name () const @safe pure; | |
| @property string ver () const @safe pure; | |
| @property string arch () const @safe pure; | |
| @property string maintainer () const; | |
| /** | |
| * Type of this package (whether it actually exists or is a fake/virtual package) | |
| * You pretty much always want PHYSICAL. | |
| */ | |
| @property PackageKind kind () @safe pure | |
| { | |
| return PackageKind.PHYSICAL; | |
| } | |
| /** | |
| * A associative array containing package descriptions. | |
| * Key is the language (or locale), value the description. | |
| * | |
| * E.g.: ["en": "A description.", "de": "Eine Beschreibung"] | |
| */ | |
| @property const(string[string]) description () const; | |
| /** | |
| * A associative array containing package summaries. | |
| * Key is the language (or locale), value the summary. | |
| * | |
| * E.g.: ["en": "foo the bar"] | |
| */ | |
| @property const(string[string]) summary () const { return (string[string]).init; } | |
| /** | |
| * Local filename of the package. This string is only used for | |
| * issue reporting and other information, the file is never | |
| * accessed directly (all data is retrieved via getFileData()). | |
| * | |
| * This function should return a local filepath, backends might | |
| * download missing packages on-demand from a web location. | |
| */ | |
| string getFilename (); | |
| /** | |
| * A list payload files this package contains. | |
| */ | |
| @property string[] contents (); | |
| /** | |
| * Obtain data for a specific file in the package. | |
| */ | |
| abstract const(ubyte)[] getFileData (string fname); | |
| /** | |
| * Remove temporary data that might have been created while loading information from | |
| * this package. This function can be called to avoid excessive use of disk space. | |
| * As opposed to `close()`, the package may be reopened afterwards. | |
| */ | |
| void cleanupTemp () {} | |
| /** | |
| * Close the package. This function is called when we will | |
| * no longer request any file data from this package. | |
| */ | |
| abstract void finish () {} | |
| @property Nullable!GStreamer gst () { return Nullable!GStreamer (); } | |
| /** | |
| * Retrieve backend-specific translations. | |
| * | |
| * (currently only used by the Ubuntu backend) | |
| */ | |
| string[string] getDesktopFileTranslations (KeyFile desktopFile, const string text) { return null; } | |
| @property bool hasDesktopFileTranslations () const { return false; } | |
| private string pkid; | |
| /** | |
| * Get the unique identifier for this package. | |
| * The ID is supposed to be unique per backend, it should never appear | |
| * multiple times in suites/sections. | |
| */ | |
| @property | |
| final string id () @safe pure | |
| { | |
| import std.array : empty; | |
| if (pkid.empty) | |
| pkid = "%s/%s/%s".format (this.name, this.ver, this.arch); | |
| return pkid; | |
| } | |
| /** | |
| * Check if the package is valid. | |
| * A Package must at least have a name, version and architecture defined. | |
| */ | |
| @safe pure | |
| final bool isValid () | |
| { | |
| import std.array : empty; | |
| return (!name.empty) && | |
| (!ver.empty) && | |
| (!arch.empty); | |
| } | |
| @safe pure override | |
| string toString () | |
| { | |
| return id; | |
| } | |
| } | |
| /** | |
| * An index of information about packages in a distribution. | |
| */ | |
| interface PackageIndex | |
| { | |
| /** | |
| * Called after a set of operations has completed, which allows the index to | |
| * release memory it might have allocated for cached data, or delete temporary | |
| * files. | |
| **/ | |
| void release (); | |
| /** | |
| * Get a list of packages for the given suite/section/arch triplet. | |
| * The PackageIndex should cache the data if obtaining it is an expensive | |
| * operation, since the generator might query the data multiple times. | |
| **/ | |
| Package[] packagesFor (string suite, | |
| string section, | |
| string arch, | |
| bool withLongDescs = true); | |
| /** | |
| * Get an abstract package representation for a physical package | |
| * file. A suite name and section name is obviously given. | |
| * This function is used in case only processing of one particular | |
| * package is requested. | |
| * Backends should return null if the feature is not implemented. | |
| **/ | |
| Package packageForFile (string fname, | |
| string suite = null, | |
| string section = null); | |
| /** | |
| * Check if the index for the given suite/section/arch triplet has changed since | |
| * the last generator run. The index can use the (get/set)RepoInfo methods on DataCache | |
| * to store mtime or checksum data for the given suite. | |
| * For the lifetime of the PackagesIndex, this method must return the same result, | |
| * which means an internal cache is useful. | |
| */ | |
| bool hasChanges (DataStore dstore, | |
| string suite, | |
| string section, | |
| string arch); | |
| } |