File: extractor.py

package info (click to toggle)
libextractor-python 1%3A0.6-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 68 kB
  • ctags: 37
  • sloc: python: 103; makefile: 8
file content (193 lines) | stat: -rw-r--r-- 5,690 bytes parent folder | download | duplicates (4)
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
# -*- coding: utf-8 -*-
## Python bindings for GNU libextractor
## 
## Copyright (C) 2006 Bader Ladjemi <bader@tele2.fr>
## Copyright (C) 2011 Christian Grothoff <christian@grothoff.org>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program 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 General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING. If not, write to the
## Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
## USA.
##
"""
Python bindings for GNU libextractor

libextractor is a simple library for keyword extraction.  libextractor
does not support all formats but supports a simple plugging mechanism
such that you can quickly add extractors for additional formats, even
without recompiling libextractor. libextractor typically ships with a
dozen helper-libraries that can be used to obtain keywords from common
file-types.  

libextractor is a part of the GNU project (http://www.gnu.org/).     
"""
from ctypes import *
#fake cdll import
try:
    #loading shared object file
    libextractor = cdll.LoadLibrary('libextractor.so.3')
except OSError:
    libextractor = cdll.extractor
 
__all__ = ['Extractor']
__version__ = "0.6"
__licence__ = "GNU GPL"

"""
keyword's charset encoding
"""
KeywordType = c_int
MetaType = c_int

EXTRACT_CB = CFUNCTYPE(c_int, c_void_p, c_char_p, KeywordType, MetaType, c_char_p, c_void_p, c_size_t)

libextractor.EXTRACTOR_metatype_get_max.restype = KeywordType
libextractor.EXTRACTOR_metatype_to_description.restype = c_char_p
libextractor.EXTRACTOR_metatype_to_string.restype = c_char_p
libextractor.EXTRACTOR_plugin_add_defaults.restype = c_void_p
libextractor.EXTRACTOR_extract.argtypes = [c_void_p, c_char_p, c_void_p, c_size_t, EXTRACT_CB, c_void_p]


EXTRACTOR_METAFORMAT_UNKNOWN = 0
EXTRACTOR_METAFORMAT_UTF8 = 1
EXTRACTOR_METAFORMAT_BINARY = 2
EXTRACTOR_METAFORMAT_C_STRING = 3


class Extractor(object):
    """
    Main class for extracting meta-data with GNU libextractor.

    You may create multiple instances of Extractor to use
    different sets of library.  Initially each Extractor
    will start with the default set of libraries.

    Use the extract method to obtain keywords from a file.

    Use the add and remove libraries methods to change the list of
    libraries that should be used.
    """
    
    def __init__(self, defaults=True, libraries=None):
	"""
	Initialize Extractor's instance
	
	@param libraries: list of strings that contains extractor's name (supported types)
	@param defaults: load default plugins

	"""
	self.extractors = None
	if defaults:
	    self.extractors = libextractor.EXTRACTOR_plugin_add_defaults(0)
	if libraries:
	    self.extractors = libextractor.EXTRACTOR_plugin_add_config (self.extractors, libraries, 0)
    
    def extract(self, proc, proc_cls, filename=None, data=None, size=0):
	"""Extract keywords from a file, or from its data.

	@param filename: filename string
	@param data: data contents
	@param size: data size
        @param proc: function to call on each value
        @param proc_cls: closure to proc
	
	If you give data, size has to be given as well.

        """
	if not filename and not (data and size):
	    return None
	else:
	    libextractor.EXTRACTOR_extract (self.extractors, filename, data, size, EXTRACT_CB(proc), proc_cls)
	
    def addLibrary(self, library):
	"""
        Add given library to the extractor. Invoke with a string with the name
        of the library that should be added.  For example,
        
        'libextractor_filename'

        will prepend the extractor that just adds the filename as a
        keyword.

        No errors are reported if the library is not
        found.

	@param library: library's name
        """	
	self.extractors = libextractor.EXTRACTOR_plugin_add (self.extractors, library, NULL, 0)

    def removeLibrary(self, library):
	"""      
        Remove a library.  Pass the name of the library that is to
        be removed.  Only one library can be removed at a time.
        For example,

        'libextractor_pdf'

        removes the PDF extractor (if added).
	ValueError will be thrown if no library match.

	@param library: library's name
	"""

	self.extractors = libextractor.EXTRACTOR_plugin_remove(self.extractors, library)

    def addLibraries(self, libraries):
	"""
	Add given libraries. 
	Same as addLibary but libraries is a list of library's names.

	@param libraries: list of libraries names
	"""

	self.extractors = libextractor.EXTRACTOR_plugin_add_config(self.extractors, libraries)

    def removeAllLibraries(self):
	"""
	Remove all libraries.

	"""

        libextractor.EXTRACTOR_plugin_remove_all(self.extractors)
        self.extractors = None
	
    def keywordTypes(self):
	"""
	Returns the list of all keywords types.
	@return: list of all keywords types

	"""
	i = 0
	keyword_types = []
	
	while True:
	    keyword_type = libextractor.EXTRACTOR_metatype_to_string(i)
	    if not keyword_type:
		break
	    keyword_types.append(keyword_type)
	    i += 1
	    
	return tuple(keyword_types)
    

    def __del__(self):
	"""
	>>> extractor = Extractor()
	>>> del extractor
	"""
	if self.extractors:
	    self.removeAllLibraries()

if __name__ == "__main__":
    import doctest
    doctest.testmod()