K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / apt-xapian-index / plugins /
server ip : 104.21.89.46

your ip : 172.70.131.140

H O M E


Filename/usr/share/apt-xapian-index/plugins/app-install.py
Size9.07 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:53
Last modified23-Feb-2014 22:30
Last accessed05-Jul-2025 17:55
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
try:
from xdg.DesktopEntry import DesktopEntry
from xdg.Exceptions import ParsingError
from xdg import Locale
HAS_XDG=True
except ImportError, e:
HAS_XDG=False

import axi.indexer
import xapian
import os, os.path

APPINSTALLDIR="/usr/share/app-install/desktop/"

class Indexer:
def __init__(self, lang, val_popcon, progress=None):
self.val_popcon = val_popcon
self.progress = progress
if lang is None:
lang = "en"
self.lang = lang
self.xlang = lang.split("_")[0]
self.xdglangs = Locale.expand_languages(lang)
self.indexer = xapian.TermGenerator()
# Get a stemmer for this language, if available
try:
self.stemmer = xapian.Stem(self.xlang)
self.indexer.set_stemmer(self.stemmer)
except xapian.InvalidArgumentError:
pass

def index(self, document, fname, entry):
# Index a single term "XD", marking that the package contains .desktop
# files
document.add_term("XD")

# Index the name of the .desktop file, with prefix XDF
document.add_term("XDF" + fname)

# Index keywords retrieved in this indexer's language
self.indexer.set_document(document)
oldlangs = Locale.langs
try:
Locale.langs = self.xdglangs
self.indexer.index_text_without_positions(entry.getName())
self.indexer.index_text_without_positions(entry.getGenericName())
self.indexer.index_text_without_positions(entry.getComment())
finally:
Locale.langs = oldlangs

# Index .desktop categories, with prefix XDT
for cat in entry.getCategories():
document.add_term("XDT"+cat)

# Add an "app-popcon" value with popcon rank
try:
popcon = int(entry.get("X-AppInstall-Popcon"))
except ValueError, e:
if self.progress:
self.progress.verbose("%s: parsing X-AppInstall-Popcon: %s" % (fname, str(e)))
popcon = -1
if self.val_popcon != -1:
document.add_value(self.val_popcon, xapian.sortable_serialise(popcon));


class AppInstall(object):
def __init__(self, langs, progress):
self.langs = langs
self.progress = progress

def info(self):
"""
Return general information about the plugin.

The information returned is a dict with various keywords:

timestamp (required)
the last modified timestamp of this data source. This will be used
to see if we need to update the database or not. A timestamp of 0
means that this data source is either missing or always up to date.
values (optional)
an array of dicts { name: name, desc: description }, one for every
numeric value indexed by this data source.

Note that this method can be called before init. The idea is that, if
the timestamp shows that this plugin is currently not needed, then the
long initialisation can just be skipped.
"""
maxts = 0
for f in os.listdir(APPINSTALLDIR):
if f[0] == '.' or not f.endswith(".desktop"): continue
try:
ts = os.path.getmtime(os.path.join(APPINSTALLDIR, f))
if ts > maxts: maxts = ts
except OSError: # ignore file not found #752195 (potential race)
pass
return dict(
timestamp = maxts,
values = [
dict(name = "app-popcon", desc = "app-install .desktop popcon rank"),
],
sources = [
dict(path=APPINSTALLDIR, desc=".desktop files provided by app-install-data"),
],
prefixes = [
dict(idx="XD", qp=None, type=None,
desc="Marker to indicate that the package contains .desktop files",
ldesc="Only 'XD' can present in the index. This is used to efficiently"
" filter packages that have a .desktop file"),
dict(idx="XDF", qp=None, type=None,
desc="File name of the .desktop file",
ldesc="This is the name of a .desktop file contained in the package."
" There could be more than one"),
dict(idx="XDT", qp=None, type="bool",
desc="Categories from .desktop files",
ldesc="This is similar to a tag, but filled with the categories found"
" in .desktop files"),
dict(idx="Z", qp=None, type=None,
desc="Stemmed forms of keywords",
ldesc="This contains the stemmed forms of keywords as generated by"
" TermGenerator and matched by QueryParser"),
])

def init(self, info, progress):
"""
If needed, perform long initialisation tasks here.

info is a dictionary with useful information. Currently it contains
the following values:

"values": a dict mapping index mnemonics to index numbers

The progress indicator can be used to report progress.
"""

# Read the value indexes we will use
values = info['values']
self.val_popcon = values.get("app-popcon", -1)

self.indexers = [Indexer(lang, self.val_popcon, progress) for lang in [None] + list(self.langs)]
self.entries = {}

progress.begin("Reading .desktop files from %s" % APPINSTALLDIR)
for f in os.listdir(APPINSTALLDIR):
if f[0] == '.' or not f.endswith(".desktop"): continue
try:
entry = DesktopEntry(os.path.join(APPINSTALLDIR, f))
except (ValueError, ParsingError):
# Invalid .desktop files can cause a ValueError. From PyXDG 0.25,
# that case will be turned into a ParsingError.
continue
pkg = entry.get("X-AppInstall-Package")
self.entries.setdefault(pkg, []).append((f, entry))
progress.end()

def send_extra_info(self, db=None, **kw):
"""
Receive extra parameters from the indexer.

This may be called more than once, but after init().

We are using this to get the database instance
"""
if db is not None:
for i in self.indexers:
i.indexer.set_flags(xapian.TermGenerator.FLAG_SPELLING)
i.indexer.set_database(db)

def doc(self):
"""
Return documentation information for this data source.

The documentation information is a dictionary with these keys:
name: the name for this data source
shortDesc: a short description
fullDoc: the full description as a chapter in ReST format
"""
return dict(
name = "app-install information",
shortDesc = "terms, categories and popcon values extracted from the app-install .desktop files",
fullDoc = """
The AppInstall data source reads .desktop files from %s
and adds the following terms:

* keywords from the .desktop descriptions, via Xapian's
TermGenerator, in all requested locales;
* .desktop categories, with prefix XDT;
* name of .desktop file, with prefix XDF;
* a single term "XD", marking that the package contains .desktop
files.

It also adds an "app-popcon" value with popcon ranks from the
app-install .desktop files.
""" % APPINSTALLDIR
)

def index(self, document, pkg):
"""
Update the document with the information from this data source.

document is the document to update
pkg is the python-apt Package object for this package
"""
name = document.get_data()
for e in self.entries.get(name, []):
fname, entry = e
for i in self.indexers:
i.index(document, fname, entry)

def indexDeb822(self, document, pkg):
"""
Update the document with the information from this data source.

This is alternative to index, and it is used when indexing with package
data taken from a custom Packages file.

document is the document to update
pkg is the Deb822 object for this package
"""
name = document.get_data()
for e in self.entries.get(name, []):
fname, entry = e
for i in self.indexers:
i.index(document, fname, entry)

def init(langs=None, progress=None, **kw):
"""
Create and return the plugin object.
"""
# If we don't have app-install data, skip it
if not os.path.isdir(APPINSTALLDIR): return None
# If we don't have python-xdg, skip it
if not HAS_XDG:
if progress:
progress.verbose("please install python-xdg if you want to index app-install-data files")
return None
return AppInstall(langs=langs, progress=progress)