Python-fontconfig-0.5.1/0000755000175000017500000000000011656760301015111 5ustar vaynvayn00000000000000Python-fontconfig-0.5.1/README.rst0000644000175000017500000000374611656760254016621 0ustar vaynvayn00000000000000================= Python-fontconfig ================= Python bindings for Fontconfig_ library Requirement ----------- - Fontconfig_ **Required** - Cython_ (if you want to regenerate C source) .. _Cython: http://cython.org/ .. _Fontconfig: http://www.freedesktop.org/wiki/Software/fontconfig Tested on ~~~~~~~~~ - ``Python 2.7.2`` (32-bit, 64-bit) - ``Python 3.2.2`` (32-bit, 64-bit) Installation ------------ From PyPI:: >>> pip install Python-fontconfig or >>> easy_install Python-fontconfig From GitHub:: >>> git clone git://github.com/Vayn/python-fontconfig.git >>> cd python-fontconfig/ >>> python setup.py install Building C source ----------------- >>> python setup.py build_ext -i Testing ------- >>> cd test/ >>> python test.py Usage ----- >>> import fontconfig >>> fonts = fontconfig.query(family='ubuntu', lang='en') >>> fonts ['/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-LI.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf'] >>> font = fonts[0] >>> font >>> font. font.capability font.fullname font.slant font.count_chars font.get_languages font.spacing font.decorative font.has_char font.style font.family font.index font.weight font.file font.outline font.width font.fontformat font.print_pattern font.foundry font.scalable >>> font.family [('en', 'Ubuntu')] >>> font.foundry 'unknown' >>> font.fontformat 'TrueType' >>> font.has_char('A') True >>> font.file '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf' >>> font = fontconfig.FcFont(font.file) >>> font.family [('en', 'Ubuntu')] License ------- This program is released under ``GPLv3`` license, see ``LICENSE`` for more detail. Python-fontconfig-0.5.1/fontconfig.pyx0000644000175000017500000001340111656751755020023 0ustar vaynvayn00000000000000# -*- coding: utf-8 ''' Python-fontconfig ~~~~~~~~~~~~~~~~~ Python binding for Fontconfig library. .. _Python-fontconfig source code: http://github.com/Vayn/python-fontconfig :author: Vayn a.k.a VT :contributor: lilydjwg :license: GPLv3+, see LICENSE for details. ''' __version__ = '0.5.1' __docformat__ = 'restructuredtext' #------------------------------------------------ # Imports #------------------------------------------------ from cpython.version cimport PY_MAJOR_VERSION from cfontconfig cimport * include 'fontconfig.pxi' include 'factory.pxi' #------------------------------------------------ # Code #------------------------------------------------ # Factory Function query = query # cdef class FcFont: ''' FcF is a class of Fontconfig This class provides all infomation about font. ''' # Fontconfig library version __version__ = fc_version() cdef: FcPattern *_pat FcBlanks *_blanks FcCharSet *_cs bytes file dict _buf def __cinit__(self, file): ''' :param file: The absolute path of the font ''' self.file = file.encode('utf8') self.init() cdef init(self): cdef char *file = self.file cdef int count self._blanks = FcConfigGetBlanks(NULL) self._pat = FcFreeTypeQuery(file, 0, self._blanks, &count) self._buf = {} def __dealloc__(self): if self._pat is not NULL: FcPatternDestroy(self._pat) self._pat = NULL def __repr__(self): try: if PY_MAJOR_VERSION < 3: # To avoid `UnicodeEncodeError` in Python 2 family = self.family[0][1].encode('utf8') else: family = self.family[0][1] value = '<%s: %s>' % ( self.__class__.__name__, family ) except IndexError: value = '<%s>' % self.__class__.__name__ return value property file: def __get__(self): return self.file.decode('utf8') cdef object _getattr(self, bytes name, object type): cdef: int ivar FcBool bvar FcChar8 *cvar char *obj obj = name if type == 'str' and self._buf.get(name) is None: if FcPatternGetString(self._pat, obj, 0, &cvar) == Match: ret = FcChar8_to_unicode(cvar) self._buf[name] = ret elif type == 'int' and self._buf.get(name) is None: if FcPatternGetInteger(self._pat, obj, 0, &ivar) == Match: self._buf[name] = ivar elif type == 'bool' and self._buf.get(name) is None: if FcPatternGetBool(self._pat, obj, 0, &bvar) == Match: self._buf[name] = bvar try: return self._buf[name] except KeyError: # If there isn't one property in the font self._buf[name] = None property fontformat: def __get__(self): return self._getattr(b'fontformat', 'str') property foundry: def __get__(self): return self._getattr(b'foundry', 'str') property capability: def __get__(self): return self._getattr(b'capability', 'str') property slant: def __get__(self): return self._getattr(b'slant', 'int') property index: def __get__(self): return self._getattr(b'index', 'int') property weight: def __get__(self): return self._getattr(b'weight', 'int') property width: def __get__(self): return self._getattr(b'width', 'int') property spacing: def __get__(self): return self._getattr(b'decorative', 'int') property scalable: def __get__(self): return self._getattr(b'scalable', 'bool') property outline: def __get__(self): return self._getattr(b'outline', 'bool') property decorative: def __get__(self): return self._getattr(b'decorative', 'bool') cdef object _langen(self, bytes obj): # Used by family, style and fullname cdef: int id FcChar8 *cvar ret = self._buf.get(obj) if ret is None: id = 0 lang = obj+b'lang' ret = [] while True: if FcPatternGetString(self._pat, obj, id, &cvar) == Match: val = FcChar8_to_unicode(cvar) FcPatternGetString(self._pat, lang, id, &cvar) lan = FcChar8_to_unicode(cvar) ret.append((lan, val)) id += 1 else: self._buf[obj] = ret return ret else: return ret property family: def __get__(self): return self._langen(b'family') property style: def __get__(self): return self._langen(b'style') property fullname: def __get__(self): return self._langen(b'fullname') def get_languages(self): '''Print all languages the font supports''' cdef FcValue var cdef FcStrSet* langs ret = [] if FcPatternGet(self._pat, FC_LANG, 0, &var) == Match: langs = FcLangSetGetLangs(var.u.l) for i in range(langs.num): ret.append(FcChar8_to_unicode(langs.strs[i])) else: ret = None return ret def print_pattern(self): '''Print all infomation of the font in the wild''' FcPatternPrint(self._pat) def has_char(self, unicode ch): ''' Check whether the font supports the given character :param ch: The character you want to check ''' cdef: int count bytes byte_ch FcChar32 ucs4_ch if len(ch) != 1: raise ValueError('expected a character, but string of length %d found' % len(ch)) byte_ch = ch.encode('utf8') if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) != Match: return False FcUtf8ToUcs4((byte_ch), &ucs4_ch, len(byte_ch)) if FcCharSetHasChar(self._cs, ucs4_ch): return True else: return False def count_chars(self): ''' Count the amount of characters in font ''' cdef FcChar32 count = 0 if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) == Match: count = FcCharSetCount(self._cs) return count Python-fontconfig-0.5.1/CHANGES.txt0000644000175000017500000000027311656752344016734 0ustar vaynvayn00000000000000v0.1.0, October 24, 2011 -- Initial commit v0.2.0, October 28, 2011 v0.3.0, October 30, 2011 v0.4.0, October 30, 2011 v0.5.0, November 1, 2011 v0.5.1, November 10, 2011 -- Add tests Python-fontconfig-0.5.1/PKG-INFO0000644000175000017500000000727011656760301016214 0ustar vaynvayn00000000000000Metadata-Version: 1.0 Name: Python-fontconfig Version: 0.5.1 Summary: Python bindings for Fontconfig library Home-page: https://github.com/Vayn/python-fontconfig Author: Vayn a.k.a. VT Author-email: vayn@vayn.de License: LICENSE.txt Description: ================= Python-fontconfig ================= Python bindings for Fontconfig_ library Requirement ----------- - Fontconfig_ **Required** - Cython_ (if you want to regenerate C source) .. _Cython: http://cython.org/ .. _Fontconfig: http://www.freedesktop.org/wiki/Software/fontconfig Tested on ~~~~~~~~~ - ``Python 2.7.2`` (32-bit, 64-bit) - ``Python 3.2.2`` (32-bit, 64-bit) Installation ------------ From PyPI:: >>> pip install Python-fontconfig or >>> easy_install Python-fontconfig From GitHub:: >>> git clone git://github.com/Vayn/python-fontconfig.git >>> cd python-fontconfig/ >>> python setup.py install Building C source ----------------- >>> python setup.py build_ext -i Testing ------- >>> cd test/ >>> python test.py Usage ----- >>> import fontconfig >>> fonts = fontconfig.query(family='ubuntu', lang='en') >>> fonts ['/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-LI.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf', '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf'] >>> font = fonts[0] >>> font >>> font. font.capability font.fullname font.slant font.count_chars font.get_languages font.spacing font.decorative font.has_char font.style font.family font.index font.weight font.file font.outline font.width font.fontformat font.print_pattern font.foundry font.scalable >>> font.family [('en', 'Ubuntu')] >>> font.foundry 'unknown' >>> font.fontformat 'TrueType' >>> font.has_char('A') True >>> font.file '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf' >>> font = fontconfig.FcFont(font.file) >>> font.family [('en', 'Ubuntu')] License ------- This program is released under ``GPLv3`` license, see ``LICENSE`` for more detail. Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Intended Audience :: Developers Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Operating System :: POSIX Classifier: Operating System :: MacOS :: MacOS X Classifier: Topic :: Text Processing :: Fonts Classifier: Topic :: Utilities Classifier: Programming Language :: Python :: 2 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.2 Classifier: Programming Language :: Cython Python-fontconfig-0.5.1/setup.py0000644000175000017500000000273411656751744016644 0ustar vaynvayn00000000000000# vim: set fileencoding=utf-8: import sys from distutils.core import setup from distutils.extension import Extension def ext_modules(build=False): if build: source = 'fontconfig.pyx' else: source = 'fontconfig.c' ext = [Extension('fontconfig', [source], libraries=["fontconfig"])] return ext args = dict( name='Python-fontconfig', version='0.5.1', author='Vayn a.k.a. VT', author_email='vayn@vayn.de', url='https://github.com/Vayn/python-fontconfig', license='LICENSE.txt', description='Python bindings for Fontconfig library', long_description=open('README.rst').read(), classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', 'Topic :: Text Processing :: Fonts', 'Topic :: Utilities', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Cython', ] ) if __name__ == '__main__': if sys.argv[1] == 'build_ext': from Cython.Distutils import build_ext args.update(cmdclass={'build_ext': build_ext}) args.update(ext_modules=ext_modules(True)) setup(**args) else: args.update(ext_modules=ext_modules()) setup(**args) Python-fontconfig-0.5.1/factory.pxi0000644000175000017500000000220211654255335017302 0ustar vaynvayn00000000000000# -*- coding: utf-8 # @Author: Vayn a.k.a. VT # @Name: factory.pxi # @Date: 2011年 10月 30日 星期日 15:30:18 CST def query(family='', lang=''): ''' Produce font object list for the queried language ''' cdef: FcChar8 *strpat FcPattern *pat = NULL FcFontSet *fs = NULL FcObjectSet *os = NULL list lst = [] FcList ret if lang: l_lang = ('%s:lang=%s' % (family, lang)) else: l_lang = family l_lang = l_lang.encode('utf-8') strpat = (l_lang) pat = FcNameParse(strpat) os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL) fs = FcFontList(0, pat, os) if fs is NULL or fs.nfont < 1: return lst cdef: int i FcChar8 *file FcCharSet *cs for i in range(fs.nfont): if FcPatternGetCharSet(fs.fonts[i], FC_CHARSET, 0, &cs) != Match: continue if FcPatternGetString(fs.fonts[i], FC_FILE, 0, &file) == Match: lst.append((file).decode('utf8')) ret = FcList(lst) FcPatternDestroy(pat) pat = NULL FcObjectSetDestroy(os) os = NULL FcCharSetDestroy(cs) cs = NULL FcFontSetDestroy(fs) fs = NULL return ret Python-fontconfig-0.5.1/LICENSE.txt0000644000175000017500000010437411654255335016751 0ustar vaynvayn00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 3 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. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . Python-fontconfig-0.5.1/fontconfig.pxi0000644000175000017500000000142711654255335017777 0ustar vaynvayn00000000000000# -*- coding: utf-8 # @Author: Vayn a.k.a. VT # @Name: fontconfig.pxi # @Date: 2011年 10月 30日 星期日 07:14:47 # Short for FcResultMatch cdef FcResult Match = FcResultMatch cdef unicode FcChar8_to_unicode(FcChar8 *str): '''Convert FcChar8 to unicode''' cdef unicode ret ret = (str).decode('utf8', 'strict') return ret cdef int fc_version(): '''Return version of Fontconfig''' return FcGetVersion() cdef class FcList(list): ''' FcList will return a FcFont object when you get an item in the list. ''' def __getitem__(self, arg): if isinstance(arg, slice): return FcList(list.__getitem__(self, arg)) else: return FcFont(list.__getitem__(self, arg)) def __delitem(self, arg): FcList(list.__delitem__(self, arg)) Python-fontconfig-0.5.1/test/0000755000175000017500000000000011656760301016070 5ustar vaynvayn00000000000000Python-fontconfig-0.5.1/test/test.py0000644000175000017500000000366711656750144017441 0ustar vaynvayn00000000000000# vim: set fileencoding=utf-8: # @Author: Vayn a.k.a. VT # @Name: test.py # @Date: 2011年11月10日 星期四 19时13分01秒 import sys import unittest import fontconfig pyver = sys.version_info[0] if pyver == 3: condition = input('Have you installed FreeMono font already?(y/n): ') else: condition = raw_input('Have you installed FreeMono font already?(y/n): ') reason = "You don't have the font which tests need" @unittest.skipIf(condition != 'y', reason) class FontListTestCase(unittest.TestCase): def test_get_list(self): """query should give a list for specified font""" fonts = fontconfig.query(family='freemono', lang='en') self.assertIsInstance(fonts, list) def test_get_font_from_list(self): """Get FcFont object from list""" fonts = fontconfig.query(family='freemono', lang='en') font = fonts[0] self.assertIsInstance(font, fontconfig.FcFont) def test_get_file_path_from_list_element(self): """Get font path from an element in font list""" fonts = fontconfig.query(family='freemono', lang='en') font = fonts[0] self.assertIsNotNone(font.file) @unittest.skipIf(condition != 'y', reason) class FcFontTestCase(unittest.TestCase): fonts = fontconfig.query(family='freemono', lang='en') font = fonts[0] def test_get_object_from_path(self): """Get FcFont instance""" fc = fontconfig.FcFont(self.font.file) self.assertIsInstance(fc, fontconfig.FcFont) def test_char_in_font(self): """Test the given character in font charset""" fc = fontconfig.FcFont(self.font.file) char = 'A' if pyver == 3 else 'A'.decode('utf8') self.assertTrue(fc.has_char(char)) @unittest.expectedFailure def test_char_not_in_font(self): """Test the given character not in font charset""" fc = fontconfig.FcFont(self.font.file) char = '永' if pyver == 3 else '永'.decode('utf8') self.assertTrue(fc.has_char(char)) if __name__ == '__main__': unittest.main() Python-fontconfig-0.5.1/fcmore.h0000644000175000017500000000026011654255335016537 0ustar vaynvayn00000000000000#ifndef FCMORE_HEADER #define FCMORE_HEADER struct _FcStrSet { int ref; /* reference count */ int num; int size; FcChar8 **strs; }; #endif Python-fontconfig-0.5.1/fontconfig.c0000644000175000017500000062213311654255335017424 0ustar vaynvayn00000000000000/* Generated by Cython 0.15.1 on Wed Nov 2 00:42:41 2011 */ #define PY_SSIZE_T_CLEAN #include "Python.h" #ifndef Py_PYTHON_H #error Python headers needed to compile C extensions, please install development version of Python. #else #include /* For offsetof */ #ifndef offsetof #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) #endif #if !defined(WIN32) && !defined(MS_WINDOWS) #ifndef __stdcall #define __stdcall #endif #ifndef __cdecl #define __cdecl #endif #ifndef __fastcall #define __fastcall #endif #endif #ifndef DL_IMPORT #define DL_IMPORT(t) t #endif #ifndef DL_EXPORT #define DL_EXPORT(t) t #endif #ifndef PY_LONG_LONG #define PY_LONG_LONG LONG_LONG #endif #if PY_VERSION_HEX < 0x02040000 #define METH_COEXIST 0 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) #define PyDict_Contains(d,o) PySequence_Contains(d,o) #endif #if PY_VERSION_HEX < 0x02050000 typedef int Py_ssize_t; #define PY_SSIZE_T_MAX INT_MAX #define PY_SSIZE_T_MIN INT_MIN #define PY_FORMAT_SIZE_T "" #define PyInt_FromSsize_t(z) PyInt_FromLong(z) #define PyInt_AsSsize_t(o) __Pyx_PyInt_AsInt(o) #define PyNumber_Index(o) PyNumber_Int(o) #define PyIndex_Check(o) PyNumber_Check(o) #define PyErr_WarnEx(category, message, stacklevel) PyErr_Warn(category, message) #endif #if PY_VERSION_HEX < 0x02060000 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt) #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) #define PyVarObject_HEAD_INIT(type, size) \ PyObject_HEAD_INIT(type) size, #define PyType_Modified(t) typedef struct { void *buf; PyObject *obj; Py_ssize_t len; Py_ssize_t itemsize; int readonly; int ndim; char *format; Py_ssize_t *shape; Py_ssize_t *strides; Py_ssize_t *suboffsets; void *internal; } Py_buffer; #define PyBUF_SIMPLE 0 #define PyBUF_WRITABLE 0x0001 #define PyBUF_FORMAT 0x0004 #define PyBUF_ND 0x0008 #define PyBUF_STRIDES (0x0010 | PyBUF_ND) #define PyBUF_C_CONTIGUOUS (0x0020 | PyBUF_STRIDES) #define PyBUF_F_CONTIGUOUS (0x0040 | PyBUF_STRIDES) #define PyBUF_ANY_CONTIGUOUS (0x0080 | PyBUF_STRIDES) #define PyBUF_INDIRECT (0x0100 | PyBUF_STRIDES) #endif #if PY_MAJOR_VERSION < 3 #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" #else #define __Pyx_BUILTIN_MODULE_NAME "builtins" #endif #if PY_MAJOR_VERSION >= 3 #define Py_TPFLAGS_CHECKTYPES 0 #define Py_TPFLAGS_HAVE_INDEX 0 #endif #if (PY_VERSION_HEX < 0x02060000) || (PY_MAJOR_VERSION >= 3) #define Py_TPFLAGS_HAVE_NEWBUFFER 0 #endif #if PY_MAJOR_VERSION >= 3 #define PyBaseString_Type PyUnicode_Type #define PyStringObject PyUnicodeObject #define PyString_Type PyUnicode_Type #define PyString_Check PyUnicode_Check #define PyString_CheckExact PyUnicode_CheckExact #endif #if PY_VERSION_HEX < 0x02060000 #define PyBytesObject PyStringObject #define PyBytes_Type PyString_Type #define PyBytes_Check PyString_Check #define PyBytes_CheckExact PyString_CheckExact #define PyBytes_FromString PyString_FromString #define PyBytes_FromStringAndSize PyString_FromStringAndSize #define PyBytes_FromFormat PyString_FromFormat #define PyBytes_DecodeEscape PyString_DecodeEscape #define PyBytes_AsString PyString_AsString #define PyBytes_AsStringAndSize PyString_AsStringAndSize #define PyBytes_Size PyString_Size #define PyBytes_AS_STRING PyString_AS_STRING #define PyBytes_GET_SIZE PyString_GET_SIZE #define PyBytes_Repr PyString_Repr #define PyBytes_Concat PyString_Concat #define PyBytes_ConcatAndDel PyString_ConcatAndDel #endif #if PY_VERSION_HEX < 0x02060000 #define PySet_Check(obj) PyObject_TypeCheck(obj, &PySet_Type) #define PyFrozenSet_Check(obj) PyObject_TypeCheck(obj, &PyFrozenSet_Type) #endif #ifndef PySet_CheckExact #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) #endif #define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) #if PY_MAJOR_VERSION >= 3 #define PyIntObject PyLongObject #define PyInt_Type PyLong_Type #define PyInt_Check(op) PyLong_Check(op) #define PyInt_CheckExact(op) PyLong_CheckExact(op) #define PyInt_FromString PyLong_FromString #define PyInt_FromUnicode PyLong_FromUnicode #define PyInt_FromLong PyLong_FromLong #define PyInt_FromSize_t PyLong_FromSize_t #define PyInt_FromSsize_t PyLong_FromSsize_t #define PyInt_AsLong PyLong_AsLong #define PyInt_AS_LONG PyLong_AS_LONG #define PyInt_AsSsize_t PyLong_AsSsize_t #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask #endif #if PY_MAJOR_VERSION >= 3 #define PyBoolObject PyLongObject #endif #if PY_VERSION_HEX < 0x03020000 typedef long Py_hash_t; #define __Pyx_PyInt_FromHash_t PyInt_FromLong #define __Pyx_PyInt_AsHash_t PyInt_AsLong #else #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t #endif #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) #else #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) #endif #if (PY_MAJOR_VERSION < 3) || (PY_VERSION_HEX >= 0x03010300) #define __Pyx_PySequence_GetSlice(obj, a, b) PySequence_GetSlice(obj, a, b) #define __Pyx_PySequence_SetSlice(obj, a, b, value) PySequence_SetSlice(obj, a, b, value) #define __Pyx_PySequence_DelSlice(obj, a, b) PySequence_DelSlice(obj, a, b) #else #define __Pyx_PySequence_GetSlice(obj, a, b) (unlikely(!(obj)) ? \ (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), (PyObject*)0) : \ (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_GetSlice(obj, a, b)) : \ (PyErr_Format(PyExc_TypeError, "'%.200s' object is unsliceable", (obj)->ob_type->tp_name), (PyObject*)0))) #define __Pyx_PySequence_SetSlice(obj, a, b, value) (unlikely(!(obj)) ? \ (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), -1) : \ (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_SetSlice(obj, a, b, value)) : \ (PyErr_Format(PyExc_TypeError, "'%.200s' object doesn't support slice assignment", (obj)->ob_type->tp_name), -1))) #define __Pyx_PySequence_DelSlice(obj, a, b) (unlikely(!(obj)) ? \ (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), -1) : \ (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_DelSlice(obj, a, b)) : \ (PyErr_Format(PyExc_TypeError, "'%.200s' object doesn't support slice deletion", (obj)->ob_type->tp_name), -1))) #endif #if PY_MAJOR_VERSION >= 3 #define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) #endif #if PY_VERSION_HEX < 0x02050000 #define __Pyx_GetAttrString(o,n) PyObject_GetAttrString((o),((char *)(n))) #define __Pyx_SetAttrString(o,n,a) PyObject_SetAttrString((o),((char *)(n)),(a)) #define __Pyx_DelAttrString(o,n) PyObject_DelAttrString((o),((char *)(n))) #else #define __Pyx_GetAttrString(o,n) PyObject_GetAttrString((o),(n)) #define __Pyx_SetAttrString(o,n,a) PyObject_SetAttrString((o),(n),(a)) #define __Pyx_DelAttrString(o,n) PyObject_DelAttrString((o),(n)) #endif #if PY_VERSION_HEX < 0x02050000 #define __Pyx_NAMESTR(n) ((char *)(n)) #define __Pyx_DOCSTR(n) ((char *)(n)) #else #define __Pyx_NAMESTR(n) (n) #define __Pyx_DOCSTR(n) (n) #endif #ifndef __PYX_EXTERN_C #ifdef __cplusplus #define __PYX_EXTERN_C extern "C" #else #define __PYX_EXTERN_C extern #endif #endif #if defined(WIN32) || defined(MS_WINDOWS) #define _USE_MATH_DEFINES #endif #include #define __PYX_HAVE__fontconfig #define __PYX_HAVE_API__fontconfig #include "fontconfig/fontconfig.h" #include "fcmore.h" #ifdef _OPENMP #include #endif /* _OPENMP */ #ifdef PYREX_WITHOUT_ASSERTIONS #define CYTHON_WITHOUT_ASSERTIONS #endif /* inline attribute */ #ifndef CYTHON_INLINE #if defined(__GNUC__) #define CYTHON_INLINE __inline__ #elif defined(_MSC_VER) #define CYTHON_INLINE __inline #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #define CYTHON_INLINE inline #else #define CYTHON_INLINE #endif #endif /* unused attribute */ #ifndef CYTHON_UNUSED # if defined(__GNUC__) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # define CYTHON_UNUSED __attribute__ ((__unused__)) # else # define CYTHON_UNUSED # endif # elif defined(__ICC) || defined(__INTEL_COMPILER) # define CYTHON_UNUSED __attribute__ ((__unused__)) # else # define CYTHON_UNUSED # endif #endif typedef struct {PyObject **p; char *s; const long n; const char* encoding; const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; /*proto*/ /* Type Conversion Predeclarations */ #define __Pyx_PyBytes_FromUString(s) PyBytes_FromString((char*)s) #define __Pyx_PyBytes_AsUString(s) ((unsigned char*) PyBytes_AsString(s)) #define __Pyx_Owned_Py_None(b) (Py_INCREF(Py_None), Py_None) #define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False)) static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x); static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); static CYTHON_INLINE size_t __Pyx_PyInt_AsSize_t(PyObject*); #define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) #ifdef __GNUC__ /* Test for GCC > 2.95 */ #if __GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95)) #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) #else /* __GNUC__ > 2 ... */ #define likely(x) (x) #define unlikely(x) (x) #endif /* __GNUC__ > 2 ... */ #else /* __GNUC__ */ #define likely(x) (x) #define unlikely(x) (x) #endif /* __GNUC__ */ static PyObject *__pyx_m; static PyObject *__pyx_b; static PyObject *__pyx_empty_tuple; static PyObject *__pyx_empty_bytes; static int __pyx_lineno; static int __pyx_clineno = 0; static const char * __pyx_cfilenm= __FILE__; static const char *__pyx_filename; static const char *__pyx_f[] = { "factory.pxi", "fontconfig.pyx", "fontconfig.pxi", }; /*--- Type declarations ---*/ struct __pyx_obj_10fontconfig_FcFont; struct __pyx_obj_10fontconfig_FcList; /* "fontconfig.pyx":39 * # * * cdef class FcFont: # <<<<<<<<<<<<<< * ''' * FcF is a class of Fontconfig */ struct __pyx_obj_10fontconfig_FcFont { PyObject_HEAD struct __pyx_vtabstruct_10fontconfig_FcFont *__pyx_vtab; FcPattern *_pat; FcBlanks *_blanks; FcCharSet *_cs; PyObject *file; PyObject *_buf; }; /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":19 * return FcGetVersion() * * cdef class FcList(list): # <<<<<<<<<<<<<< * ''' * FcList will return a FcFont object when you get an item */ struct __pyx_obj_10fontconfig_FcList { PyListObject __pyx_base; }; /* "fontconfig.pyx":39 * # * * cdef class FcFont: # <<<<<<<<<<<<<< * ''' * FcF is a class of Fontconfig */ struct __pyx_vtabstruct_10fontconfig_FcFont { PyObject *(*init)(struct __pyx_obj_10fontconfig_FcFont *); PyObject *(*_getattr)(struct __pyx_obj_10fontconfig_FcFont *, PyObject *, PyObject *); PyObject *(*_langen)(struct __pyx_obj_10fontconfig_FcFont *, PyObject *); }; static struct __pyx_vtabstruct_10fontconfig_FcFont *__pyx_vtabptr_10fontconfig_FcFont; #ifndef CYTHON_REFNANNY #define CYTHON_REFNANNY 0 #endif #if CYTHON_REFNANNY typedef struct { void (*INCREF)(void*, PyObject*, int); void (*DECREF)(void*, PyObject*, int); void (*GOTREF)(void*, PyObject*, int); void (*GIVEREF)(void*, PyObject*, int); void* (*SetupContext)(const char*, int, const char*); void (*FinishContext)(void**); } __Pyx_RefNannyAPIStruct; static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); /*proto*/ #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; #define __Pyx_RefNannySetupContext(name) __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) #define __Pyx_RefNannyFinishContext() __Pyx_RefNanny->FinishContext(&__pyx_refnanny) #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) #else #define __Pyx_RefNannyDeclarations #define __Pyx_RefNannySetupContext(name) #define __Pyx_RefNannyFinishContext() #define __Pyx_INCREF(r) Py_INCREF(r) #define __Pyx_DECREF(r) Py_DECREF(r) #define __Pyx_GOTREF(r) #define __Pyx_GIVEREF(r) #define __Pyx_XINCREF(r) Py_XINCREF(r) #define __Pyx_XDECREF(r) Py_XDECREF(r) #define __Pyx_XGOTREF(r) #define __Pyx_XGIVEREF(r) #endif /* CYTHON_REFNANNY */ static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name); /*proto*/ #include static void __Pyx_RaiseDoubleKeywordsError( const char* func_name, PyObject* kw_name); /*proto*/ static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[], PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, const char* function_name); /*proto*/ static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*/ static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { PyObject *r; if (!j) return NULL; r = PyObject_GetItem(o, j); Py_DECREF(j); return r; } #define __Pyx_GetItemInt_List(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_GetItemInt_List_Fast(o, i) : \ __Pyx_GetItemInt_Generic(o, to_py_func(i))) static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i) { if (likely(o != Py_None)) { if (likely((0 <= i) & (i < PyList_GET_SIZE(o)))) { PyObject *r = PyList_GET_ITEM(o, i); Py_INCREF(r); return r; } else if ((-PyList_GET_SIZE(o) <= i) & (i < 0)) { PyObject *r = PyList_GET_ITEM(o, PyList_GET_SIZE(o) + i); Py_INCREF(r); return r; } } return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); } #define __Pyx_GetItemInt_Tuple(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_GetItemInt_Tuple_Fast(o, i) : \ __Pyx_GetItemInt_Generic(o, to_py_func(i))) static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i) { if (likely(o != Py_None)) { if (likely((0 <= i) & (i < PyTuple_GET_SIZE(o)))) { PyObject *r = PyTuple_GET_ITEM(o, i); Py_INCREF(r); return r; } else if ((-PyTuple_GET_SIZE(o) <= i) & (i < 0)) { PyObject *r = PyTuple_GET_ITEM(o, PyTuple_GET_SIZE(o) + i); Py_INCREF(r); return r; } } return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); } #define __Pyx_GetItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_GetItemInt_Fast(o, i) : \ __Pyx_GetItemInt_Generic(o, to_py_func(i))) static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i) { PyObject *r; if (PyList_CheckExact(o) && ((0 <= i) & (i < PyList_GET_SIZE(o)))) { r = PyList_GET_ITEM(o, i); Py_INCREF(r); } else if (PyTuple_CheckExact(o) && ((0 <= i) & (i < PyTuple_GET_SIZE(o)))) { r = PyTuple_GET_ITEM(o, i); Py_INCREF(r); } else if (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_item && (likely(i >= 0))) { r = PySequence_GetItem(o, i); } else { r = __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); } return r; } static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); /*proto*/ static PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value) { PyObject* value; #if PY_MAJOR_VERSION >= 3 value = PyDict_GetItemWithError(d, key); if (unlikely(!value)) { if (unlikely(PyErr_Occurred())) return NULL; value = default_value; } Py_INCREF(value); #else if (PyString_CheckExact(key) || PyUnicode_CheckExact(key) || PyInt_CheckExact(key)) { /* these presumably have safe hash functions */ value = PyDict_GetItem(d, key); if (unlikely(!value)) { value = default_value; } Py_INCREF(value); } else { PyObject *m; m = __Pyx_GetAttrString(d, "get"); if (!m) return NULL; value = PyObject_CallFunctionObjArgs(m, key, (default_value == Py_None) ? NULL : default_value, NULL); Py_DECREF(m); } #endif return value; } static CYTHON_INLINE void __Pyx_RaiseNoneIndexingError(void); #if PY_MAJOR_VERSION >= 3 static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { PyObject *value; if (unlikely(d == Py_None)) { __Pyx_RaiseNoneIndexingError(); return NULL; } value = PyDict_GetItemWithError(d, key); if (unlikely(!value)) { if (!PyErr_Occurred()) PyErr_SetObject(PyExc_KeyError, key); return NULL; } Py_INCREF(value); return value; } #else #define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) #endif static CYTHON_INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) { if (likely(PyList_CheckExact(L))) { if (PyList_Append(L, x) < 0) return NULL; Py_INCREF(Py_None); return Py_None; /* this is just to have an accurate signature */ } else { PyObject *r, *m; m = __Pyx_GetAttrString(L, "append"); if (!m) return NULL; r = PyObject_CallFunctionObjArgs(m, x, NULL); Py_DECREF(m); return r; } } static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, const char *name, int exact); /*proto*/ static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb); /*proto*/ static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb); /*proto*/ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/ static CYTHON_INLINE void __Pyx_ExceptionSave(PyObject **type, PyObject **value, PyObject **tb); /*proto*/ static void __Pyx_ExceptionReset(PyObject *type, PyObject *value, PyObject *tb); /*proto*/ static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); /*proto*/ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); /*proto*/ #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyString_Equals __Pyx_PyUnicode_Equals #else #define __Pyx_PyString_Equals __Pyx_PyBytes_Equals #endif static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_FcChar32(FcChar32); static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject *); static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject *); static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject *); static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject *); static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject *); static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject *); static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject *); static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject *); static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject *); static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject *); static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject *); static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject *); static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject *); static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject *); static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject *); static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject *); static int __Pyx_check_binary_version(void); static int __Pyx_SetVtable(PyObject *dict, void *vtable); /*proto*/ static void __Pyx_AddTraceback(const char *funcname, int __pyx_clineno, int __pyx_lineno, const char *__pyx_filename); /*proto*/ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); /*proto*/ /* Module declarations from 'cpython.version' */ /* Module declarations from 'cfontconfig' */ /* Module declarations from 'fontconfig' */ static PyTypeObject *__pyx_ptype_10fontconfig_FcList = 0; static PyTypeObject *__pyx_ptype_10fontconfig_FcFont = 0; static FcResult __pyx_v_10fontconfig_Match; static PyObject *__pyx_f_10fontconfig_FcChar8_to_unicode(FcChar8 *); /*proto*/ static int __pyx_f_10fontconfig_fc_version(void); /*proto*/ #define __Pyx_MODULE_NAME "fontconfig" int __pyx_module_is_main_fontconfig = 0; /* Implementation of 'fontconfig' */ static PyObject *__pyx_builtin_range; static PyObject *__pyx_builtin_IndexError; static PyObject *__pyx_builtin_KeyError; static PyObject *__pyx_builtin_ValueError; static char __pyx_k_1[] = ""; static char __pyx_k_2[] = "%s:lang=%s"; static char __pyx_k_3[] = "utf-8"; static char __pyx_k_7[] = "<%s: %s>"; static char __pyx_k_8[] = "<%s>"; static char __pyx_k_10[] = "expected a character, but string of length %d found"; static char __pyx_k_11[] = "\n Python-fontconfig\n ~~~~~~~~~~~~~~~~~\n\n Python binding for Fontconfig library.\n\n .. _Python-fontconfig source code:\n http://github.com/Vayn/python-fontconfig\n\n :author: Vayn a.k.a VT \n :contributor: lilydjwg\n :license: GPLv3+, see LICENSE for details.\n"; static char __pyx_k_12[] = "0.5.0"; static char __pyx_k__int[] = "int"; static char __pyx_k__str[] = "str"; static char __pyx_k__bool[] = "bool"; static char __pyx_k__file[] = "file"; static char __pyx_k__lang[] = "lang"; static char __pyx_k__utf8[] = "utf8"; static char __pyx_k__index[] = "index"; static char __pyx_k__query[] = "query"; static char __pyx_k__range[] = "range"; static char __pyx_k__slant[] = "slant"; static char __pyx_k__style[] = "style"; static char __pyx_k__width[] = "width"; static char __pyx_k__decode[] = "decode"; static char __pyx_k__encode[] = "encode"; static char __pyx_k__family[] = "family"; static char __pyx_k__strict[] = "strict"; static char __pyx_k__weight[] = "weight"; static char __pyx_k__foundry[] = "foundry"; static char __pyx_k__outline[] = "outline"; static char __pyx_k__KeyError[] = "KeyError"; static char __pyx_k____main__[] = "__main__"; static char __pyx_k____name__[] = "__name__"; static char __pyx_k____test__[] = "__test__"; static char __pyx_k__fullname[] = "fullname"; static char __pyx_k__scalable[] = "scalable"; static char __pyx_k____class__[] = "__class__"; static char __pyx_k__IndexError[] = "IndexError"; static char __pyx_k__ValueError[] = "ValueError"; static char __pyx_k__capability[] = "capability"; static char __pyx_k__decorative[] = "decorative"; static char __pyx_k__fontconfig[] = "fontconfig"; static char __pyx_k__fontformat[] = "fontformat"; static char __pyx_k____delitem__[] = "__delitem__"; static char __pyx_k____getitem__[] = "__getitem__"; static char __pyx_k____version__[] = "__version__"; static char __pyx_k____docformat__[] = "__docformat__"; static char __pyx_k__restructuredtext[] = "restructuredtext"; static PyObject *__pyx_kp_s_1; static PyObject *__pyx_kp_s_10; static PyObject *__pyx_kp_s_12; static PyObject *__pyx_kp_s_2; static PyObject *__pyx_kp_s_3; static PyObject *__pyx_kp_s_7; static PyObject *__pyx_kp_s_8; static PyObject *__pyx_n_s__IndexError; static PyObject *__pyx_n_s__KeyError; static PyObject *__pyx_n_s__ValueError; static PyObject *__pyx_n_s____class__; static PyObject *__pyx_n_s____delitem__; static PyObject *__pyx_n_s____docformat__; static PyObject *__pyx_n_s____getitem__; static PyObject *__pyx_n_s____main__; static PyObject *__pyx_n_s____name__; static PyObject *__pyx_n_s____test__; static PyObject *__pyx_n_s____version__; static PyObject *__pyx_n_s__bool; static PyObject *__pyx_n_b__capability; static PyObject *__pyx_n_s__decode; static PyObject *__pyx_n_b__decorative; static PyObject *__pyx_n_s__encode; static PyObject *__pyx_n_b__family; static PyObject *__pyx_n_s__family; static PyObject *__pyx_n_s__file; static PyObject *__pyx_n_s__fontconfig; static PyObject *__pyx_n_b__fontformat; static PyObject *__pyx_n_b__foundry; static PyObject *__pyx_n_b__fullname; static PyObject *__pyx_n_b__index; static PyObject *__pyx_n_s__int; static PyObject *__pyx_n_b__lang; static PyObject *__pyx_n_s__lang; static PyObject *__pyx_n_b__outline; static PyObject *__pyx_n_s__query; static PyObject *__pyx_n_s__range; static PyObject *__pyx_n_s__restructuredtext; static PyObject *__pyx_n_b__scalable; static PyObject *__pyx_n_b__slant; static PyObject *__pyx_n_s__str; static PyObject *__pyx_n_b__style; static PyObject *__pyx_n_s__utf8; static PyObject *__pyx_n_b__weight; static PyObject *__pyx_n_b__width; static PyObject *__pyx_k_tuple_4; static PyObject *__pyx_k_tuple_5; static PyObject *__pyx_k_tuple_6; static PyObject *__pyx_k_tuple_9; /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":9 * cdef FcResult Match = FcResultMatch * * cdef unicode FcChar8_to_unicode(FcChar8 *str): # <<<<<<<<<<<<<< * '''Convert FcChar8 to unicode''' * cdef unicode ret */ static PyObject *__pyx_f_10fontconfig_FcChar8_to_unicode(FcChar8 *__pyx_v_str) { PyObject *__pyx_v_ret = 0; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations char *__pyx_t_1; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("FcChar8_to_unicode"); /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":12 * '''Convert FcChar8 to unicode''' * cdef unicode ret * ret = (str).decode('utf8', 'strict') # <<<<<<<<<<<<<< * return ret * */ __pyx_t_1 = ((char *)__pyx_v_str); __pyx_t_2 = ((PyObject *)PyUnicode_Decode(__pyx_t_1, strlen(__pyx_t_1), __pyx_k__utf8, __pyx_k__strict)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 12; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); if (!(likely(PyUnicode_CheckExact(((PyObject *)__pyx_t_2)))||((((PyObject *)__pyx_t_2)) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected unicode, got %.200s", Py_TYPE(((PyObject *)__pyx_t_2))->tp_name), 0))) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 12; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_INCREF(__pyx_t_2); __pyx_v_ret = ((PyObject*)__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":13 * cdef unicode ret * ret = (str).decode('utf8', 'strict') * return ret # <<<<<<<<<<<<<< * * cdef int fc_version(): */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_ret)); __pyx_r = __pyx_v_ret; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcChar8_to_unicode", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ret); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":15 * return ret * * cdef int fc_version(): # <<<<<<<<<<<<<< * '''Return version of Fontconfig''' * return FcGetVersion() */ static int __pyx_f_10fontconfig_fc_version(void) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("fc_version"); /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":17 * cdef int fc_version(): * '''Return version of Fontconfig''' * return FcGetVersion() # <<<<<<<<<<<<<< * * cdef class FcList(list): */ __pyx_r = FcGetVersion(); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":24 * in the list. * ''' * def __getitem__(self, arg): # <<<<<<<<<<<<<< * if isinstance(arg, slice): * return FcList(list.__getitem__(self, arg)) */ static PyObject *__pyx_pf_10fontconfig_6FcList___getitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_arg); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcList___getitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_arg) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__getitem__"); /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":25 * ''' * def __getitem__(self, arg): * if isinstance(arg, slice): # <<<<<<<<<<<<<< * return FcList(list.__getitem__(self, arg)) * else: */ __pyx_t_1 = ((PyObject *)((PyObject*)(&PySlice_Type))); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = __Pyx_TypeCheck(__pyx_v_arg, __pyx_t_1); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":26 * def __getitem__(self, arg): * if isinstance(arg, slice): * return FcList(list.__getitem__(self, arg)) # <<<<<<<<<<<<<< * else: * return FcFont(list.__getitem__(self, arg)) */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyObject_GetAttr(((PyObject *)((PyObject*)(&PyList_Type))), __pyx_n_s____getitem__); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 26; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 26; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); __Pyx_INCREF(__pyx_v_self); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_self); __Pyx_GIVEREF(__pyx_v_self); __Pyx_INCREF(__pyx_v_arg); PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_v_arg); __Pyx_GIVEREF(__pyx_v_arg); __pyx_t_4 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 26; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 26; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_10fontconfig_FcList)), ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 26; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; goto __pyx_L5; } /*else*/ { /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":28 * return FcList(list.__getitem__(self, arg)) * else: * return FcFont(list.__getitem__(self, arg)) # <<<<<<<<<<<<<< * * def __delitem(self, arg): */ __Pyx_XDECREF(__pyx_r); __pyx_t_4 = PyObject_GetAttr(((PyObject *)((PyObject*)(&PyList_Type))), __pyx_n_s____getitem__); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 28; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 28; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); __Pyx_INCREF(__pyx_v_self); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_self); __Pyx_GIVEREF(__pyx_v_self); __Pyx_INCREF(__pyx_v_arg); PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_v_arg); __Pyx_GIVEREF(__pyx_v_arg); __pyx_t_1 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 28; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 28; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_10fontconfig_FcFont)), ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 28; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; } __pyx_L5:; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_AddTraceback("fontconfig.FcList.__getitem__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":30 * return FcFont(list.__getitem__(self, arg)) * * def __delitem(self, arg): # <<<<<<<<<<<<<< * FcList(list.__delitem__(self, arg)) */ static PyObject *__pyx_pf_10fontconfig_6FcList_1__delitem(PyObject *__pyx_v_self, PyObject *__pyx_v_arg); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcList_1__delitem(PyObject *__pyx_v_self, PyObject *__pyx_v_arg) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__delitem"); /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":31 * * def __delitem(self, arg): * FcList(list.__delitem__(self, arg)) # <<<<<<<<<<<<<< */ __pyx_t_1 = PyObject_GetAttr(((PyObject *)((PyObject*)(&PyList_Type))), __pyx_n_s____delitem__); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 31; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 31; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __Pyx_INCREF(__pyx_v_self); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_self); __Pyx_GIVEREF(__pyx_v_self); __Pyx_INCREF(__pyx_v_arg); PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_v_arg); __Pyx_GIVEREF(__pyx_v_arg); __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 31; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 31; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_10fontconfig_FcList)), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 31; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_AddTraceback("fontconfig.FcList.__delitem", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":6 * # @Date: 2011 10 30 15:30:18 CST * * def query(family='', lang=''): # <<<<<<<<<<<<<< * ''' * Produce font object list for the queried language */ static PyObject *__pyx_pf_10fontconfig_query(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static char __pyx_doc_10fontconfig_query[] = "\n Produce font object list for the queried language\n "; static PyMethodDef __pyx_mdef_10fontconfig_query = {__Pyx_NAMESTR("query"), (PyCFunction)__pyx_pf_10fontconfig_query, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_10fontconfig_query)}; static PyObject *__pyx_pf_10fontconfig_query(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_family = 0; PyObject *__pyx_v_lang = 0; FcChar8 *__pyx_v_strpat; FcPattern *__pyx_v_pat; FcFontSet *__pyx_v_fs; FcObjectSet *__pyx_v_os; PyObject *__pyx_v_lst = 0; struct __pyx_obj_10fontconfig_FcList *__pyx_v_ret = 0; PyObject *__pyx_v_l_lang = NULL; int __pyx_v_i; FcChar8 *__pyx_v_file; FcCharSet *__pyx_v_cs; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; PyObject *__pyx_t_3 = NULL; char *__pyx_t_4; int __pyx_t_5; int __pyx_t_6; int __pyx_t_7; int __pyx_t_8; int __pyx_t_9; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__family,&__pyx_n_s__lang,0}; __Pyx_RefNannySetupContext("query"); __pyx_self = __pyx_self; { PyObject* values[2] = {0,0}; values[0] = ((PyObject *)__pyx_kp_s_1); values[1] = ((PyObject *)__pyx_kp_s_1); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (PyTuple_GET_SIZE(__pyx_args)) { case 0: if (kw_args > 0) { PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__family); if (value) { values[0] = value; kw_args--; } } case 1: if (kw_args > 0) { PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__lang); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "query") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 6; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_family = values[0]; __pyx_v_lang = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("query", 0, 0, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 6; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("fontconfig.query", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":12 * cdef: * FcChar8 *strpat * FcPattern *pat = NULL # <<<<<<<<<<<<<< * FcFontSet *fs = NULL * FcObjectSet *os = NULL */ __pyx_v_pat = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":13 * FcChar8 *strpat * FcPattern *pat = NULL * FcFontSet *fs = NULL # <<<<<<<<<<<<<< * FcObjectSet *os = NULL * list lst = [] */ __pyx_v_fs = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":14 * FcPattern *pat = NULL * FcFontSet *fs = NULL * FcObjectSet *os = NULL # <<<<<<<<<<<<<< * list lst = [] * FcList ret */ __pyx_v_os = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":15 * FcFontSet *fs = NULL * FcObjectSet *os = NULL * list lst = [] # <<<<<<<<<<<<<< * FcList ret * */ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 15; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __pyx_v_lst = __pyx_t_1; __pyx_t_1 = 0; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":18 * FcList ret * * if lang: # <<<<<<<<<<<<<< * l_lang = ('%s:lang=%s' % (family, lang)) * else: */ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_v_lang); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 18; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":19 * * if lang: * l_lang = ('%s:lang=%s' % (family, lang)) # <<<<<<<<<<<<<< * else: * l_lang = family */ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 19; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __Pyx_INCREF(__pyx_v_family); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_family); __Pyx_GIVEREF(__pyx_v_family); __Pyx_INCREF(__pyx_v_lang); PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_lang); __Pyx_GIVEREF(__pyx_v_lang); __pyx_t_3 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_2), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 19; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_v_l_lang = ((PyObject *)__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L6; } /*else*/ { /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":21 * l_lang = ('%s:lang=%s' % (family, lang)) * else: * l_lang = family # <<<<<<<<<<<<<< * l_lang = l_lang.encode('utf-8') * strpat = (l_lang) */ __Pyx_INCREF(__pyx_v_family); __pyx_v_l_lang = __pyx_v_family; } __pyx_L6:; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":22 * else: * l_lang = family * l_lang = l_lang.encode('utf-8') # <<<<<<<<<<<<<< * strpat = (l_lang) * pat = FcNameParse(strpat) */ __pyx_t_3 = PyObject_GetAttr(__pyx_v_l_lang, __pyx_n_s__encode); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 22; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_4), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 22; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_v_l_lang); __pyx_v_l_lang = __pyx_t_1; __pyx_t_1 = 0; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":23 * l_lang = family * l_lang = l_lang.encode('utf-8') * strpat = (l_lang) # <<<<<<<<<<<<<< * pat = FcNameParse(strpat) * os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL) */ __pyx_t_4 = PyBytes_AsString(__pyx_v_l_lang); if (unlikely((!__pyx_t_4) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 23; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_strpat = ((FcChar8 *)((char *)__pyx_t_4)); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":24 * l_lang = l_lang.encode('utf-8') * strpat = (l_lang) * pat = FcNameParse(strpat) # <<<<<<<<<<<<<< * os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL) * fs = FcFontList(0, pat, os) */ __pyx_v_pat = FcNameParse(__pyx_v_strpat); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":25 * strpat = (l_lang) * pat = FcNameParse(strpat) * os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL) # <<<<<<<<<<<<<< * fs = FcFontList(0, pat, os) * if fs is NULL or fs.nfont < 1: */ __pyx_v_os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":26 * pat = FcNameParse(strpat) * os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL) * fs = FcFontList(0, pat, os) # <<<<<<<<<<<<<< * if fs is NULL or fs.nfont < 1: * return lst */ __pyx_v_fs = FcFontList(((FcConfig *)0), __pyx_v_pat, __pyx_v_os); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":27 * os = FcObjectSetBuild(FC_CHARSET, FC_FILE, NULL) * fs = FcFontList(0, pat, os) * if fs is NULL or fs.nfont < 1: # <<<<<<<<<<<<<< * return lst * */ __pyx_t_2 = (__pyx_v_fs == NULL); if (!__pyx_t_2) { __pyx_t_5 = (__pyx_v_fs->nfont < 1); __pyx_t_6 = __pyx_t_5; } else { __pyx_t_6 = __pyx_t_2; } if (__pyx_t_6) { /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":28 * fs = FcFontList(0, pat, os) * if fs is NULL or fs.nfont < 1: * return lst # <<<<<<<<<<<<<< * * cdef: */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(((PyObject *)__pyx_v_lst)); __pyx_r = ((PyObject *)__pyx_v_lst); goto __pyx_L0; goto __pyx_L7; } __pyx_L7:; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":34 * FcChar8 *file * FcCharSet *cs * for i in range(fs.nfont): # <<<<<<<<<<<<<< * if FcPatternGetCharSet(fs.fonts[i], FC_CHARSET, 0, &cs) != Match: * continue */ __pyx_t_7 = __pyx_v_fs->nfont; for (__pyx_t_8 = 0; __pyx_t_8 < __pyx_t_7; __pyx_t_8+=1) { __pyx_v_i = __pyx_t_8; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":35 * FcCharSet *cs * for i in range(fs.nfont): * if FcPatternGetCharSet(fs.fonts[i], FC_CHARSET, 0, &cs) != Match: # <<<<<<<<<<<<<< * continue * if FcPatternGetString(fs.fonts[i], FC_FILE, 0, &file) == Match: */ __pyx_t_6 = (FcPatternGetCharSet((__pyx_v_fs->fonts[__pyx_v_i]), FC_CHARSET, 0, (&__pyx_v_cs)) != __pyx_v_10fontconfig_Match); if (__pyx_t_6) { /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":36 * for i in range(fs.nfont): * if FcPatternGetCharSet(fs.fonts[i], FC_CHARSET, 0, &cs) != Match: * continue # <<<<<<<<<<<<<< * if FcPatternGetString(fs.fonts[i], FC_FILE, 0, &file) == Match: * lst.append((file).decode('utf8')) */ goto __pyx_L8_continue; goto __pyx_L10; } __pyx_L10:; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":37 * if FcPatternGetCharSet(fs.fonts[i], FC_CHARSET, 0, &cs) != Match: * continue * if FcPatternGetString(fs.fonts[i], FC_FILE, 0, &file) == Match: # <<<<<<<<<<<<<< * lst.append((file).decode('utf8')) * ret = FcList(lst) */ __pyx_t_6 = (FcPatternGetString((__pyx_v_fs->fonts[__pyx_v_i]), FC_FILE, 0, (&__pyx_v_file)) == __pyx_v_10fontconfig_Match); if (__pyx_t_6) { /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":38 * continue * if FcPatternGetString(fs.fonts[i], FC_FILE, 0, &file) == Match: * lst.append((file).decode('utf8')) # <<<<<<<<<<<<<< * ret = FcList(lst) * */ if (unlikely(((PyObject *)__pyx_v_lst) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "append"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 38; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = ((char *)__pyx_v_file); __pyx_t_1 = ((PyObject *)PyUnicode_Decode(__pyx_t_4, strlen(__pyx_t_4), __pyx_k__utf8, NULL)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 38; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __pyx_t_9 = PyList_Append(__pyx_v_lst, ((PyObject *)__pyx_t_1)); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 38; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; goto __pyx_L11; } __pyx_L11:; __pyx_L8_continue:; } /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":39 * if FcPatternGetString(fs.fonts[i], FC_FILE, 0, &file) == Match: * lst.append((file).decode('utf8')) * ret = FcList(lst) # <<<<<<<<<<<<<< * * FcPatternDestroy(pat) */ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 39; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __Pyx_INCREF(((PyObject *)__pyx_v_lst)); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_lst)); __Pyx_GIVEREF(((PyObject *)__pyx_v_lst)); __pyx_t_3 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_10fontconfig_FcList)), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 39; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_v_ret = ((struct __pyx_obj_10fontconfig_FcList *)__pyx_t_3); __pyx_t_3 = 0; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":41 * ret = FcList(lst) * * FcPatternDestroy(pat) # <<<<<<<<<<<<<< * pat = NULL * FcObjectSetDestroy(os) */ FcPatternDestroy(__pyx_v_pat); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":42 * * FcPatternDestroy(pat) * pat = NULL # <<<<<<<<<<<<<< * FcObjectSetDestroy(os) * os = NULL */ __pyx_v_pat = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":43 * FcPatternDestroy(pat) * pat = NULL * FcObjectSetDestroy(os) # <<<<<<<<<<<<<< * os = NULL * FcCharSetDestroy(cs) */ FcObjectSetDestroy(__pyx_v_os); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":44 * pat = NULL * FcObjectSetDestroy(os) * os = NULL # <<<<<<<<<<<<<< * FcCharSetDestroy(cs) * cs = NULL */ __pyx_v_os = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":45 * FcObjectSetDestroy(os) * os = NULL * FcCharSetDestroy(cs) # <<<<<<<<<<<<<< * cs = NULL * FcFontSetDestroy(fs) */ FcCharSetDestroy(__pyx_v_cs); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":46 * os = NULL * FcCharSetDestroy(cs) * cs = NULL # <<<<<<<<<<<<<< * FcFontSetDestroy(fs) * fs = NULL */ __pyx_v_cs = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":47 * FcCharSetDestroy(cs) * cs = NULL * FcFontSetDestroy(fs) # <<<<<<<<<<<<<< * fs = NULL * return ret */ FcFontSetDestroy(__pyx_v_fs); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":48 * cs = NULL * FcFontSetDestroy(fs) * fs = NULL # <<<<<<<<<<<<<< * return ret */ __pyx_v_fs = NULL; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":49 * FcFontSetDestroy(fs) * fs = NULL * return ret # <<<<<<<<<<<<<< */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(((PyObject *)__pyx_v_ret)); __pyx_r = ((PyObject *)__pyx_v_ret); goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_3); __Pyx_AddTraceback("fontconfig.query", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_lst); __Pyx_XDECREF((PyObject *)__pyx_v_ret); __Pyx_XDECREF(__pyx_v_l_lang); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":55 * dict _buf * * def __cinit__(self, file): # <<<<<<<<<<<<<< * ''' * :param file: The absolute path of the font */ static int __pyx_pf_10fontconfig_6FcFont___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static int __pyx_pf_10fontconfig_6FcFont___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_file = 0; int __pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__file,0}; __Pyx_RefNannySetupContext("__cinit__"); { PyObject* values[1] = {0}; if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; switch (PyTuple_GET_SIZE(__pyx_args)) { case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (PyTuple_GET_SIZE(__pyx_args)) { case 0: values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__file); if (likely(values[0])) kw_args--; else goto __pyx_L5_argtuple_error; } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 55; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 1) { goto __pyx_L5_argtuple_error; } else { values[0] = PyTuple_GET_ITEM(__pyx_args, 0); } __pyx_v_file = values[0]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 55; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("fontconfig.FcFont.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return -1; __pyx_L4_argument_unpacking_done:; /* "fontconfig.pyx":59 * :param file: The absolute path of the font * ''' * self.file = file.encode('utf8') # <<<<<<<<<<<<<< * self.init() * */ __pyx_t_1 = PyObject_GetAttr(__pyx_v_file, __pyx_n_s__encode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_5), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GIVEREF(__pyx_t_2); __Pyx_GOTREF(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->file); __Pyx_DECREF(((PyObject *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->file)); ((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->file = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "fontconfig.pyx":60 * ''' * self.file = file.encode('utf8') * self.init() # <<<<<<<<<<<<<< * * cdef init(self): */ __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->init(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":62 * self.init() * * cdef init(self): # <<<<<<<<<<<<<< * cdef char *file = self.file * cdef int count */ static PyObject *__pyx_f_10fontconfig_6FcFont_init(struct __pyx_obj_10fontconfig_FcFont *__pyx_v_self) { char *__pyx_v_file; int __pyx_v_count; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations char *__pyx_t_1; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("init"); /* "fontconfig.pyx":63 * * cdef init(self): * cdef char *file = self.file # <<<<<<<<<<<<<< * cdef int count * self._blanks = FcConfigGetBlanks(NULL) */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_self->file)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 63; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_file = __pyx_t_1; /* "fontconfig.pyx":65 * cdef char *file = self.file * cdef int count * self._blanks = FcConfigGetBlanks(NULL) # <<<<<<<<<<<<<< * self._pat = FcFreeTypeQuery(file, 0, self._blanks, &count) * self._buf = {} */ __pyx_v_self->_blanks = FcConfigGetBlanks(NULL); /* "fontconfig.pyx":66 * cdef int count * self._blanks = FcConfigGetBlanks(NULL) * self._pat = FcFreeTypeQuery(file, 0, self._blanks, &count) # <<<<<<<<<<<<<< * self._buf = {} * */ __pyx_v_self->_pat = FcFreeTypeQuery(((FcChar8 *)__pyx_v_file), 0, __pyx_v_self->_blanks, (&__pyx_v_count)); /* "fontconfig.pyx":67 * self._blanks = FcConfigGetBlanks(NULL) * self._pat = FcFreeTypeQuery(file, 0, self._blanks, &count) * self._buf = {} # <<<<<<<<<<<<<< * * def __dealloc__(self): */ __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __Pyx_GIVEREF(((PyObject *)__pyx_t_2)); __Pyx_GOTREF(__pyx_v_self->_buf); __Pyx_DECREF(((PyObject *)__pyx_v_self->_buf)); __pyx_v_self->_buf = __pyx_t_2; __pyx_t_2 = 0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.init", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":69 * self._buf = {} * * def __dealloc__(self): # <<<<<<<<<<<<<< * if self._pat is not NULL: * FcPatternDestroy(self._pat) */ static void __pyx_pf_10fontconfig_6FcFont_1__dealloc__(PyObject *__pyx_v_self); /*proto*/ static void __pyx_pf_10fontconfig_6FcFont_1__dealloc__(PyObject *__pyx_v_self) { __Pyx_RefNannyDeclarations int __pyx_t_1; __Pyx_RefNannySetupContext("__dealloc__"); /* "fontconfig.pyx":70 * * def __dealloc__(self): * if self._pat is not NULL: # <<<<<<<<<<<<<< * FcPatternDestroy(self._pat) * self._pat = NULL */ __pyx_t_1 = (((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat != NULL); if (__pyx_t_1) { /* "fontconfig.pyx":71 * def __dealloc__(self): * if self._pat is not NULL: * FcPatternDestroy(self._pat) # <<<<<<<<<<<<<< * self._pat = NULL * */ FcPatternDestroy(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat); goto __pyx_L5; } __pyx_L5:; /* "fontconfig.pyx":72 * if self._pat is not NULL: * FcPatternDestroy(self._pat) * self._pat = NULL # <<<<<<<<<<<<<< * * def __repr__(self): */ ((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat = NULL; __Pyx_RefNannyFinishContext(); } /* "fontconfig.pyx":74 * self._pat = NULL * * def __repr__(self): # <<<<<<<<<<<<<< * try: * if PY_MAJOR_VERSION < 3: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_2__repr__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_2__repr__(PyObject *__pyx_v_self) { PyObject *__pyx_v_family = NULL; PyObject *__pyx_v_value = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; int __pyx_t_7; PyObject *__pyx_t_8 = NULL; PyObject *__pyx_t_9 = NULL; PyObject *__pyx_t_10 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__repr__"); /* "fontconfig.pyx":75 * * def __repr__(self): * try: # <<<<<<<<<<<<<< * if PY_MAJOR_VERSION < 3: * # To avoid `UnicodeEncodeError` in Python 2 */ { __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); __Pyx_XGOTREF(__pyx_t_1); __Pyx_XGOTREF(__pyx_t_2); __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { /* "fontconfig.pyx":76 * def __repr__(self): * try: * if PY_MAJOR_VERSION < 3: # <<<<<<<<<<<<<< * # To avoid `UnicodeEncodeError` in Python 2 * family = self.family[0][1].encode('utf8') */ __pyx_t_4 = (PY_MAJOR_VERSION < 3); if (__pyx_t_4) { /* "fontconfig.pyx":78 * if PY_MAJOR_VERSION < 3: * # To avoid `UnicodeEncodeError` in Python 2 * family = self.family[0][1].encode('utf8') # <<<<<<<<<<<<<< * else: * family = self.family[0][1] */ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__family); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_GetItemInt(__pyx_t_5, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_6) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = __Pyx_GetItemInt(__pyx_t_6, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_5) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s__encode); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_k_tuple_6), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_v_family = __pyx_t_5; __pyx_t_5 = 0; goto __pyx_L13; } /*else*/ { /* "fontconfig.pyx":80 * family = self.family[0][1].encode('utf8') * else: * family = self.family[0][1] # <<<<<<<<<<<<<< * value = '<%s: %s>' % ( * self.__class__.__name__, */ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__family); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_GetItemInt(__pyx_t_5, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_6) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = __Pyx_GetItemInt(__pyx_t_6, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_5) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_v_family = __pyx_t_5; __pyx_t_5 = 0; } __pyx_L13:; /* "fontconfig.pyx":82 * family = self.family[0][1] * value = '<%s: %s>' % ( * self.__class__.__name__, # <<<<<<<<<<<<<< * family * ) */ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____class__); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 82; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s____name__); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 82; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "fontconfig.pyx":84 * self.__class__.__name__, * family * ) # <<<<<<<<<<<<<< * except IndexError: * value = '<%s>' % self.__class__.__name__ */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 82; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_6); __Pyx_GIVEREF(__pyx_t_6); __Pyx_INCREF(__pyx_v_family); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_v_family); __Pyx_GIVEREF(__pyx_v_family); __pyx_t_6 = 0; __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_7), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 81; __pyx_clineno = __LINE__; goto __pyx_L5_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_v_value = ((PyObject *)__pyx_t_6); __pyx_t_6 = 0; } __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L12_try_end; __pyx_L5_error:; __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; /* "fontconfig.pyx":85 * family * ) * except IndexError: # <<<<<<<<<<<<<< * value = '<%s>' % self.__class__.__name__ * return value */ __pyx_t_7 = PyErr_ExceptionMatches(__pyx_builtin_IndexError); if (__pyx_t_7) { __Pyx_AddTraceback("fontconfig.FcFont.__repr__", __pyx_clineno, __pyx_lineno, __pyx_filename); if (__Pyx_GetException(&__pyx_t_6, &__pyx_t_5, &__pyx_t_8) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 85; __pyx_clineno = __LINE__; goto __pyx_L7_except_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_8); /* "fontconfig.pyx":86 * ) * except IndexError: * value = '<%s>' % self.__class__.__name__ # <<<<<<<<<<<<<< * return value * */ __pyx_t_9 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____class__); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 86; __pyx_clineno = __LINE__; goto __pyx_L7_except_error;} __Pyx_GOTREF(__pyx_t_9); __pyx_t_10 = PyObject_GetAttr(__pyx_t_9, __pyx_n_s____name__); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 86; __pyx_clineno = __LINE__; goto __pyx_L7_except_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; __pyx_t_9 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_8), __pyx_t_10); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 86; __pyx_clineno = __LINE__; goto __pyx_L7_except_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_9)); __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __Pyx_XDECREF(__pyx_v_value); __pyx_v_value = ((PyObject *)__pyx_t_9); __pyx_t_9 = 0; __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L6_exception_handled; } __pyx_L7_except_error:; __Pyx_XGIVEREF(__pyx_t_1); __Pyx_XGIVEREF(__pyx_t_2); __Pyx_XGIVEREF(__pyx_t_3); __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); goto __pyx_L1_error; __pyx_L6_exception_handled:; __Pyx_XGIVEREF(__pyx_t_1); __Pyx_XGIVEREF(__pyx_t_2); __Pyx_XGIVEREF(__pyx_t_3); __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); __pyx_L12_try_end:; } /* "fontconfig.pyx":87 * except IndexError: * value = '<%s>' % self.__class__.__name__ * return value # <<<<<<<<<<<<<< * * property file: */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(__pyx_v_value); __pyx_r = __pyx_v_value; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_8); __Pyx_XDECREF(__pyx_t_9); __Pyx_XDECREF(__pyx_t_10); __Pyx_AddTraceback("fontconfig.FcFont.__repr__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_family); __Pyx_XDECREF(__pyx_v_value); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":90 * * property file: * def __get__(self): # <<<<<<<<<<<<<< * return self.file.decode('utf8') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_4file___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_4file___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":91 * property file: * def __get__(self): * return self.file.decode('utf8') # <<<<<<<<<<<<<< * * cdef object _getattr(self, bytes name, object type): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->file), __pyx_n_s__decode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_9), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.file.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":93 * return self.file.decode('utf8') * * cdef object _getattr(self, bytes name, object type): # <<<<<<<<<<<<<< * cdef: * int ivar */ static PyObject *__pyx_f_10fontconfig_6FcFont__getattr(struct __pyx_obj_10fontconfig_FcFont *__pyx_v_self, PyObject *__pyx_v_name, PyObject *__pyx_v_type) { int __pyx_v_ivar; FcBool __pyx_v_bvar; FcChar8 *__pyx_v_cvar; char *__pyx_v_obj; PyObject *__pyx_v_ret = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations char *__pyx_t_1; int __pyx_t_2; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; int __pyx_t_5; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; int __pyx_t_9; PyObject *__pyx_t_10 = NULL; PyObject *__pyx_t_11 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("_getattr"); /* "fontconfig.pyx":99 * FcChar8 *cvar * char *obj * obj = name # <<<<<<<<<<<<<< * if type == 'str' and self._buf.get(name) is None: * if FcPatternGetString(self._pat, obj, 0, &cvar) == Match: */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_name)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_obj = ((char *)__pyx_t_1); /* "fontconfig.pyx":100 * char *obj * obj = name * if type == 'str' and self._buf.get(name) is None: # <<<<<<<<<<<<<< * if FcPatternGetString(self._pat, obj, 0, &cvar) == Match: * ret = FcChar8_to_unicode(cvar) */ __pyx_t_2 = __Pyx_PyString_Equals(__pyx_v_type, ((PyObject *)__pyx_n_s__str), Py_EQ); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { if (unlikely(((PyObject *)__pyx_v_self->_buf) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "get"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), Py_None); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 100; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = (__pyx_t_3 == Py_None); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_5 = __pyx_t_4; } else { __pyx_t_5 = __pyx_t_2; } if (__pyx_t_5) { /* "fontconfig.pyx":101 * obj = name * if type == 'str' and self._buf.get(name) is None: * if FcPatternGetString(self._pat, obj, 0, &cvar) == Match: # <<<<<<<<<<<<<< * ret = FcChar8_to_unicode(cvar) * self._buf[name] = ret */ __pyx_t_5 = (FcPatternGetString(__pyx_v_self->_pat, __pyx_v_obj, 0, (&__pyx_v_cvar)) == __pyx_v_10fontconfig_Match); if (__pyx_t_5) { /* "fontconfig.pyx":102 * if type == 'str' and self._buf.get(name) is None: * if FcPatternGetString(self._pat, obj, 0, &cvar) == Match: * ret = FcChar8_to_unicode(cvar) # <<<<<<<<<<<<<< * self._buf[name] = ret * elif type == 'int' and self._buf.get(name) is None: */ __pyx_t_3 = ((PyObject *)__pyx_f_10fontconfig_FcChar8_to_unicode(__pyx_v_cvar)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 102; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_v_ret = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "fontconfig.pyx":103 * if FcPatternGetString(self._pat, obj, 0, &cvar) == Match: * ret = FcChar8_to_unicode(cvar) * self._buf[name] = ret # <<<<<<<<<<<<<< * elif type == 'int' and self._buf.get(name) is None: * if FcPatternGetInteger(self._pat, obj, 0, &ivar) == Match: */ if (PyDict_SetItem(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), ((PyObject *)__pyx_v_ret)) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 103; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L4; } __pyx_L4:; goto __pyx_L3; } /* "fontconfig.pyx":104 * ret = FcChar8_to_unicode(cvar) * self._buf[name] = ret * elif type == 'int' and self._buf.get(name) is None: # <<<<<<<<<<<<<< * if FcPatternGetInteger(self._pat, obj, 0, &ivar) == Match: * self._buf[name] = ivar */ __pyx_t_5 = __Pyx_PyString_Equals(__pyx_v_type, ((PyObject *)__pyx_n_s__int), Py_EQ); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_5) { if (unlikely(((PyObject *)__pyx_v_self->_buf) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "get"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), Py_None); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = (__pyx_t_3 == Py_None); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_4 = __pyx_t_2; } else { __pyx_t_4 = __pyx_t_5; } if (__pyx_t_4) { /* "fontconfig.pyx":105 * self._buf[name] = ret * elif type == 'int' and self._buf.get(name) is None: * if FcPatternGetInteger(self._pat, obj, 0, &ivar) == Match: # <<<<<<<<<<<<<< * self._buf[name] = ivar * elif type == 'bool' and self._buf.get(name) is None: */ __pyx_t_4 = (FcPatternGetInteger(__pyx_v_self->_pat, __pyx_v_obj, 0, (&__pyx_v_ivar)) == __pyx_v_10fontconfig_Match); if (__pyx_t_4) { /* "fontconfig.pyx":106 * elif type == 'int' and self._buf.get(name) is None: * if FcPatternGetInteger(self._pat, obj, 0, &ivar) == Match: * self._buf[name] = ivar # <<<<<<<<<<<<<< * elif type == 'bool' and self._buf.get(name) is None: * if FcPatternGetBool(self._pat, obj, 0, &bvar) == Match: */ __pyx_t_3 = PyInt_FromLong(__pyx_v_ivar); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); if (PyDict_SetItem(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L5; } __pyx_L5:; goto __pyx_L3; } /* "fontconfig.pyx":107 * if FcPatternGetInteger(self._pat, obj, 0, &ivar) == Match: * self._buf[name] = ivar * elif type == 'bool' and self._buf.get(name) is None: # <<<<<<<<<<<<<< * if FcPatternGetBool(self._pat, obj, 0, &bvar) == Match: * self._buf[name] = bvar */ __pyx_t_4 = __Pyx_PyString_Equals(__pyx_v_type, ((PyObject *)__pyx_n_s__bool), Py_EQ); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 107; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_4) { if (unlikely(((PyObject *)__pyx_v_self->_buf) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "get"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 107; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), Py_None); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 107; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = (__pyx_t_3 == Py_None); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_2 = __pyx_t_5; } else { __pyx_t_2 = __pyx_t_4; } if (__pyx_t_2) { /* "fontconfig.pyx":108 * self._buf[name] = ivar * elif type == 'bool' and self._buf.get(name) is None: * if FcPatternGetBool(self._pat, obj, 0, &bvar) == Match: # <<<<<<<<<<<<<< * self._buf[name] = bvar * try: */ __pyx_t_2 = (FcPatternGetBool(__pyx_v_self->_pat, __pyx_v_obj, 0, (&__pyx_v_bvar)) == __pyx_v_10fontconfig_Match); if (__pyx_t_2) { /* "fontconfig.pyx":109 * elif type == 'bool' and self._buf.get(name) is None: * if FcPatternGetBool(self._pat, obj, 0, &bvar) == Match: * self._buf[name] = bvar # <<<<<<<<<<<<<< * try: * return self._buf[name] */ __pyx_t_3 = __Pyx_PyBool_FromLong(__pyx_v_bvar); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 109; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); if (PyDict_SetItem(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 109; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L6; } __pyx_L6:; goto __pyx_L3; } __pyx_L3:; /* "fontconfig.pyx":110 * if FcPatternGetBool(self._pat, obj, 0, &bvar) == Match: * self._buf[name] = bvar * try: # <<<<<<<<<<<<<< * return self._buf[name] * except KeyError: */ { __Pyx_ExceptionSave(&__pyx_t_6, &__pyx_t_7, &__pyx_t_8); __Pyx_XGOTREF(__pyx_t_6); __Pyx_XGOTREF(__pyx_t_7); __Pyx_XGOTREF(__pyx_t_8); /*try:*/ { /* "fontconfig.pyx":111 * self._buf[name] = bvar * try: * return self._buf[name] # <<<<<<<<<<<<<< * except KeyError: * # If there isn't one property in the font */ __Pyx_XDECREF(__pyx_r); __pyx_t_3 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name)); if (!__pyx_t_3) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 111; __pyx_clineno = __LINE__; goto __pyx_L7_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_r = __pyx_t_3; __pyx_t_3 = 0; goto __pyx_L11_try_return; } __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L14_try_end; __pyx_L11_try_return:; __Pyx_XGIVEREF(__pyx_t_6); __Pyx_XGIVEREF(__pyx_t_7); __Pyx_XGIVEREF(__pyx_t_8); __Pyx_ExceptionReset(__pyx_t_6, __pyx_t_7, __pyx_t_8); goto __pyx_L0; __pyx_L7_error:; __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; /* "fontconfig.pyx":112 * try: * return self._buf[name] * except KeyError: # <<<<<<<<<<<<<< * # If there isn't one property in the font * self._buf[name] = None */ __pyx_t_9 = PyErr_ExceptionMatches(__pyx_builtin_KeyError); if (__pyx_t_9) { __Pyx_AddTraceback("fontconfig.FcFont._getattr", __pyx_clineno, __pyx_lineno, __pyx_filename); if (__Pyx_GetException(&__pyx_t_3, &__pyx_t_10, &__pyx_t_11) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 112; __pyx_clineno = __LINE__; goto __pyx_L9_except_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_GOTREF(__pyx_t_10); __Pyx_GOTREF(__pyx_t_11); /* "fontconfig.pyx":114 * except KeyError: * # If there isn't one property in the font * self._buf[name] = None # <<<<<<<<<<<<<< * * property fontformat: */ if (PyDict_SetItem(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_name), Py_None) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L9_except_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; goto __pyx_L8_exception_handled; } __pyx_L9_except_error:; __Pyx_XGIVEREF(__pyx_t_6); __Pyx_XGIVEREF(__pyx_t_7); __Pyx_XGIVEREF(__pyx_t_8); __Pyx_ExceptionReset(__pyx_t_6, __pyx_t_7, __pyx_t_8); goto __pyx_L1_error; __pyx_L8_exception_handled:; __Pyx_XGIVEREF(__pyx_t_6); __Pyx_XGIVEREF(__pyx_t_7); __Pyx_XGIVEREF(__pyx_t_8); __Pyx_ExceptionReset(__pyx_t_6, __pyx_t_7, __pyx_t_8); __pyx_L14_try_end:; } __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_10); __Pyx_XDECREF(__pyx_t_11); __Pyx_AddTraceback("fontconfig.FcFont._getattr", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ret); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":117 * * property fontformat: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'fontformat', 'str') * property foundry: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_10fontformat___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_10fontformat___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":118 * property fontformat: * def __get__(self): * return self._getattr(b'fontformat', 'str') # <<<<<<<<<<<<<< * property foundry: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__str); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__fontformat, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 118; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.fontformat.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":120 * return self._getattr(b'fontformat', 'str') * property foundry: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'foundry', 'str') * property capability: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_7foundry___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_7foundry___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":121 * property foundry: * def __get__(self): * return self._getattr(b'foundry', 'str') # <<<<<<<<<<<<<< * property capability: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__str); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__foundry, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.foundry.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":123 * return self._getattr(b'foundry', 'str') * property capability: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'capability', 'str') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_10capability___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_10capability___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":124 * property capability: * def __get__(self): * return self._getattr(b'capability', 'str') # <<<<<<<<<<<<<< * * property slant: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__str); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__capability, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 124; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.capability.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":127 * * property slant: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'slant', 'int') * property index: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_5slant___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_5slant___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":128 * property slant: * def __get__(self): * return self._getattr(b'slant', 'int') # <<<<<<<<<<<<<< * property index: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__int); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__slant, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.slant.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":130 * return self._getattr(b'slant', 'int') * property index: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'index', 'int') * property weight: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_5index___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_5index___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":131 * property index: * def __get__(self): * return self._getattr(b'index', 'int') # <<<<<<<<<<<<<< * property weight: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__int); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__index, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 131; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.index.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":133 * return self._getattr(b'index', 'int') * property weight: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'weight', 'int') * property width: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_6weight___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_6weight___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":134 * property weight: * def __get__(self): * return self._getattr(b'weight', 'int') # <<<<<<<<<<<<<< * property width: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__int); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__weight, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 134; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.weight.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":136 * return self._getattr(b'weight', 'int') * property width: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'width', 'int') * property spacing: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_5width___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_5width___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":137 * property width: * def __get__(self): * return self._getattr(b'width', 'int') # <<<<<<<<<<<<<< * property spacing: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__int); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__width, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 137; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.width.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":139 * return self._getattr(b'width', 'int') * property spacing: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'decorative', 'int') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_7spacing___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_7spacing___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":140 * property spacing: * def __get__(self): * return self._getattr(b'decorative', 'int') # <<<<<<<<<<<<<< * * property scalable: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__int); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__decorative, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 140; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.spacing.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":143 * * property scalable: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'scalable', 'bool') * property outline: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_8scalable___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_8scalable___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":144 * property scalable: * def __get__(self): * return self._getattr(b'scalable', 'bool') # <<<<<<<<<<<<<< * property outline: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__bool); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__scalable, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 144; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.scalable.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":146 * return self._getattr(b'scalable', 'bool') * property outline: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'outline', 'bool') * property decorative: */ static PyObject *__pyx_pf_10fontconfig_6FcFont_7outline___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_7outline___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":147 * property outline: * def __get__(self): * return self._getattr(b'outline', 'bool') # <<<<<<<<<<<<<< * property decorative: * def __get__(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__bool); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__outline, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 147; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.outline.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":149 * return self._getattr(b'outline', 'bool') * property decorative: * def __get__(self): # <<<<<<<<<<<<<< * return self._getattr(b'decorative', 'bool') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_10decorative___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_10decorative___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":150 * property decorative: * def __get__(self): * return self._getattr(b'decorative', 'bool') # <<<<<<<<<<<<<< * * cdef object _langen(self, bytes obj): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_n_s__bool); __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_getattr(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__decorative, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 150; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.decorative.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":152 * return self._getattr(b'decorative', 'bool') * * cdef object _langen(self, bytes obj): # <<<<<<<<<<<<<< * # Used by family, style and fullname * cdef: */ static PyObject *__pyx_f_10fontconfig_6FcFont__langen(struct __pyx_obj_10fontconfig_FcFont *__pyx_v_self, PyObject *__pyx_v_obj) { int __pyx_v_id; FcChar8 *__pyx_v_cvar; PyObject *__pyx_v_ret = NULL; PyObject *__pyx_v_lang = NULL; PyObject *__pyx_v_val = NULL; PyObject *__pyx_v_lan = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; char *__pyx_t_3; PyObject *__pyx_t_4 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("_langen"); /* "fontconfig.pyx":157 * int id * FcChar8 *cvar * ret = self._buf.get(obj) # <<<<<<<<<<<<<< * if ret is None: * id = 0 */ if (unlikely(((PyObject *)__pyx_v_self->_buf) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "get"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 157; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_obj), Py_None); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 157; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_ret = __pyx_t_1; __pyx_t_1 = 0; /* "fontconfig.pyx":158 * FcChar8 *cvar * ret = self._buf.get(obj) * if ret is None: # <<<<<<<<<<<<<< * id = 0 * lang = obj+b'lang' */ __pyx_t_2 = (__pyx_v_ret == Py_None); if (__pyx_t_2) { /* "fontconfig.pyx":159 * ret = self._buf.get(obj) * if ret is None: * id = 0 # <<<<<<<<<<<<<< * lang = obj+b'lang' * ret = [] */ __pyx_v_id = 0; /* "fontconfig.pyx":160 * if ret is None: * id = 0 * lang = obj+b'lang' # <<<<<<<<<<<<<< * ret = [] * while True: */ __pyx_t_1 = PyNumber_Add(((PyObject *)__pyx_v_obj), ((PyObject *)__pyx_n_b__lang)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 160; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __pyx_v_lang = __pyx_t_1; __pyx_t_1 = 0; /* "fontconfig.pyx":161 * id = 0 * lang = obj+b'lang' * ret = [] # <<<<<<<<<<<<<< * while True: * if FcPatternGetString(self._pat, obj, id, &cvar) == Match: */ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 161; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __Pyx_DECREF(__pyx_v_ret); __pyx_v_ret = ((PyObject *)__pyx_t_1); __pyx_t_1 = 0; /* "fontconfig.pyx":162 * lang = obj+b'lang' * ret = [] * while True: # <<<<<<<<<<<<<< * if FcPatternGetString(self._pat, obj, id, &cvar) == Match: * val = FcChar8_to_unicode(cvar) */ while (1) { if (!1) break; /* "fontconfig.pyx":163 * ret = [] * while True: * if FcPatternGetString(self._pat, obj, id, &cvar) == Match: # <<<<<<<<<<<<<< * val = FcChar8_to_unicode(cvar) * FcPatternGetString(self._pat, lang, id, &cvar) */ __pyx_t_3 = PyBytes_AsString(((PyObject *)__pyx_v_obj)); if (unlikely((!__pyx_t_3) && PyErr_Occurred())) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = (FcPatternGetString(__pyx_v_self->_pat, __pyx_t_3, __pyx_v_id, (&__pyx_v_cvar)) == __pyx_v_10fontconfig_Match); if (__pyx_t_2) { /* "fontconfig.pyx":164 * while True: * if FcPatternGetString(self._pat, obj, id, &cvar) == Match: * val = FcChar8_to_unicode(cvar) # <<<<<<<<<<<<<< * FcPatternGetString(self._pat, lang, id, &cvar) * lan = FcChar8_to_unicode(cvar) */ __pyx_t_1 = ((PyObject *)__pyx_f_10fontconfig_FcChar8_to_unicode(__pyx_v_cvar)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 164; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_XDECREF(((PyObject *)__pyx_v_val)); __pyx_v_val = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "fontconfig.pyx":165 * if FcPatternGetString(self._pat, obj, id, &cvar) == Match: * val = FcChar8_to_unicode(cvar) * FcPatternGetString(self._pat, lang, id, &cvar) # <<<<<<<<<<<<<< * lan = FcChar8_to_unicode(cvar) * ret.append((lan, val)) */ __pyx_t_3 = PyBytes_AsString(((PyObject *)__pyx_v_lang)); if (unlikely((!__pyx_t_3) && PyErr_Occurred())) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 165; __pyx_clineno = __LINE__; goto __pyx_L1_error;} FcPatternGetString(__pyx_v_self->_pat, __pyx_t_3, __pyx_v_id, (&__pyx_v_cvar)); /* "fontconfig.pyx":166 * val = FcChar8_to_unicode(cvar) * FcPatternGetString(self._pat, lang, id, &cvar) * lan = FcChar8_to_unicode(cvar) # <<<<<<<<<<<<<< * ret.append((lan, val)) * id += 1 */ __pyx_t_1 = ((PyObject *)__pyx_f_10fontconfig_FcChar8_to_unicode(__pyx_v_cvar)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 166; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_XDECREF(((PyObject *)__pyx_v_lan)); __pyx_v_lan = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "fontconfig.pyx":167 * FcPatternGetString(self._pat, lang, id, &cvar) * lan = FcChar8_to_unicode(cvar) * ret.append((lan, val)) # <<<<<<<<<<<<<< * id += 1 * else: */ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 167; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __Pyx_INCREF(((PyObject *)__pyx_v_lan)); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_lan)); __Pyx_GIVEREF(((PyObject *)__pyx_v_lan)); __Pyx_INCREF(((PyObject *)__pyx_v_val)); PyTuple_SET_ITEM(__pyx_t_1, 1, ((PyObject *)__pyx_v_val)); __Pyx_GIVEREF(((PyObject *)__pyx_v_val)); __pyx_t_4 = __Pyx_PyObject_Append(__pyx_v_ret, ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 167; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "fontconfig.pyx":168 * lan = FcChar8_to_unicode(cvar) * ret.append((lan, val)) * id += 1 # <<<<<<<<<<<<<< * else: * self._buf[obj] = ret */ __pyx_v_id = (__pyx_v_id + 1); goto __pyx_L6; } /*else*/ { /* "fontconfig.pyx":170 * id += 1 * else: * self._buf[obj] = ret # <<<<<<<<<<<<<< * return ret * else: */ if (PyDict_SetItem(((PyObject *)__pyx_v_self->_buf), ((PyObject *)__pyx_v_obj), __pyx_v_ret) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "fontconfig.pyx":171 * else: * self._buf[obj] = ret * return ret # <<<<<<<<<<<<<< * else: * return ret */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(__pyx_v_ret); __pyx_r = __pyx_v_ret; goto __pyx_L0; } __pyx_L6:; } goto __pyx_L3; } /*else*/ { /* "fontconfig.pyx":173 * return ret * else: * return ret # <<<<<<<<<<<<<< * * property family: */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(__pyx_v_ret); __pyx_r = __pyx_v_ret; goto __pyx_L0; } __pyx_L3:; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_4); __Pyx_AddTraceback("fontconfig.FcFont._langen", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ret); __Pyx_XDECREF(__pyx_v_lang); __Pyx_XDECREF(__pyx_v_val); __Pyx_XDECREF(__pyx_v_lan); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":176 * * property family: * def __get__(self): # <<<<<<<<<<<<<< * return self._langen(b'family') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_6family___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_6family___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":177 * property family: * def __get__(self): * return self._langen(b'family') # <<<<<<<<<<<<<< * * property style: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_langen(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__family); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("fontconfig.FcFont.family.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":180 * * property style: * def __get__(self): # <<<<<<<<<<<<<< * return self._langen(b'style') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_5style___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_5style___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":181 * property style: * def __get__(self): * return self._langen(b'style') # <<<<<<<<<<<<<< * * property fullname: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_langen(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__style); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("fontconfig.FcFont.style.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":184 * * property fullname: * def __get__(self): # <<<<<<<<<<<<<< * return self._langen(b'fullname') * */ static PyObject *__pyx_pf_10fontconfig_6FcFont_8fullname___get__(PyObject *__pyx_v_self); /*proto*/ static PyObject *__pyx_pf_10fontconfig_6FcFont_8fullname___get__(PyObject *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__get__"); /* "fontconfig.pyx":185 * property fullname: * def __get__(self): * return self._langen(b'fullname') # <<<<<<<<<<<<<< * * def get_languages(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((struct __pyx_vtabstruct_10fontconfig_FcFont *)((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->__pyx_vtab)->_langen(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self), __pyx_n_b__fullname); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("fontconfig.FcFont.fullname.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":187 * return self._langen(b'fullname') * * def get_languages(self): # <<<<<<<<<<<<<< * '''Print all languages the font supports''' * cdef FcValue var */ static PyObject *__pyx_pf_10fontconfig_6FcFont_3get_languages(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static char __pyx_doc_10fontconfig_6FcFont_3get_languages[] = "Print all languages the font supports"; static PyObject *__pyx_pf_10fontconfig_6FcFont_3get_languages(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { FcValue __pyx_v_var; FcStrSet *__pyx_v_langs; PyObject *__pyx_v_ret = NULL; int __pyx_v_i; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; int __pyx_t_3; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("get_languages"); /* "fontconfig.pyx":191 * cdef FcValue var * cdef FcStrSet* langs * ret = [] # <<<<<<<<<<<<<< * if FcPatternGet(self._pat, FC_LANG, 0, &var) == Match: * langs = FcLangSetGetLangs(var.u.l) */ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 191; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __pyx_v_ret = ((PyObject *)__pyx_t_1); __pyx_t_1 = 0; /* "fontconfig.pyx":192 * cdef FcStrSet* langs * ret = [] * if FcPatternGet(self._pat, FC_LANG, 0, &var) == Match: # <<<<<<<<<<<<<< * langs = FcLangSetGetLangs(var.u.l) * for i in range(langs.num): */ __pyx_t_2 = (FcPatternGet(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat, FC_LANG, 0, (&__pyx_v_var)) == __pyx_v_10fontconfig_Match); if (__pyx_t_2) { /* "fontconfig.pyx":193 * ret = [] * if FcPatternGet(self._pat, FC_LANG, 0, &var) == Match: * langs = FcLangSetGetLangs(var.u.l) # <<<<<<<<<<<<<< * for i in range(langs.num): * ret.append(FcChar8_to_unicode(langs.strs[i])) */ __pyx_v_langs = FcLangSetGetLangs(__pyx_v_var.u.l); /* "fontconfig.pyx":194 * if FcPatternGet(self._pat, FC_LANG, 0, &var) == Match: * langs = FcLangSetGetLangs(var.u.l) * for i in range(langs.num): # <<<<<<<<<<<<<< * ret.append(FcChar8_to_unicode(langs.strs[i])) * else: */ __pyx_t_3 = __pyx_v_langs->num; for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { __pyx_v_i = __pyx_t_4; /* "fontconfig.pyx":195 * langs = FcLangSetGetLangs(var.u.l) * for i in range(langs.num): * ret.append(FcChar8_to_unicode(langs.strs[i])) # <<<<<<<<<<<<<< * else: * ret = None */ __pyx_t_1 = ((PyObject *)__pyx_f_10fontconfig_FcChar8_to_unicode((__pyx_v_langs->strs[__pyx_v_i]))); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_5 = __Pyx_PyObject_Append(__pyx_v_ret, __pyx_t_1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; } goto __pyx_L5; } /*else*/ { /* "fontconfig.pyx":197 * ret.append(FcChar8_to_unicode(langs.strs[i])) * else: * ret = None # <<<<<<<<<<<<<< * return ret * */ __Pyx_INCREF(Py_None); __Pyx_DECREF(__pyx_v_ret); __pyx_v_ret = Py_None; } __pyx_L5:; /* "fontconfig.pyx":198 * else: * ret = None * return ret # <<<<<<<<<<<<<< * * def print_pattern(self): */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(__pyx_v_ret); __pyx_r = __pyx_v_ret; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_5); __Pyx_AddTraceback("fontconfig.FcFont.get_languages", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ret); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":200 * return ret * * def print_pattern(self): # <<<<<<<<<<<<<< * '''Print all infomation of the font in the wild''' * FcPatternPrint(self._pat) */ static PyObject *__pyx_pf_10fontconfig_6FcFont_4print_pattern(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static char __pyx_doc_10fontconfig_6FcFont_4print_pattern[] = "Print all infomation of the font in the wild"; static PyObject *__pyx_pf_10fontconfig_6FcFont_4print_pattern(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("print_pattern"); /* "fontconfig.pyx":202 * def print_pattern(self): * '''Print all infomation of the font in the wild''' * FcPatternPrint(self._pat) # <<<<<<<<<<<<<< * * def has_char(self, unicode ch): */ FcPatternPrint(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat); __pyx_r = Py_None; __Pyx_INCREF(Py_None); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":204 * FcPatternPrint(self._pat) * * def has_char(self, unicode ch): # <<<<<<<<<<<<<< * ''' * Check whether the font supports the given character */ static PyObject *__pyx_pf_10fontconfig_6FcFont_5has_char(PyObject *__pyx_v_self, PyObject *__pyx_v_ch); /*proto*/ static char __pyx_doc_10fontconfig_6FcFont_5has_char[] = "\n Check whether the font supports the given character\n\n :param ch: The character you want to check\n "; static PyObject *__pyx_pf_10fontconfig_6FcFont_5has_char(PyObject *__pyx_v_self, PyObject *__pyx_v_ch) { PyObject *__pyx_v_byte_ch = 0; FcChar32 __pyx_v_ucs4_ch; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations Py_ssize_t __pyx_t_1; int __pyx_t_2; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; char *__pyx_t_5; FcBool __pyx_t_6; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("has_char"); if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_ch), (&PyUnicode_Type), 1, "ch", 1))) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 204; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "fontconfig.pyx":214 * bytes byte_ch * FcChar32 ucs4_ch * if len(ch) != 1: # <<<<<<<<<<<<<< * raise ValueError('expected a character, but string of length %d found' % len(ch)) * byte_ch = ch.encode('utf8') */ if (unlikely(((PyObject *)__pyx_v_ch) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 214; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = PyUnicode_GET_SIZE(((PyObject *)__pyx_v_ch)); __pyx_t_2 = (__pyx_t_1 != 1); if (__pyx_t_2) { /* "fontconfig.pyx":215 * FcChar32 ucs4_ch * if len(ch) != 1: * raise ValueError('expected a character, but string of length %d found' % len(ch)) # <<<<<<<<<<<<<< * byte_ch = ch.encode('utf8') * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) != Match: */ if (unlikely(((PyObject *)__pyx_v_ch) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = PyUnicode_GET_SIZE(((PyObject *)__pyx_v_ch)); __pyx_t_3 = PyInt_FromSsize_t(__pyx_t_1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_10), __pyx_t_3); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_t_4)); __Pyx_GIVEREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_Raise(__pyx_t_4, 0, 0, 0); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L5; } __pyx_L5:; /* "fontconfig.pyx":216 * if len(ch) != 1: * raise ValueError('expected a character, but string of length %d found' % len(ch)) * byte_ch = ch.encode('utf8') # <<<<<<<<<<<<<< * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) != Match: * return False */ if (unlikely(((PyObject *)__pyx_v_ch) == Py_None)) { PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%s'", "encode"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = ((PyObject *)PyUnicode_AsEncodedString(__pyx_v_ch, __pyx_k__utf8, NULL)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); if (!(likely(PyBytes_CheckExact(((PyObject *)__pyx_t_4)))||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(((PyObject *)__pyx_t_4))->tp_name), 0))) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 216; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_byte_ch = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; /* "fontconfig.pyx":217 * raise ValueError('expected a character, but string of length %d found' % len(ch)) * byte_ch = ch.encode('utf8') * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) != Match: # <<<<<<<<<<<<<< * return False * FcUtf8ToUcs4((byte_ch), &ucs4_ch, len(byte_ch)) */ __pyx_t_2 = (FcPatternGetCharSet(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat, FC_CHARSET, 0, (&((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_cs)) != __pyx_v_10fontconfig_Match); if (__pyx_t_2) { /* "fontconfig.pyx":218 * byte_ch = ch.encode('utf8') * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) != Match: * return False # <<<<<<<<<<<<<< * FcUtf8ToUcs4((byte_ch), &ucs4_ch, len(byte_ch)) * if FcCharSetHasChar(self._cs, ucs4_ch): */ __Pyx_XDECREF(__pyx_r); __pyx_t_4 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 218; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; goto __pyx_L6; } __pyx_L6:; /* "fontconfig.pyx":219 * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) != Match: * return False * FcUtf8ToUcs4((byte_ch), &ucs4_ch, len(byte_ch)) # <<<<<<<<<<<<<< * if FcCharSetHasChar(self._cs, ucs4_ch): * return True */ __pyx_t_5 = PyBytes_AsString(((PyObject *)__pyx_v_byte_ch)); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 219; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(((PyObject *)__pyx_v_byte_ch) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[1]; __pyx_lineno = 219; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_byte_ch)); FcUtf8ToUcs4(((FcChar8 *)((char *)__pyx_t_5)), (&__pyx_v_ucs4_ch), __pyx_t_1); /* "fontconfig.pyx":220 * return False * FcUtf8ToUcs4((byte_ch), &ucs4_ch, len(byte_ch)) * if FcCharSetHasChar(self._cs, ucs4_ch): # <<<<<<<<<<<<<< * return True * else: */ __pyx_t_6 = FcCharSetHasChar(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_cs, __pyx_v_ucs4_ch); if (__pyx_t_6) { /* "fontconfig.pyx":221 * FcUtf8ToUcs4((byte_ch), &ucs4_ch, len(byte_ch)) * if FcCharSetHasChar(self._cs, ucs4_ch): * return True # <<<<<<<<<<<<<< * else: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_4 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 221; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; goto __pyx_L7; } /*else*/ { /* "fontconfig.pyx":223 * return True * else: * return False # <<<<<<<<<<<<<< * * def count_chars(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_4 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 223; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; } __pyx_L7:; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_AddTraceback("fontconfig.FcFont.has_char", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_byte_ch); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "fontconfig.pyx":225 * return False * * def count_chars(self): # <<<<<<<<<<<<<< * ''' * Count the amount of characters in font */ static PyObject *__pyx_pf_10fontconfig_6FcFont_6count_chars(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static char __pyx_doc_10fontconfig_6FcFont_6count_chars[] = "\n Count the amount of characters in font\n "; static PyObject *__pyx_pf_10fontconfig_6FcFont_6count_chars(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { FcChar32 __pyx_v_count; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("count_chars"); /* "fontconfig.pyx":229 * Count the amount of characters in font * ''' * cdef FcChar32 count = 0 # <<<<<<<<<<<<<< * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) == Match: * count = FcCharSetCount(self._cs) */ __pyx_v_count = 0; /* "fontconfig.pyx":230 * ''' * cdef FcChar32 count = 0 * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) == Match: # <<<<<<<<<<<<<< * count = FcCharSetCount(self._cs) * return count */ __pyx_t_1 = (FcPatternGetCharSet(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_pat, FC_CHARSET, 0, (&((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_cs)) == __pyx_v_10fontconfig_Match); if (__pyx_t_1) { /* "fontconfig.pyx":231 * cdef FcChar32 count = 0 * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) == Match: * count = FcCharSetCount(self._cs) # <<<<<<<<<<<<<< * return count */ __pyx_v_count = FcCharSetCount(((struct __pyx_obj_10fontconfig_FcFont *)__pyx_v_self)->_cs); goto __pyx_L5; } __pyx_L5:; /* "fontconfig.pyx":232 * if FcPatternGetCharSet(self._pat, FC_CHARSET, 0, &self._cs) == Match: * count = FcCharSetCount(self._cs) * return count # <<<<<<<<<<<<<< */ __Pyx_XDECREF(__pyx_r); __pyx_t_2 = __Pyx_PyInt_to_py_FcChar32(__pyx_v_count); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 232; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("fontconfig.FcFont.count_chars", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_tp_new_10fontconfig_FcList(PyTypeObject *t, PyObject *a, PyObject *k) { PyObject *o = (&PyList_Type)->tp_new(t, a, k); if (!o) return 0; return o; } static void __pyx_tp_dealloc_10fontconfig_FcList(PyObject *o) { (&PyList_Type)->tp_dealloc(o); } static PyObject *__pyx_sq_item_10fontconfig_FcList(PyObject *o, Py_ssize_t i) { PyObject *r; PyObject *x = PyInt_FromSsize_t(i); if(!x) return 0; r = Py_TYPE(o)->tp_as_mapping->mp_subscript(o, x); Py_DECREF(x); return r; } static PyMethodDef __pyx_methods_10fontconfig_FcList[] = { {__Pyx_NAMESTR("__delitem"), (PyCFunction)__pyx_pf_10fontconfig_6FcList_1__delitem, METH_O, __Pyx_DOCSTR(0)}, {0, 0, 0, 0} }; static PyNumberMethods __pyx_tp_as_number_FcList = { 0, /*nb_add*/ 0, /*nb_subtract*/ 0, /*nb_multiply*/ #if PY_MAJOR_VERSION < 3 0, /*nb_divide*/ #endif 0, /*nb_remainder*/ 0, /*nb_divmod*/ 0, /*nb_power*/ 0, /*nb_negative*/ 0, /*nb_positive*/ 0, /*nb_absolute*/ 0, /*nb_nonzero*/ 0, /*nb_invert*/ 0, /*nb_lshift*/ 0, /*nb_rshift*/ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ #if PY_MAJOR_VERSION < 3 0, /*nb_coerce*/ #endif 0, /*nb_int*/ #if PY_MAJOR_VERSION < 3 0, /*nb_long*/ #else 0, /*reserved*/ #endif 0, /*nb_float*/ #if PY_MAJOR_VERSION < 3 0, /*nb_oct*/ #endif #if PY_MAJOR_VERSION < 3 0, /*nb_hex*/ #endif 0, /*nb_inplace_add*/ 0, /*nb_inplace_subtract*/ 0, /*nb_inplace_multiply*/ #if PY_MAJOR_VERSION < 3 0, /*nb_inplace_divide*/ #endif 0, /*nb_inplace_remainder*/ 0, /*nb_inplace_power*/ 0, /*nb_inplace_lshift*/ 0, /*nb_inplace_rshift*/ 0, /*nb_inplace_and*/ 0, /*nb_inplace_xor*/ 0, /*nb_inplace_or*/ 0, /*nb_floor_divide*/ 0, /*nb_true_divide*/ 0, /*nb_inplace_floor_divide*/ 0, /*nb_inplace_true_divide*/ #if PY_VERSION_HEX >= 0x02050000 0, /*nb_index*/ #endif }; static PySequenceMethods __pyx_tp_as_sequence_FcList = { 0, /*sq_length*/ 0, /*sq_concat*/ 0, /*sq_repeat*/ __pyx_sq_item_10fontconfig_FcList, /*sq_item*/ 0, /*sq_slice*/ 0, /*sq_ass_item*/ 0, /*sq_ass_slice*/ 0, /*sq_contains*/ 0, /*sq_inplace_concat*/ 0, /*sq_inplace_repeat*/ }; static PyMappingMethods __pyx_tp_as_mapping_FcList = { 0, /*mp_length*/ __pyx_pf_10fontconfig_6FcList___getitem__, /*mp_subscript*/ 0, /*mp_ass_subscript*/ }; static PyBufferProcs __pyx_tp_as_buffer_FcList = { #if PY_MAJOR_VERSION < 3 0, /*bf_getreadbuffer*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getwritebuffer*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getsegcount*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getcharbuffer*/ #endif #if PY_VERSION_HEX >= 0x02060000 0, /*bf_getbuffer*/ #endif #if PY_VERSION_HEX >= 0x02060000 0, /*bf_releasebuffer*/ #endif }; static PyTypeObject __pyx_type_10fontconfig_FcList = { PyVarObject_HEAD_INIT(0, 0) __Pyx_NAMESTR("fontconfig.FcList"), /*tp_name*/ sizeof(struct __pyx_obj_10fontconfig_FcList), /*tp_basicsize*/ 0, /*tp_itemsize*/ __pyx_tp_dealloc_10fontconfig_FcList, /*tp_dealloc*/ 0, /*tp_print*/ 0, /*tp_getattr*/ 0, /*tp_setattr*/ #if PY_MAJOR_VERSION < 3 0, /*tp_compare*/ #else 0, /*reserved*/ #endif 0, /*tp_repr*/ &__pyx_tp_as_number_FcList, /*tp_as_number*/ &__pyx_tp_as_sequence_FcList, /*tp_as_sequence*/ &__pyx_tp_as_mapping_FcList, /*tp_as_mapping*/ 0, /*tp_hash*/ 0, /*tp_call*/ 0, /*tp_str*/ 0, /*tp_getattro*/ 0, /*tp_setattro*/ &__pyx_tp_as_buffer_FcList, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/ __Pyx_DOCSTR("\n FcList will return a FcFont object when you get an item\n in the list.\n "), /*tp_doc*/ 0, /*tp_traverse*/ 0, /*tp_clear*/ 0, /*tp_richcompare*/ 0, /*tp_weaklistoffset*/ 0, /*tp_iter*/ 0, /*tp_iternext*/ __pyx_methods_10fontconfig_FcList, /*tp_methods*/ 0, /*tp_members*/ 0, /*tp_getset*/ 0, /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ 0, /*tp_dictoffset*/ 0, /*tp_init*/ 0, /*tp_alloc*/ __pyx_tp_new_10fontconfig_FcList, /*tp_new*/ 0, /*tp_free*/ 0, /*tp_is_gc*/ 0, /*tp_bases*/ 0, /*tp_mro*/ 0, /*tp_cache*/ 0, /*tp_subclasses*/ 0, /*tp_weaklist*/ 0, /*tp_del*/ #if PY_VERSION_HEX >= 0x02060000 0, /*tp_version_tag*/ #endif }; static struct __pyx_vtabstruct_10fontconfig_FcFont __pyx_vtable_10fontconfig_FcFont; static PyObject *__pyx_tp_new_10fontconfig_FcFont(PyTypeObject *t, PyObject *a, PyObject *k) { struct __pyx_obj_10fontconfig_FcFont *p; PyObject *o = (*t->tp_alloc)(t, 0); if (!o) return 0; p = ((struct __pyx_obj_10fontconfig_FcFont *)o); p->__pyx_vtab = __pyx_vtabptr_10fontconfig_FcFont; p->file = ((PyObject*)Py_None); Py_INCREF(Py_None); p->_buf = ((PyObject*)Py_None); Py_INCREF(Py_None); if (__pyx_pf_10fontconfig_6FcFont___cinit__(o, a, k) < 0) { Py_DECREF(o); o = 0; } return o; } static void __pyx_tp_dealloc_10fontconfig_FcFont(PyObject *o) { struct __pyx_obj_10fontconfig_FcFont *p = (struct __pyx_obj_10fontconfig_FcFont *)o; { PyObject *etype, *eval, *etb; PyErr_Fetch(&etype, &eval, &etb); ++Py_REFCNT(o); __pyx_pf_10fontconfig_6FcFont_1__dealloc__(o); if (PyErr_Occurred()) PyErr_WriteUnraisable(o); --Py_REFCNT(o); PyErr_Restore(etype, eval, etb); } Py_XDECREF(((PyObject *)p->file)); Py_XDECREF(((PyObject *)p->_buf)); (*Py_TYPE(o)->tp_free)(o); } static int __pyx_tp_traverse_10fontconfig_FcFont(PyObject *o, visitproc v, void *a) { int e; struct __pyx_obj_10fontconfig_FcFont *p = (struct __pyx_obj_10fontconfig_FcFont *)o; if (p->file) { e = (*v)(p->file, a); if (e) return e; } if (p->_buf) { e = (*v)(p->_buf, a); if (e) return e; } return 0; } static int __pyx_tp_clear_10fontconfig_FcFont(PyObject *o) { struct __pyx_obj_10fontconfig_FcFont *p = (struct __pyx_obj_10fontconfig_FcFont *)o; PyObject* tmp; tmp = ((PyObject*)p->file); p->file = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->_buf); p->_buf = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); return 0; } static PyObject *__pyx_getprop_10fontconfig_6FcFont_file(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_4file___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_fontformat(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_10fontformat___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_foundry(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_7foundry___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_capability(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_10capability___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_slant(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_5slant___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_index(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_5index___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_weight(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_6weight___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_width(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_5width___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_spacing(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_7spacing___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_scalable(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_8scalable___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_outline(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_7outline___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_decorative(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_10decorative___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_family(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_6family___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_style(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_5style___get__(o); } static PyObject *__pyx_getprop_10fontconfig_6FcFont_fullname(PyObject *o, void *x) { return __pyx_pf_10fontconfig_6FcFont_8fullname___get__(o); } static PyMethodDef __pyx_methods_10fontconfig_FcFont[] = { {__Pyx_NAMESTR("get_languages"), (PyCFunction)__pyx_pf_10fontconfig_6FcFont_3get_languages, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_10fontconfig_6FcFont_3get_languages)}, {__Pyx_NAMESTR("print_pattern"), (PyCFunction)__pyx_pf_10fontconfig_6FcFont_4print_pattern, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_10fontconfig_6FcFont_4print_pattern)}, {__Pyx_NAMESTR("has_char"), (PyCFunction)__pyx_pf_10fontconfig_6FcFont_5has_char, METH_O, __Pyx_DOCSTR(__pyx_doc_10fontconfig_6FcFont_5has_char)}, {__Pyx_NAMESTR("count_chars"), (PyCFunction)__pyx_pf_10fontconfig_6FcFont_6count_chars, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_10fontconfig_6FcFont_6count_chars)}, {0, 0, 0, 0} }; static struct PyGetSetDef __pyx_getsets_10fontconfig_FcFont[] = { {(char *)"file", __pyx_getprop_10fontconfig_6FcFont_file, 0, 0, 0}, {(char *)"fontformat", __pyx_getprop_10fontconfig_6FcFont_fontformat, 0, 0, 0}, {(char *)"foundry", __pyx_getprop_10fontconfig_6FcFont_foundry, 0, 0, 0}, {(char *)"capability", __pyx_getprop_10fontconfig_6FcFont_capability, 0, 0, 0}, {(char *)"slant", __pyx_getprop_10fontconfig_6FcFont_slant, 0, 0, 0}, {(char *)"index", __pyx_getprop_10fontconfig_6FcFont_index, 0, 0, 0}, {(char *)"weight", __pyx_getprop_10fontconfig_6FcFont_weight, 0, 0, 0}, {(char *)"width", __pyx_getprop_10fontconfig_6FcFont_width, 0, 0, 0}, {(char *)"spacing", __pyx_getprop_10fontconfig_6FcFont_spacing, 0, 0, 0}, {(char *)"scalable", __pyx_getprop_10fontconfig_6FcFont_scalable, 0, 0, 0}, {(char *)"outline", __pyx_getprop_10fontconfig_6FcFont_outline, 0, 0, 0}, {(char *)"decorative", __pyx_getprop_10fontconfig_6FcFont_decorative, 0, 0, 0}, {(char *)"family", __pyx_getprop_10fontconfig_6FcFont_family, 0, 0, 0}, {(char *)"style", __pyx_getprop_10fontconfig_6FcFont_style, 0, 0, 0}, {(char *)"fullname", __pyx_getprop_10fontconfig_6FcFont_fullname, 0, 0, 0}, {0, 0, 0, 0, 0} }; static PyNumberMethods __pyx_tp_as_number_FcFont = { 0, /*nb_add*/ 0, /*nb_subtract*/ 0, /*nb_multiply*/ #if PY_MAJOR_VERSION < 3 0, /*nb_divide*/ #endif 0, /*nb_remainder*/ 0, /*nb_divmod*/ 0, /*nb_power*/ 0, /*nb_negative*/ 0, /*nb_positive*/ 0, /*nb_absolute*/ 0, /*nb_nonzero*/ 0, /*nb_invert*/ 0, /*nb_lshift*/ 0, /*nb_rshift*/ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ #if PY_MAJOR_VERSION < 3 0, /*nb_coerce*/ #endif 0, /*nb_int*/ #if PY_MAJOR_VERSION < 3 0, /*nb_long*/ #else 0, /*reserved*/ #endif 0, /*nb_float*/ #if PY_MAJOR_VERSION < 3 0, /*nb_oct*/ #endif #if PY_MAJOR_VERSION < 3 0, /*nb_hex*/ #endif 0, /*nb_inplace_add*/ 0, /*nb_inplace_subtract*/ 0, /*nb_inplace_multiply*/ #if PY_MAJOR_VERSION < 3 0, /*nb_inplace_divide*/ #endif 0, /*nb_inplace_remainder*/ 0, /*nb_inplace_power*/ 0, /*nb_inplace_lshift*/ 0, /*nb_inplace_rshift*/ 0, /*nb_inplace_and*/ 0, /*nb_inplace_xor*/ 0, /*nb_inplace_or*/ 0, /*nb_floor_divide*/ 0, /*nb_true_divide*/ 0, /*nb_inplace_floor_divide*/ 0, /*nb_inplace_true_divide*/ #if PY_VERSION_HEX >= 0x02050000 0, /*nb_index*/ #endif }; static PySequenceMethods __pyx_tp_as_sequence_FcFont = { 0, /*sq_length*/ 0, /*sq_concat*/ 0, /*sq_repeat*/ 0, /*sq_item*/ 0, /*sq_slice*/ 0, /*sq_ass_item*/ 0, /*sq_ass_slice*/ 0, /*sq_contains*/ 0, /*sq_inplace_concat*/ 0, /*sq_inplace_repeat*/ }; static PyMappingMethods __pyx_tp_as_mapping_FcFont = { 0, /*mp_length*/ 0, /*mp_subscript*/ 0, /*mp_ass_subscript*/ }; static PyBufferProcs __pyx_tp_as_buffer_FcFont = { #if PY_MAJOR_VERSION < 3 0, /*bf_getreadbuffer*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getwritebuffer*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getsegcount*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getcharbuffer*/ #endif #if PY_VERSION_HEX >= 0x02060000 0, /*bf_getbuffer*/ #endif #if PY_VERSION_HEX >= 0x02060000 0, /*bf_releasebuffer*/ #endif }; static PyTypeObject __pyx_type_10fontconfig_FcFont = { PyVarObject_HEAD_INIT(0, 0) __Pyx_NAMESTR("fontconfig.FcFont"), /*tp_name*/ sizeof(struct __pyx_obj_10fontconfig_FcFont), /*tp_basicsize*/ 0, /*tp_itemsize*/ __pyx_tp_dealloc_10fontconfig_FcFont, /*tp_dealloc*/ 0, /*tp_print*/ 0, /*tp_getattr*/ 0, /*tp_setattr*/ #if PY_MAJOR_VERSION < 3 0, /*tp_compare*/ #else 0, /*reserved*/ #endif __pyx_pf_10fontconfig_6FcFont_2__repr__, /*tp_repr*/ &__pyx_tp_as_number_FcFont, /*tp_as_number*/ &__pyx_tp_as_sequence_FcFont, /*tp_as_sequence*/ &__pyx_tp_as_mapping_FcFont, /*tp_as_mapping*/ 0, /*tp_hash*/ 0, /*tp_call*/ 0, /*tp_str*/ 0, /*tp_getattro*/ 0, /*tp_setattro*/ &__pyx_tp_as_buffer_FcFont, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ __Pyx_DOCSTR("\n FcF is a class of Fontconfig\n\n This class provides all infomation about font.\n "), /*tp_doc*/ __pyx_tp_traverse_10fontconfig_FcFont, /*tp_traverse*/ __pyx_tp_clear_10fontconfig_FcFont, /*tp_clear*/ 0, /*tp_richcompare*/ 0, /*tp_weaklistoffset*/ 0, /*tp_iter*/ 0, /*tp_iternext*/ __pyx_methods_10fontconfig_FcFont, /*tp_methods*/ 0, /*tp_members*/ __pyx_getsets_10fontconfig_FcFont, /*tp_getset*/ 0, /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ 0, /*tp_dictoffset*/ 0, /*tp_init*/ 0, /*tp_alloc*/ __pyx_tp_new_10fontconfig_FcFont, /*tp_new*/ 0, /*tp_free*/ 0, /*tp_is_gc*/ 0, /*tp_bases*/ 0, /*tp_mro*/ 0, /*tp_cache*/ 0, /*tp_subclasses*/ 0, /*tp_weaklist*/ 0, /*tp_del*/ #if PY_VERSION_HEX >= 0x02060000 0, /*tp_version_tag*/ #endif }; static PyMethodDef __pyx_methods[] = { {0, 0, 0, 0} }; #if PY_MAJOR_VERSION >= 3 static struct PyModuleDef __pyx_moduledef = { PyModuleDef_HEAD_INIT, __Pyx_NAMESTR("fontconfig"), __Pyx_DOCSTR(__pyx_k_11), /* m_doc */ -1, /* m_size */ __pyx_methods /* m_methods */, NULL, /* m_reload */ NULL, /* m_traverse */ NULL, /* m_clear */ NULL /* m_free */ }; #endif static __Pyx_StringTabEntry __pyx_string_tab[] = { {&__pyx_kp_s_1, __pyx_k_1, sizeof(__pyx_k_1), 0, 0, 1, 0}, {&__pyx_kp_s_10, __pyx_k_10, sizeof(__pyx_k_10), 0, 0, 1, 0}, {&__pyx_kp_s_12, __pyx_k_12, sizeof(__pyx_k_12), 0, 0, 1, 0}, {&__pyx_kp_s_2, __pyx_k_2, sizeof(__pyx_k_2), 0, 0, 1, 0}, {&__pyx_kp_s_3, __pyx_k_3, sizeof(__pyx_k_3), 0, 0, 1, 0}, {&__pyx_kp_s_7, __pyx_k_7, sizeof(__pyx_k_7), 0, 0, 1, 0}, {&__pyx_kp_s_8, __pyx_k_8, sizeof(__pyx_k_8), 0, 0, 1, 0}, {&__pyx_n_s__IndexError, __pyx_k__IndexError, sizeof(__pyx_k__IndexError), 0, 0, 1, 1}, {&__pyx_n_s__KeyError, __pyx_k__KeyError, sizeof(__pyx_k__KeyError), 0, 0, 1, 1}, {&__pyx_n_s__ValueError, __pyx_k__ValueError, sizeof(__pyx_k__ValueError), 0, 0, 1, 1}, {&__pyx_n_s____class__, __pyx_k____class__, sizeof(__pyx_k____class__), 0, 0, 1, 1}, {&__pyx_n_s____delitem__, __pyx_k____delitem__, sizeof(__pyx_k____delitem__), 0, 0, 1, 1}, {&__pyx_n_s____docformat__, __pyx_k____docformat__, sizeof(__pyx_k____docformat__), 0, 0, 1, 1}, {&__pyx_n_s____getitem__, __pyx_k____getitem__, sizeof(__pyx_k____getitem__), 0, 0, 1, 1}, {&__pyx_n_s____main__, __pyx_k____main__, sizeof(__pyx_k____main__), 0, 0, 1, 1}, {&__pyx_n_s____name__, __pyx_k____name__, sizeof(__pyx_k____name__), 0, 0, 1, 1}, {&__pyx_n_s____test__, __pyx_k____test__, sizeof(__pyx_k____test__), 0, 0, 1, 1}, {&__pyx_n_s____version__, __pyx_k____version__, sizeof(__pyx_k____version__), 0, 0, 1, 1}, {&__pyx_n_s__bool, __pyx_k__bool, sizeof(__pyx_k__bool), 0, 0, 1, 1}, {&__pyx_n_b__capability, __pyx_k__capability, sizeof(__pyx_k__capability), 0, 0, 0, 1}, {&__pyx_n_s__decode, __pyx_k__decode, sizeof(__pyx_k__decode), 0, 0, 1, 1}, {&__pyx_n_b__decorative, __pyx_k__decorative, sizeof(__pyx_k__decorative), 0, 0, 0, 1}, {&__pyx_n_s__encode, __pyx_k__encode, sizeof(__pyx_k__encode), 0, 0, 1, 1}, {&__pyx_n_b__family, __pyx_k__family, sizeof(__pyx_k__family), 0, 0, 0, 1}, {&__pyx_n_s__family, __pyx_k__family, sizeof(__pyx_k__family), 0, 0, 1, 1}, {&__pyx_n_s__file, __pyx_k__file, sizeof(__pyx_k__file), 0, 0, 1, 1}, {&__pyx_n_s__fontconfig, __pyx_k__fontconfig, sizeof(__pyx_k__fontconfig), 0, 0, 1, 1}, {&__pyx_n_b__fontformat, __pyx_k__fontformat, sizeof(__pyx_k__fontformat), 0, 0, 0, 1}, {&__pyx_n_b__foundry, __pyx_k__foundry, sizeof(__pyx_k__foundry), 0, 0, 0, 1}, {&__pyx_n_b__fullname, __pyx_k__fullname, sizeof(__pyx_k__fullname), 0, 0, 0, 1}, {&__pyx_n_b__index, __pyx_k__index, sizeof(__pyx_k__index), 0, 0, 0, 1}, {&__pyx_n_s__int, __pyx_k__int, sizeof(__pyx_k__int), 0, 0, 1, 1}, {&__pyx_n_b__lang, __pyx_k__lang, sizeof(__pyx_k__lang), 0, 0, 0, 1}, {&__pyx_n_s__lang, __pyx_k__lang, sizeof(__pyx_k__lang), 0, 0, 1, 1}, {&__pyx_n_b__outline, __pyx_k__outline, sizeof(__pyx_k__outline), 0, 0, 0, 1}, {&__pyx_n_s__query, __pyx_k__query, sizeof(__pyx_k__query), 0, 0, 1, 1}, {&__pyx_n_s__range, __pyx_k__range, sizeof(__pyx_k__range), 0, 0, 1, 1}, {&__pyx_n_s__restructuredtext, __pyx_k__restructuredtext, sizeof(__pyx_k__restructuredtext), 0, 0, 1, 1}, {&__pyx_n_b__scalable, __pyx_k__scalable, sizeof(__pyx_k__scalable), 0, 0, 0, 1}, {&__pyx_n_b__slant, __pyx_k__slant, sizeof(__pyx_k__slant), 0, 0, 0, 1}, {&__pyx_n_s__str, __pyx_k__str, sizeof(__pyx_k__str), 0, 0, 1, 1}, {&__pyx_n_b__style, __pyx_k__style, sizeof(__pyx_k__style), 0, 0, 0, 1}, {&__pyx_n_s__utf8, __pyx_k__utf8, sizeof(__pyx_k__utf8), 0, 0, 1, 1}, {&__pyx_n_b__weight, __pyx_k__weight, sizeof(__pyx_k__weight), 0, 0, 0, 1}, {&__pyx_n_b__width, __pyx_k__width, sizeof(__pyx_k__width), 0, 0, 0, 1}, {0, 0, 0, 0, 0, 0, 0} }; static int __Pyx_InitCachedBuiltins(void) { __pyx_builtin_range = __Pyx_GetName(__pyx_b, __pyx_n_s__range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 34; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_IndexError = __Pyx_GetName(__pyx_b, __pyx_n_s__IndexError); if (!__pyx_builtin_IndexError) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 85; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_KeyError = __Pyx_GetName(__pyx_b, __pyx_n_s__KeyError); if (!__pyx_builtin_KeyError) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 112; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_ValueError = __Pyx_GetName(__pyx_b, __pyx_n_s__ValueError); if (!__pyx_builtin_ValueError) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 215; __pyx_clineno = __LINE__; goto __pyx_L1_error;} return 0; __pyx_L1_error:; return -1; } static int __Pyx_InitCachedConstants(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants"); /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":22 * else: * l_lang = family * l_lang = l_lang.encode('utf-8') # <<<<<<<<<<<<<< * strpat = (l_lang) * pat = FcNameParse(strpat) */ __pyx_k_tuple_4 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 22; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_4)); __Pyx_INCREF(((PyObject *)__pyx_kp_s_3)); PyTuple_SET_ITEM(__pyx_k_tuple_4, 0, ((PyObject *)__pyx_kp_s_3)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_3)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_4)); /* "fontconfig.pyx":59 * :param file: The absolute path of the font * ''' * self.file = file.encode('utf8') # <<<<<<<<<<<<<< * self.init() * */ __pyx_k_tuple_5 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_5)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_5)); __Pyx_INCREF(((PyObject *)__pyx_n_s__utf8)); PyTuple_SET_ITEM(__pyx_k_tuple_5, 0, ((PyObject *)__pyx_n_s__utf8)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__utf8)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_5)); /* "fontconfig.pyx":78 * if PY_MAJOR_VERSION < 3: * # To avoid `UnicodeEncodeError` in Python 2 * family = self.family[0][1].encode('utf8') # <<<<<<<<<<<<<< * else: * family = self.family[0][1] */ __pyx_k_tuple_6 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_6)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_6)); __Pyx_INCREF(((PyObject *)__pyx_n_s__utf8)); PyTuple_SET_ITEM(__pyx_k_tuple_6, 0, ((PyObject *)__pyx_n_s__utf8)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__utf8)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_6)); /* "fontconfig.pyx":91 * property file: * def __get__(self): * return self.file.decode('utf8') # <<<<<<<<<<<<<< * * cdef object _getattr(self, bytes name, object type): */ __pyx_k_tuple_9 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_9)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_9)); __Pyx_INCREF(((PyObject *)__pyx_n_s__utf8)); PyTuple_SET_ITEM(__pyx_k_tuple_9, 0, ((PyObject *)__pyx_n_s__utf8)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__utf8)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_9)); __Pyx_RefNannyFinishContext(); return 0; __pyx_L1_error:; __Pyx_RefNannyFinishContext(); return -1; } static int __Pyx_InitGlobals(void) { if (__Pyx_InitStrings(__pyx_string_tab) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; return 0; __pyx_L1_error:; return -1; } #if PY_MAJOR_VERSION < 3 PyMODINIT_FUNC initfontconfig(void); /*proto*/ PyMODINIT_FUNC initfontconfig(void) #else PyMODINIT_FUNC PyInit_fontconfig(void); /*proto*/ PyMODINIT_FUNC PyInit_fontconfig(void) #endif { PyObject *__pyx_t_1 = NULL; __Pyx_RefNannyDeclarations #if CYTHON_REFNANNY __Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); if (!__Pyx_RefNanny) { PyErr_Clear(); __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); if (!__Pyx_RefNanny) Py_FatalError("failed to import 'refnanny' module"); } #endif __Pyx_RefNannySetupContext("PyMODINIT_FUNC PyInit_fontconfig(void)"); if ( __Pyx_check_binary_version() < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #ifdef __pyx_binding_PyCFunctionType_USED if (__pyx_binding_PyCFunctionType_init() < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif /*--- Library function declarations ---*/ /*--- Threads initialization code ---*/ #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS #ifdef WITH_THREAD /* Python build with threading support? */ PyEval_InitThreads(); #endif #endif /*--- Module creation code ---*/ #if PY_MAJOR_VERSION < 3 __pyx_m = Py_InitModule4(__Pyx_NAMESTR("fontconfig"), __pyx_methods, __Pyx_DOCSTR(__pyx_k_11), 0, PYTHON_API_VERSION); #else __pyx_m = PyModule_Create(&__pyx_moduledef); #endif if (!__pyx_m) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; #if PY_MAJOR_VERSION < 3 Py_INCREF(__pyx_m); #endif __pyx_b = PyImport_AddModule(__Pyx_NAMESTR(__Pyx_BUILTIN_MODULE_NAME)); if (!__pyx_b) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; if (__Pyx_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; /*--- Initialize various global constants etc. ---*/ if (unlikely(__Pyx_InitGlobals() < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_module_is_main_fontconfig) { if (__Pyx_SetAttrString(__pyx_m, "__name__", __pyx_n_s____main__) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; } /*--- Builtin init code ---*/ if (unlikely(__Pyx_InitCachedBuiltins() < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Constants init code ---*/ if (unlikely(__Pyx_InitCachedConstants() < 0)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Global init code ---*/ /*--- Variable export code ---*/ /*--- Function export code ---*/ /*--- Type init code ---*/ __pyx_type_10fontconfig_FcList.tp_base = (&PyList_Type); if (PyType_Ready(&__pyx_type_10fontconfig_FcList) < 0) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 19; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_SetAttrString(__pyx_m, "FcList", (PyObject *)&__pyx_type_10fontconfig_FcList) < 0) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 19; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_10fontconfig_FcList = &__pyx_type_10fontconfig_FcList; __pyx_vtabptr_10fontconfig_FcFont = &__pyx_vtable_10fontconfig_FcFont; __pyx_vtable_10fontconfig_FcFont.init = (PyObject *(*)(struct __pyx_obj_10fontconfig_FcFont *))__pyx_f_10fontconfig_6FcFont_init; __pyx_vtable_10fontconfig_FcFont._getattr = (PyObject *(*)(struct __pyx_obj_10fontconfig_FcFont *, PyObject *, PyObject *))__pyx_f_10fontconfig_6FcFont__getattr; __pyx_vtable_10fontconfig_FcFont._langen = (PyObject *(*)(struct __pyx_obj_10fontconfig_FcFont *, PyObject *))__pyx_f_10fontconfig_6FcFont__langen; if (PyType_Ready(&__pyx_type_10fontconfig_FcFont) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 39; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_SetVtable(__pyx_type_10fontconfig_FcFont.tp_dict, __pyx_vtabptr_10fontconfig_FcFont) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 39; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_SetAttrString(__pyx_m, "FcFont", (PyObject *)&__pyx_type_10fontconfig_FcFont) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 39; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_10fontconfig_FcFont = &__pyx_type_10fontconfig_FcFont; /*--- Type import code ---*/ /*--- Variable import code ---*/ /*--- Function import code ---*/ /*--- Execution code ---*/ /* "fontconfig.pyx":15 * :license: GPLv3+, see LICENSE for details. * ''' * __version__ = '0.5.0' # <<<<<<<<<<<<<< * __docformat__ = 'restructuredtext' * */ if (PyObject_SetAttr(__pyx_m, __pyx_n_s____version__, ((PyObject *)__pyx_kp_s_12)) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 15; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "fontconfig.pyx":16 * ''' * __version__ = '0.5.0' * __docformat__ = 'restructuredtext' # <<<<<<<<<<<<<< * * */ if (PyObject_SetAttr(__pyx_m, __pyx_n_s____docformat__, ((PyObject *)__pyx_n_s__restructuredtext)) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 16; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "/home/vayn/code/repository/my/python-fontconfig/fontconfig.pxi":7 * * # Short for FcResultMatch * cdef FcResult Match = FcResultMatch # <<<<<<<<<<<<<< * * cdef unicode FcChar8_to_unicode(FcChar8 *str): */ __pyx_v_10fontconfig_Match = FcResultMatch; /* "/home/vayn/code/repository/my/python-fontconfig/factory.pxi":6 * # @Date: 2011 10 30 15:30:18 CST * * def query(family='', lang=''): # <<<<<<<<<<<<<< * ''' * Produce font object list for the queried language */ __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_10fontconfig_query, NULL, __pyx_n_s__fontconfig); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 6; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__query, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 6; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "fontconfig.pyx":35 * * # Factory Function * query = query # <<<<<<<<<<<<<< * * # */ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__query); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 35; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__query, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 35; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "fontconfig.pyx":46 * ''' * # Fontconfig library version * __version__ = fc_version() # <<<<<<<<<<<<<< * * cdef: */ __pyx_t_1 = PyInt_FromLong(__pyx_f_10fontconfig_fc_version()); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem((PyObject *)__pyx_ptype_10fontconfig_FcFont->tp_dict, __pyx_n_s____version__, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyType_Modified(__pyx_ptype_10fontconfig_FcFont); /* "fontconfig.pyx":1 * # -*- coding: utf-8 # <<<<<<<<<<<<<< * ''' * Python-fontconfig */ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); if (PyObject_SetAttr(__pyx_m, __pyx_n_s____test__, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); if (__pyx_m) { __Pyx_AddTraceback("init fontconfig", __pyx_clineno, __pyx_lineno, __pyx_filename); Py_DECREF(__pyx_m); __pyx_m = 0; } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_ImportError, "init fontconfig"); } __pyx_L0:; __Pyx_RefNannyFinishContext(); #if PY_MAJOR_VERSION < 3 return; #else return __pyx_m; #endif } /* Runtime support code */ #if CYTHON_REFNANNY static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { PyObject *m = NULL, *p = NULL; void *r = NULL; m = PyImport_ImportModule((char *)modname); if (!m) goto end; p = PyObject_GetAttrString(m, (char *)"RefNannyAPI"); if (!p) goto end; r = PyLong_AsVoidPtr(p); end: Py_XDECREF(p); Py_XDECREF(m); return (__Pyx_RefNannyAPIStruct *)r; } #endif /* CYTHON_REFNANNY */ static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name) { PyObject *result; result = PyObject_GetAttr(dict, name); if (!result) { if (dict != __pyx_b) { PyErr_Clear(); result = PyObject_GetAttr(__pyx_b, name); } if (!result) { PyErr_SetObject(PyExc_NameError, name); } } return result; } static void __Pyx_RaiseDoubleKeywordsError( const char* func_name, PyObject* kw_name) { PyErr_Format(PyExc_TypeError, #if PY_MAJOR_VERSION >= 3 "%s() got multiple values for keyword argument '%U'", func_name, kw_name); #else "%s() got multiple values for keyword argument '%s'", func_name, PyString_AS_STRING(kw_name)); #endif } static int __Pyx_ParseOptionalKeywords( PyObject *kwds, PyObject **argnames[], PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, const char* function_name) { PyObject *key = 0, *value = 0; Py_ssize_t pos = 0; PyObject*** name; PyObject*** first_kw_arg = argnames + num_pos_args; while (PyDict_Next(kwds, &pos, &key, &value)) { name = first_kw_arg; while (*name && (**name != key)) name++; if (*name) { values[name-argnames] = value; } else { #if PY_MAJOR_VERSION < 3 if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key))) { #else if (unlikely(!PyUnicode_CheckExact(key)) && unlikely(!PyUnicode_Check(key))) { #endif goto invalid_keyword_type; } else { for (name = first_kw_arg; *name; name++) { #if PY_MAJOR_VERSION >= 3 if (PyUnicode_GET_SIZE(**name) == PyUnicode_GET_SIZE(key) && PyUnicode_Compare(**name, key) == 0) break; #else if (PyString_GET_SIZE(**name) == PyString_GET_SIZE(key) && _PyString_Eq(**name, key)) break; #endif } if (*name) { values[name-argnames] = value; } else { /* unexpected keyword found */ for (name=argnames; name != first_kw_arg; name++) { if (**name == key) goto arg_passed_twice; #if PY_MAJOR_VERSION >= 3 if (PyUnicode_GET_SIZE(**name) == PyUnicode_GET_SIZE(key) && PyUnicode_Compare(**name, key) == 0) goto arg_passed_twice; #else if (PyString_GET_SIZE(**name) == PyString_GET_SIZE(key) && _PyString_Eq(**name, key)) goto arg_passed_twice; #endif } if (kwds2) { if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; } else { goto invalid_keyword; } } } } } return 0; arg_passed_twice: __Pyx_RaiseDoubleKeywordsError(function_name, **name); goto bad; invalid_keyword_type: PyErr_Format(PyExc_TypeError, "%s() keywords must be strings", function_name); goto bad; invalid_keyword: PyErr_Format(PyExc_TypeError, #if PY_MAJOR_VERSION < 3 "%s() got an unexpected keyword argument '%s'", function_name, PyString_AsString(key)); #else "%s() got an unexpected keyword argument '%U'", function_name, key); #endif bad: return -1; } static void __Pyx_RaiseArgtupleInvalid( const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found) { Py_ssize_t num_expected; const char *more_or_less; if (num_found < num_min) { num_expected = num_min; more_or_less = "at least"; } else { num_expected = num_max; more_or_less = "at most"; } if (exact) { more_or_less = "exactly"; } PyErr_Format(PyExc_TypeError, "%s() takes %s %"PY_FORMAT_SIZE_T"d positional argument%s (%"PY_FORMAT_SIZE_T"d given)", func_name, more_or_less, num_expected, (num_expected == 1) ? "" : "s", num_found); } static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) { PyObject *local_type, *local_value, *local_tb; PyObject *tmp_type, *tmp_value, *tmp_tb; PyThreadState *tstate = PyThreadState_GET(); local_type = tstate->curexc_type; local_value = tstate->curexc_value; local_tb = tstate->curexc_traceback; tstate->curexc_type = 0; tstate->curexc_value = 0; tstate->curexc_traceback = 0; PyErr_NormalizeException(&local_type, &local_value, &local_tb); if (unlikely(tstate->curexc_type)) goto bad; #if PY_MAJOR_VERSION >= 3 if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) goto bad; #endif *type = local_type; *value = local_value; *tb = local_tb; Py_INCREF(local_type); Py_INCREF(local_value); Py_INCREF(local_tb); tmp_type = tstate->exc_type; tmp_value = tstate->exc_value; tmp_tb = tstate->exc_traceback; tstate->exc_type = local_type; tstate->exc_value = local_value; tstate->exc_traceback = local_tb; /* Make sure tstate is in a consistent state when we XDECREF these objects (XDECREF may run arbitrary code). */ Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); return 0; bad: *type = 0; *value = 0; *tb = 0; Py_XDECREF(local_type); Py_XDECREF(local_value); Py_XDECREF(local_tb); return -1; } static CYTHON_INLINE void __Pyx_RaiseNoneIndexingError(void) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is unsubscriptable"); } static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, const char *name, int exact) { if (!type) { PyErr_Format(PyExc_SystemError, "Missing type object"); return 0; } if (none_allowed && obj == Py_None) return 1; else if (exact) { if (Py_TYPE(obj) == type) return 1; } else { if (PyObject_TypeCheck(obj, type)) return 1; } PyErr_Format(PyExc_TypeError, "Argument '%s' has incorrect type (expected %s, got %s)", name, type->tp_name, Py_TYPE(obj)->tp_name); return 0; } static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb) { PyObject *tmp_type, *tmp_value, *tmp_tb; PyThreadState *tstate = PyThreadState_GET(); tmp_type = tstate->curexc_type; tmp_value = tstate->curexc_value; tmp_tb = tstate->curexc_traceback; tstate->curexc_type = type; tstate->curexc_value = value; tstate->curexc_traceback = tb; Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); } static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb) { PyThreadState *tstate = PyThreadState_GET(); *type = tstate->curexc_type; *value = tstate->curexc_value; *tb = tstate->curexc_traceback; tstate->curexc_type = 0; tstate->curexc_value = 0; tstate->curexc_traceback = 0; } #if PY_MAJOR_VERSION < 3 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { /* cause is unused */ Py_XINCREF(type); Py_XINCREF(value); Py_XINCREF(tb); /* First, check the traceback argument, replacing None with NULL. */ if (tb == Py_None) { Py_DECREF(tb); tb = 0; } else if (tb != NULL && !PyTraceBack_Check(tb)) { PyErr_SetString(PyExc_TypeError, "raise: arg 3 must be a traceback or None"); goto raise_error; } /* Next, replace a missing value with None */ if (value == NULL) { value = Py_None; Py_INCREF(value); } #if PY_VERSION_HEX < 0x02050000 if (!PyClass_Check(type)) #else if (!PyType_Check(type)) #endif { /* Raising an instance. The value should be a dummy. */ if (value != Py_None) { PyErr_SetString(PyExc_TypeError, "instance exception may not have a separate value"); goto raise_error; } /* Normalize to raise , */ Py_DECREF(value); value = type; #if PY_VERSION_HEX < 0x02050000 if (PyInstance_Check(type)) { type = (PyObject*) ((PyInstanceObject*)type)->in_class; Py_INCREF(type); } else { type = 0; PyErr_SetString(PyExc_TypeError, "raise: exception must be an old-style class or instance"); goto raise_error; } #else type = (PyObject*) Py_TYPE(type); Py_INCREF(type); if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { PyErr_SetString(PyExc_TypeError, "raise: exception class must be a subclass of BaseException"); goto raise_error; } #endif } __Pyx_ErrRestore(type, value, tb); return; raise_error: Py_XDECREF(value); Py_XDECREF(type); Py_XDECREF(tb); return; } #else /* Python 3+ */ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { if (tb == Py_None) { tb = 0; } else if (tb && !PyTraceBack_Check(tb)) { PyErr_SetString(PyExc_TypeError, "raise: arg 3 must be a traceback or None"); goto bad; } if (value == Py_None) value = 0; if (PyExceptionInstance_Check(type)) { if (value) { PyErr_SetString(PyExc_TypeError, "instance exception may not have a separate value"); goto bad; } value = type; type = (PyObject*) Py_TYPE(value); } else if (!PyExceptionClass_Check(type)) { PyErr_SetString(PyExc_TypeError, "raise: exception class must be a subclass of BaseException"); goto bad; } if (cause) { PyObject *fixed_cause; if (PyExceptionClass_Check(cause)) { fixed_cause = PyObject_CallObject(cause, NULL); if (fixed_cause == NULL) goto bad; } else if (PyExceptionInstance_Check(cause)) { fixed_cause = cause; Py_INCREF(fixed_cause); } else { PyErr_SetString(PyExc_TypeError, "exception causes must derive from " "BaseException"); goto bad; } if (!value) { value = PyObject_CallObject(type, NULL); } PyException_SetCause(value, fixed_cause); } PyErr_SetObject(type, value); if (tb) { PyThreadState *tstate = PyThreadState_GET(); PyObject* tmp_tb = tstate->curexc_traceback; if (tb != tmp_tb) { Py_INCREF(tb); tstate->curexc_traceback = tb; Py_XDECREF(tmp_tb); } } bad: return; } #endif static CYTHON_INLINE void __Pyx_ExceptionSave(PyObject **type, PyObject **value, PyObject **tb) { PyThreadState *tstate = PyThreadState_GET(); *type = tstate->exc_type; *value = tstate->exc_value; *tb = tstate->exc_traceback; Py_XINCREF(*type); Py_XINCREF(*value); Py_XINCREF(*tb); } static void __Pyx_ExceptionReset(PyObject *type, PyObject *value, PyObject *tb) { PyObject *tmp_type, *tmp_value, *tmp_tb; PyThreadState *tstate = PyThreadState_GET(); tmp_type = tstate->exc_type; tmp_value = tstate->exc_value; tmp_tb = tstate->exc_traceback; tstate->exc_type = type; tstate->exc_value = value; tstate->exc_traceback = tb; Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); } static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { if (s1 == s2) { /* as done by PyObject_RichCompareBool(); also catches the (interned) empty string */ return (equals == Py_EQ); } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { if (PyBytes_GET_SIZE(s1) != PyBytes_GET_SIZE(s2)) { return (equals == Py_NE); } else if (PyBytes_GET_SIZE(s1) == 1) { if (equals == Py_EQ) return (PyBytes_AS_STRING(s1)[0] == PyBytes_AS_STRING(s2)[0]); else return (PyBytes_AS_STRING(s1)[0] != PyBytes_AS_STRING(s2)[0]); } else { int result = memcmp(PyBytes_AS_STRING(s1), PyBytes_AS_STRING(s2), (size_t)PyBytes_GET_SIZE(s1)); return (equals == Py_EQ) ? (result == 0) : (result != 0); } } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { return (equals == Py_NE); } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { return (equals == Py_NE); } else { int result; PyObject* py_result = PyObject_RichCompare(s1, s2, equals); if (!py_result) return -1; result = __Pyx_PyObject_IsTrue(py_result); Py_DECREF(py_result); return result; } } static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { if (s1 == s2) { /* as done by PyObject_RichCompareBool(); also catches the (interned) empty string */ return (equals == Py_EQ); } else if (PyUnicode_CheckExact(s1) & PyUnicode_CheckExact(s2)) { if (PyUnicode_GET_SIZE(s1) != PyUnicode_GET_SIZE(s2)) { return (equals == Py_NE); } else if (PyUnicode_GET_SIZE(s1) == 1) { if (equals == Py_EQ) return (PyUnicode_AS_UNICODE(s1)[0] == PyUnicode_AS_UNICODE(s2)[0]); else return (PyUnicode_AS_UNICODE(s1)[0] != PyUnicode_AS_UNICODE(s2)[0]); } else { int result = PyUnicode_Compare(s1, s2); if ((result == -1) && unlikely(PyErr_Occurred())) return -1; return (equals == Py_EQ) ? (result == 0) : (result != 0); } } else if ((s1 == Py_None) & PyUnicode_CheckExact(s2)) { return (equals == Py_NE); } else if ((s2 == Py_None) & PyUnicode_CheckExact(s1)) { return (equals == Py_NE); } else { int result; PyObject* py_result = PyObject_RichCompare(s1, s2, equals); if (!py_result) return -1; result = __Pyx_PyObject_IsTrue(py_result); Py_DECREF(py_result); return result; } } static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_FcChar32(FcChar32 val) { const FcChar32 neg_one = (FcChar32)-1, const_zero = (FcChar32)0; const int is_unsigned = const_zero < neg_one; if ((sizeof(FcChar32) == sizeof(char)) || (sizeof(FcChar32) == sizeof(short))) { return PyInt_FromLong((long)val); } else if ((sizeof(FcChar32) == sizeof(int)) || (sizeof(FcChar32) == sizeof(long))) { if (is_unsigned) return PyLong_FromUnsignedLong((unsigned long)val); else return PyInt_FromLong((long)val); } else if (sizeof(FcChar32) == sizeof(PY_LONG_LONG)) { if (is_unsigned) return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val); else return PyLong_FromLongLong((PY_LONG_LONG)val); } else { int one = 1; int little = (int)*(unsigned char *)&one; unsigned char *bytes = (unsigned char *)&val; return _PyLong_FromByteArray(bytes, sizeof(FcChar32), little, !is_unsigned); } } static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject* x) { const unsigned char neg_one = (unsigned char)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(unsigned char) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(unsigned char)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to unsigned char" : "value too large to convert to unsigned char"); } return (unsigned char)-1; } return (unsigned char)val; } return (unsigned char)__Pyx_PyInt_AsUnsignedLong(x); } static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject* x) { const unsigned short neg_one = (unsigned short)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(unsigned short) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(unsigned short)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to unsigned short" : "value too large to convert to unsigned short"); } return (unsigned short)-1; } return (unsigned short)val; } return (unsigned short)__Pyx_PyInt_AsUnsignedLong(x); } static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject* x) { const unsigned int neg_one = (unsigned int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(unsigned int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(unsigned int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to unsigned int" : "value too large to convert to unsigned int"); } return (unsigned int)-1; } return (unsigned int)val; } return (unsigned int)__Pyx_PyInt_AsUnsignedLong(x); } static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject* x) { const char neg_one = (char)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(char) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(char)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to char" : "value too large to convert to char"); } return (char)-1; } return (char)val; } return (char)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject* x) { const short neg_one = (short)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(short) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(short)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to short" : "value too large to convert to short"); } return (short)-1; } return (short)val; } return (short)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject* x) { const int neg_one = (int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to int" : "value too large to convert to int"); } return (int)-1; } return (int)val; } return (int)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject* x) { const signed char neg_one = (signed char)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(signed char) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(signed char)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to signed char" : "value too large to convert to signed char"); } return (signed char)-1; } return (signed char)val; } return (signed char)__Pyx_PyInt_AsSignedLong(x); } static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject* x) { const signed short neg_one = (signed short)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(signed short) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(signed short)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to signed short" : "value too large to convert to signed short"); } return (signed short)-1; } return (signed short)val; } return (signed short)__Pyx_PyInt_AsSignedLong(x); } static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject* x) { const signed int neg_one = (signed int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(signed int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(signed int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to signed int" : "value too large to convert to signed int"); } return (signed int)-1; } return (signed int)val; } return (signed int)__Pyx_PyInt_AsSignedLong(x); } static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject* x) { const int neg_one = (int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to int" : "value too large to convert to int"); } return (int)-1; } return (int)val; } return (int)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject* x) { const unsigned long neg_one = (unsigned long)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned long"); return (unsigned long)-1; } return (unsigned long)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned long"); return (unsigned long)-1; } return (unsigned long)PyLong_AsUnsignedLong(x); } else { return (unsigned long)PyLong_AsLong(x); } } else { unsigned long val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (unsigned long)-1; val = __Pyx_PyInt_AsUnsignedLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject* x) { const unsigned PY_LONG_LONG neg_one = (unsigned PY_LONG_LONG)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned PY_LONG_LONG"); return (unsigned PY_LONG_LONG)-1; } return (unsigned PY_LONG_LONG)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned PY_LONG_LONG"); return (unsigned PY_LONG_LONG)-1; } return (unsigned PY_LONG_LONG)PyLong_AsUnsignedLongLong(x); } else { return (unsigned PY_LONG_LONG)PyLong_AsLongLong(x); } } else { unsigned PY_LONG_LONG val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (unsigned PY_LONG_LONG)-1; val = __Pyx_PyInt_AsUnsignedLongLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject* x) { const long neg_one = (long)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to long"); return (long)-1; } return (long)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to long"); return (long)-1; } return (long)PyLong_AsUnsignedLong(x); } else { return (long)PyLong_AsLong(x); } } else { long val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (long)-1; val = __Pyx_PyInt_AsLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject* x) { const PY_LONG_LONG neg_one = (PY_LONG_LONG)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to PY_LONG_LONG"); return (PY_LONG_LONG)-1; } return (PY_LONG_LONG)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to PY_LONG_LONG"); return (PY_LONG_LONG)-1; } return (PY_LONG_LONG)PyLong_AsUnsignedLongLong(x); } else { return (PY_LONG_LONG)PyLong_AsLongLong(x); } } else { PY_LONG_LONG val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (PY_LONG_LONG)-1; val = __Pyx_PyInt_AsLongLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject* x) { const signed long neg_one = (signed long)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed long"); return (signed long)-1; } return (signed long)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed long"); return (signed long)-1; } return (signed long)PyLong_AsUnsignedLong(x); } else { return (signed long)PyLong_AsLong(x); } } else { signed long val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (signed long)-1; val = __Pyx_PyInt_AsSignedLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject* x) { const signed PY_LONG_LONG neg_one = (signed PY_LONG_LONG)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed PY_LONG_LONG"); return (signed PY_LONG_LONG)-1; } return (signed PY_LONG_LONG)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed PY_LONG_LONG"); return (signed PY_LONG_LONG)-1; } return (signed PY_LONG_LONG)PyLong_AsUnsignedLongLong(x); } else { return (signed PY_LONG_LONG)PyLong_AsLongLong(x); } } else { signed PY_LONG_LONG val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (signed PY_LONG_LONG)-1; val = __Pyx_PyInt_AsSignedLongLong(tmp); Py_DECREF(tmp); return val; } } static int __Pyx_check_binary_version(void) { char ctversion[4], rtversion[4]; PyOS_snprintf(ctversion, 4, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION); PyOS_snprintf(rtversion, 4, "%s", Py_GetVersion()); if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) { char message[200]; PyOS_snprintf(message, sizeof(message), "compiletime version %s of module '%.100s' " "does not match runtime version %s", ctversion, __Pyx_MODULE_NAME, rtversion); #if PY_VERSION_HEX < 0x02050000 return PyErr_Warn(NULL, message); #else return PyErr_WarnEx(NULL, message, 1); #endif } return 0; } static int __Pyx_SetVtable(PyObject *dict, void *vtable) { #if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0) PyObject *ob = PyCapsule_New(vtable, 0, 0); #else PyObject *ob = PyCObject_FromVoidPtr(vtable, 0); #endif if (!ob) goto bad; if (PyDict_SetItemString(dict, "__pyx_vtable__", ob) < 0) goto bad; Py_DECREF(ob); return 0; bad: Py_XDECREF(ob); return -1; } #include "compile.h" #include "frameobject.h" #include "traceback.h" static void __Pyx_AddTraceback(const char *funcname, int __pyx_clineno, int __pyx_lineno, const char *__pyx_filename) { PyObject *py_srcfile = 0; PyObject *py_funcname = 0; PyObject *py_globals = 0; PyCodeObject *py_code = 0; PyFrameObject *py_frame = 0; #if PY_MAJOR_VERSION < 3 py_srcfile = PyString_FromString(__pyx_filename); #else py_srcfile = PyUnicode_FromString(__pyx_filename); #endif if (!py_srcfile) goto bad; if (__pyx_clineno) { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, __pyx_clineno); #else py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, __pyx_clineno); #endif } else { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromString(funcname); #else py_funcname = PyUnicode_FromString(funcname); #endif } if (!py_funcname) goto bad; py_globals = PyModule_GetDict(__pyx_m); if (!py_globals) goto bad; py_code = PyCode_New( 0, /*int argcount,*/ #if PY_MAJOR_VERSION >= 3 0, /*int kwonlyargcount,*/ #endif 0, /*int nlocals,*/ 0, /*int stacksize,*/ 0, /*int flags,*/ __pyx_empty_bytes, /*PyObject *code,*/ __pyx_empty_tuple, /*PyObject *consts,*/ __pyx_empty_tuple, /*PyObject *names,*/ __pyx_empty_tuple, /*PyObject *varnames,*/ __pyx_empty_tuple, /*PyObject *freevars,*/ __pyx_empty_tuple, /*PyObject *cellvars,*/ py_srcfile, /*PyObject *filename,*/ py_funcname, /*PyObject *name,*/ __pyx_lineno, /*int firstlineno,*/ __pyx_empty_bytes /*PyObject *lnotab*/ ); if (!py_code) goto bad; py_frame = PyFrame_New( PyThreadState_GET(), /*PyThreadState *tstate,*/ py_code, /*PyCodeObject *code,*/ py_globals, /*PyObject *globals,*/ 0 /*PyObject *locals*/ ); if (!py_frame) goto bad; py_frame->f_lineno = __pyx_lineno; PyTraceBack_Here(py_frame); bad: Py_XDECREF(py_srcfile); Py_XDECREF(py_funcname); Py_XDECREF(py_code); Py_XDECREF(py_frame); } static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) { while (t->p) { #if PY_MAJOR_VERSION < 3 if (t->is_unicode) { *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); } else if (t->intern) { *t->p = PyString_InternFromString(t->s); } else { *t->p = PyString_FromStringAndSize(t->s, t->n - 1); } #else /* Python 3+ has unicode identifiers */ if (t->is_unicode | t->is_str) { if (t->intern) { *t->p = PyUnicode_InternFromString(t->s); } else if (t->encoding) { *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); } else { *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); } } else { *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); } #endif if (!*t->p) return -1; ++t; } return 0; } /* Type Conversion Functions */ static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { int is_true = x == Py_True; if (is_true | (x == Py_False) | (x == Py_None)) return is_true; else return PyObject_IsTrue(x); } static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x) { PyNumberMethods *m; const char *name = NULL; PyObject *res = NULL; #if PY_VERSION_HEX < 0x03000000 if (PyInt_Check(x) || PyLong_Check(x)) #else if (PyLong_Check(x)) #endif return Py_INCREF(x), x; m = Py_TYPE(x)->tp_as_number; #if PY_VERSION_HEX < 0x03000000 if (m && m->nb_int) { name = "int"; res = PyNumber_Int(x); } else if (m && m->nb_long) { name = "long"; res = PyNumber_Long(x); } #else if (m && m->nb_int) { name = "int"; res = PyNumber_Long(x); } #endif if (res) { #if PY_VERSION_HEX < 0x03000000 if (!PyInt_Check(res) && !PyLong_Check(res)) { #else if (!PyLong_Check(res)) { #endif PyErr_Format(PyExc_TypeError, "__%s__ returned non-%s (type %.200s)", name, name, Py_TYPE(res)->tp_name); Py_DECREF(res); return NULL; } } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_TypeError, "an integer is required"); } return res; } static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { Py_ssize_t ival; PyObject* x = PyNumber_Index(b); if (!x) return -1; ival = PyInt_AsSsize_t(x); Py_DECREF(x); return ival; } static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { #if PY_VERSION_HEX < 0x02050000 if (ival <= LONG_MAX) return PyInt_FromLong((long)ival); else { unsigned char *bytes = (unsigned char *) &ival; int one = 1; int little = (int)*(unsigned char*)&one; return _PyLong_FromByteArray(bytes, sizeof(size_t), little, 0); } #else return PyInt_FromSize_t(ival); #endif } static CYTHON_INLINE size_t __Pyx_PyInt_AsSize_t(PyObject* x) { unsigned PY_LONG_LONG val = __Pyx_PyInt_AsUnsignedLongLong(x); if (unlikely(val == (unsigned PY_LONG_LONG)-1 && PyErr_Occurred())) { return (size_t)-1; } else if (unlikely(val != (unsigned PY_LONG_LONG)(size_t)val)) { PyErr_SetString(PyExc_OverflowError, "value too large to convert to size_t"); return (size_t)-1; } return (size_t)val; } #endif /* Py_PYTHON_H */ Python-fontconfig-0.5.1/cfontconfig.pxd0000644000175000017500000000615311654255335020136 0ustar vaynvayn00000000000000# -*- coding: utf-8 # @Author: Vincent Tsai # @Name: cfontconfig.pxd # @Date: 2011年 10月 28日 星期五 08:23:02 CST #----------------------------------------------- # Code #----------------------------------------------- cdef extern from "fontconfig/fontconfig.h": cdef char *FC_FAMILY 'FC_FAMILY' cdef char *FC_FAMILYLANG 'FC_FAMILYLANG' cdef char *FC_FILE 'FC_FILE' cdef char *FC_CHARSET 'FC_CHARSET' cdef char *FC_FOUNDRY 'FC_FOUNDRY' cdef char *FC_SLANT 'FC_SLANT' cdef char *FC_STYLE 'FC_STYLE' cdef char *FC_LANG 'FC_LANG' cdef char *FC_STYLELANG 'FC_STYLELANG' cdef char *FC_FULLNAME 'FC_FULLNAME' cdef char *FC_FULLNAMELANG 'FC_FULLNAMELANG' cdef char *FC_FONTFORMAT 'FC_FONTFORMAT' cdef char *FC_INDEX 'FC_INDEX' cdef char *FC_WEIGHT 'FC_WEIGHT' cdef char *FC_WIDTH 'FC_WIDTH' cdef char *FC_SPACING 'FC_SPACING' cdef char *FC_CAPABILITY 'FC_CAPABILITY' cdef char *FC_SCALABLE 'FC_SCALABLE' cdef char *FC_OUTLINE 'FC_OUTLINE' cdef char *FC_DECORATIVE 'FC_DECORATIVE' ctypedef unsigned char FcChar8 ctypedef unsigned int FcChar32 ctypedef bint FcBool ctypedef enum FcResult 'FcResult': FcResultMatch FcResultNoMatch FcResultTypeMismatch FcResultNoId FcResultOutOfMemory ctypedef struct FcType: pass ctypedef struct FcBlanks: pass ctypedef struct FcMatrix: pass ctypedef struct FcConfig: pass ctypedef struct FcCharSet: pass ctypedef struct FcLangSet: pass ctypedef struct FcFontSet: int nfont int sfont FcPattern **fonts ctypedef union FcValue_union: FcChar8 *s int i FcBool b double d FcMatrix *m FcCharSet *c void *f FcLangSet *l ctypedef struct FcValue: FcType type FcValue_union u ctypedef struct FcObjectSet: pass ctypedef struct FcPattern: pass FcPattern * FcPatternCreate() FcPattern * FcFreeTypeQuery(FcChar8 *, int, FcBlanks *, int *) FcPattern * FcNameParse(FcChar8 *) void FcPatternPrint(FcPattern *) void FcPatternDestroy(FcPattern *) FcBlanks * FcBlanksCreate() FcBlanks * FcConfigGetBlanks(FcConfig *) void FcBlanksDestroy(FcBlanks *) FcObjectSet * FcObjectSetCreate() FcObjectSet * FcObjectSetBuild(char *, ...) void FcObjectSetDestroy(FcObjectSet *) FcFontSet * FcFontSetCreate() FcFontSet * FcFontList(FcConfig *, FcPattern *, FcObjectSet *) void FcFontSetDestroy(FcFontSet *) FcCharSet * FcCharSetCreate() FcChar32 FcCharSetCount(FcCharSet *) void FcCharSetDestroy(FcCharSet *) FcBool FcCharSetHasChar(FcCharSet *, FcChar32) FcResult FcPatternGet(FcPattern *, char *, int, FcValue *) FcResult FcPatternGetCharSet(FcPattern *, char *, int, FcCharSet **) FcResult FcPatternGetString(FcPattern *, char *, int, FcChar8 **) FcResult FcPatternGetInteger(FcPattern *, char *, int, int *) FcResult FcPatternGetBool(FcPattern *, char *, int, FcBool *) FcStrSet * FcLangSetGetLangs(FcLangSet *ls) void FcValuePrint(FcValue) int FcGetVersion() int FcUtf8ToUcs4(FcChar8 *, FcChar32 *, int) cdef extern from "fcmore.h": ctypedef struct FcStrSet: int ref int num int size FcChar8 **strs