Diseño y desarrollo de aplicaciones en Python

    From The Document Foundation Wiki
    This page is a translated version of the page Macros/Python Design Guide and the translation is 24% complete.

    Introducción

    Esta página está destinada a los desarrolladores de macros de Python que deseen diseñar o colaborar en aplicaciones de LibreOffice. Los programadores de Python principiantes y experimentados pueden beneficiarse de las pautas de desarrollo de esta página. En la guía del programador de Python está disponible un acercamiento al uso de Python en LibreOffice.

    Los candidatos al proyecto LibreOffice pueden relacionarse con esta Wiki para participar.

    En esta página se asume que ya cuenta con cierta experiencia con Python y que se ha familiarizado al menos un poco con el conjunto de aplicaciones de LibreOffice. Contiene algunas muestras de código en Python; asimismo, se describe brevemente el uso de las extensiones de LibreOffice.

    Documentación

    (Estos recursos están escritos en lengua inglesa:)

    Dictiotopografía

    Lenguaje de modelado unificado (UML)

    Existen numerosas herramientas orientadas a UML. La siguiente es una lista arbitraria que se focaliza en aplicaciones libres y de código abierto e indica los principales lenguajes que maneja cada una.

    • ArgoUML : ArgoUML is running on any Java platforms and is available in ten languages (American English, British English, French, German, Italian, Portuguese, Spanish, Russian, Norwegian Bokmål and Chinese).
    • StarUML : StarUML is proposed for macOS 10.6+, Windows XP+ and Ubuntu (64 or 32-bit). StarUML has a rich feature list and is available in English only.
    • Umbrello : Multi-lingual Umbrello comes with GNU/Linux distributions, Windows (64 or 32-bit) and macOS.

    An extensive list of (Unified Modeling Language (UML) tools is available from Wikipedia.

    StarOffice Programmer's Tutorial details LibreOffice documents with the help of UML diagrams.

    Software Design Patterns are described in Wikipedia, sometimes accompanied with Python examples.

    Preámbulo

    Managing Python scripts with libraries

    Basic language macros development in LibreOffice comes with an Integrated Development Environment (IDE) that allows Basic macros to be edited, debugged and the like. Writing Python macros requires extra configuration steps in order to build your IDE of choice. In return you are provided with flexible design experience built upon your Python developing preferences or habits. Hereafter are IDE setup guidelines that range from beginner to advanced user.

    The handling of libraries and macros equivalent to that of Basic is not available for Python. However managing Python traditional modules and functions is quite possible, while the building of Python packages translates somehow partially to creating LibreOffice extensions or UNO packages. This page uses interchangeably modules for libraries and functions for macros. Python's terminology may be preferred in order to better accommodate Python's cultural usage.

    LibreOffice scripts come in three distincts flavors, they can be personal, shared or embedded in documents. Depending on their types and depending on the platform, they end up being stored in varying locations that are detailed in the AOO wiki article Python as a macro language.

    To manage Python scripts one can either use Windows libraries either resort to GNU/Linux file manager shortcuts. Thus .py files can be organised using casual drag & drop. A description of folder locations according to your environment to help you setting up libraries or file manager shortcuts can be found in the AOO wiki article Python as a macro language.

    Python projects can be arranged per IDE in a subsequent Windows library as illustrated.

    Alternative Python Script Organizer Menu

    The must-have Alternative Python Script Organizer extension leverages Python scripts management. You get greater Python scripts integration in LibreOffice by installing it. Once LibreOffice is restarted, check Tools menu for Macros - Organize python scripts sub-menu.

    This extension proposes various actions in order to manage Python scripts. The Execute button runs the selected macro. Actions available from Menu button depend on the selected element:

    Alternative Python Script Organizer Dialog
    • Create macro or library whenever you select personal, shared or document containers
    • Edit, Rename, Delete a macro or library
    • Embed a macro into a document from personal or shared containers
    • Substitute a document embedded library with a platform Python module
    • Export a document embedded library as a Python module
    • Debug the selected macro
    • Run Python interactive console also as known as Python interpreter

    Other information related to scripts organization and Python packages can be found in Debugging.

    Assigning scripts in LibreOffice details how to use scripts in LibreOffice application suite.

    Desarrollo

    Numerous applications make use of Python, either natively or specifically. LibreOffice embeds its own Python interpreter which permits to use the API through Universal Network Objects (UNO). Python language holds its own interpreter that can be used in parallel to that of LibreOffice. Both share a common base and are extensible, thus they provide identical features as well as they offer different ones. Native Python does not include the UNO interface to LibreOffice API. Reversely LibreOffice does not fully behave as native Python and does not extend its functionalities the exact same way as native Python. However, neither LibreOffice nor native Python facilitate application development with Python language for Writer, Calc, Impress, Draw, Base or Math.

    LibreOffice exists in 32- or 64-bit versions. The Integrated Development Environment (IDE) that accompany it requires to execute in the same context, both in 32- or 64-bit. Numerous IDEs exist from the easiest like IDLE, although disputable, to more elaborated ones like PyCharm or PyDev for Eclipse. The following list arbitrarily focuses on tools that are free, open source, multi platform and possibly multi lingual. Below Debugging chapter uses Pyzo and PyCharm solely for illustration. A list of IDEs for Python is available from Python.org site. A comparison of Integrated Development Environments (IDE) for numerous languages is available from Wikipedia.

    • Integrated Development and Learning Environment (IDLE) supports 32- and 64-bit. It is available on many platforms. IDLE is the recommended tool to learn Python.
    • Geany operates in 32- or 64-bit and is available in 43 different languages. It runs on GNU/Linux, *BSD, macOS, AIX v5.3, Solaris Express and Windows. Geany is light, fits small projects and supports LibreOffice Python interpreter.
    • PyCharm (free edition) supports Gnu/Linux, macOS and Windows platforms. It is available as 32bits, and apparently accommodates 64bits too. Along with numerous features accompanying Python development, PyCharm holds a Python debugger that's compatible with LibreOffice.
    • Pyzo is available for Linux, OS X and Windows in 10 different languages. Multiple Python interpreters can be configured, be they 32bits or 64bits. Pyzo offers debugging facilities.

    Here's a list of features available from these IDEs, LibreOffice Basic IDE does not offer some of them.

    Explorador de código fuente, coloración sintáctica

    Source exploration and syntax highlighting within IDLE, Geany and PyCharm are facilitating script edition. Geany and PyCharm support code folding. IDLE class browser does not support inner or embedded classes.

    Compleción de código

    Code completion assists the edition of Python scripts in IDLE, Geany and PyCharm.

    Depuración

    Debugging chapter below goes into this subject in more details.

    Coding guidelines (PEP)

    PyCharm IDE displays Python Enhancement Proposal (PEP) compliance checks.

    PyCharm Coding Conventions Assistant

    Python coding conventions and recommendations are available on the rightmost portion of the editor. This is particularly convenient for unexperienced programmers.

    Test-Driven Development (TDD) - draft

    </Unit testing>

    Control de versiones

    A source code local history comes with PyCharm as illustrated below:

    Source code updates local history

    Two copies of apso.py Python module are jointly displayed and respectively labelled v0.8.3 and v0.8.7. Version differences are precisely highlighted.

    PyCharm supports other version control solutions (VCS) such as Git, GitHub, Mercurial, Perforce or Subversion.

    Depuración

    En LibreOffice

    Xray - Methods of a Writer text object
    MRI - Properties, methods, services and interfaces for a Writer document
    Object Inspector - 'StarDesktop' properties, methods, supported services and exported interfaces

    One can edit and debug Python macros directly within LibreOffice with the help of Alternative Python Script Organizer extension. Managing libraries and modules is possible, as well as selecting your preferred editor without leaving LibreOffice.

    Developing out of LibreOffice is equally feasible, thus debugging becomes possible. Remote coding and testing using an Integrated Development Environment (IDE) brings more features detailed hereafter.

    Here are three extensions for programmers to benefit from in those two contexts. They can be used regardless of the programming language, be it LibreOffice Basic, Python, JavaScript or BeanShell. All three extend the API's introspection from LibreOffice suite.

    Extensiones útiles

    It is not always clear at design time which services a UNO object actually supports. However extensions that help the developer to inspect arbitrary UNO-Objects exist, but are not made available from the extensions' catalog, with the exception of MRI. They're built upon LibreOffice API reflection ability.

    • X-Ray inspects LibreOffice API objects. It displays the properties, methods, services, interfaces which are provided by an object variable. X-Ray is available in french, english, german, spanish, czech, polish and russian. X-Ray is written in Basic.
    • MRI (My Reflection and Introspection) is an introspection tool of UNO objects, written in Python. Its features are similar to that of X-Ray. MRI is available in english only. Note: Extensions' catalog MRI copy is outdated.
    • Object Inspector The Object Inspector extension displays the total capabilities of an UNO-object such as all supported services, exported interfaces, and their respective methods and properties in a TreeView window. The Object Inspector is written in Java and is available only in english.
    • APSO The Alternate Python Script Organizer extension nicely integrates objects inspection in its debugger. It uses either X-Ray either MRI.

    Uso de macros escritas en Python

    Python macros in LibreOffice are stored in numerous locations and come in varied species as explained in Python as a macro language. Scripts can be personal, shared, stored in extensions, integrated in packages or embedded in documents. This diversity imply different uses or constraints.

    • In a document each module is autonomous, no module import.
    Refer to Python import online/local help in order to circumvent this
    • Calling a Basic or Python extension from an embedded Python module is possible.
    • Python scripts in <user>\python\pythonpath can be imported by embedded modules or by <user>\python scripts.
    • No Basic support from an IDE: No X-Ray
    Basic presence is depending on the bridge type established with the IDE.
    • Python and Java are supported when invoked from an IDE: MRI, Object Inspector can be used.

    import uno
    def mri(target):
        ctx = uno.getComponentContext()
        mri = ctx.ServiceManager.createInstanceWithContext(
            "mytools.Mri",ctx)
        mri.inspect(target)
        
    if __name__ == '__main__':
        def Mri_test():
            document = XSCRIPTCONTEXT.getDocument()
            mri(document)
     
        Mri_test()

    Stopping a running macro with X-Ray :

    import uno
    from com.sun.star.uno import RuntimeException as _rtex
    
    def xray(myObject):
      try:
        sm = uno.getComponentContext().ServiceManager
        mspf = sm.createInstanceWithContext("com.sun.star.script.provider.MasterScriptProviderFactory", uno.getComponentContext())
        scriptPro = mspf.createScriptProvider("")
        xScript = scriptPro.getScript("vnd.sun.star.script:XrayTool._Main.Xray?language=Basic&location=application")
        xScript.invoke((myObject,), (), ())
        return
      except:
         raise _rtex("\n<span lang="en" dir="ltr" class="mw-content-ltr">Basic library Xray is not installed</span>", uno.getComponentContext())
    
    # ___________  ejemplo de uso  _______________ 
    
    def demoXray(): 
      """ <span lang="en" dir="ltr" class="mw-content-ltr">example : using xray in a Writer document</span> """ 
      
      xTextDoc = XSCRIPTCONTEXT.getDocument() 
      xText = xTextDoc.Text 
      xray(xText)
      xray("La demostración ha finalizado") 
    
    g_exportedScripts = demoXray,

    Displaying UNO objets in a tree view using Object Inspector :

    import uno
    def inspectObject( obj, title="Inspector de objetos" ):
    	ctx = uno.getComponentContext()
    	oi = ctx.ServiceManager.createInstanceWithContext("org.openoffice.InstanceInspector", ctx)
    	if oi is None:  # <span lang="en" dir="ltr" class="mw-content-ltr">i.e. InstanceInspector is not installed or deactivated</span>
    		return  # salir silenciosamente
    	oi.inspect( obj, title )
    def exObjInspector():
    	doc = XSCRIPTCONTEXT.getDocument()
    	dsk = XSCRIPTCONTEXT.getDesktop()
    	inspectObject(doc)
    	inspectObject(dsk, title="StarDesktop")

    Desde un EID mediante el intérprete de Python de LibreOffice

    Developing Python macros within an IDE requires the use of LibreOffice interpreter. Native Python comes with IDLE's interpreter that's not compatible with UNO objects. While selecting a Python IDE programmers benefit from numerous features such as class browser, syntax highlighting, code completion, coding standards enforcement, test driven development, debugging, version control and many more.

    The setting of LibreOffice Python interpreter for Geany, PyCharm or Pyzo is illustrated in Python IDE Basics.

    In order to execute a script from <user>\python or from <user>\python\pythonpath, a communication must be established between the IDE and LibreOffice. UNO objects are not reachable without such a bridge. Once a communication is in place, the IDE and LibreOffice operate together. The following links document that process:

    IDE_utils module borrows from these resources and provides LibreOffice Python macro simple enablement for IDEs.

    Uso de secuencias de órdenes escritas en Python

    • ...calling Python packages...

    Ejecución externa con Geany

    Geany initiates the opening of a window within LibreOffice. Geany EDI invokes info() function, which utilizes ..awt.createMessageBox API method defined in the SDK. The user script is named SysInfo.py.

    Geany executes info() function that calls ..awt.createMessageBox() API method defined in SDK - Script name is <user>\SysInfo.py

    Depuración con PyZo

    PyUNO Workspace is an object introspection Pyzo IDE plugin for PyUNO and LibreOffice UNO API:

    Pyzo runs and stops into <user>\..\IDE_utils.py
    Pyzo runs and stops into <user>\..\IDE_utils.py

    Depuración con PyCharm

    PyCharm's debugger displays UNO objects, Python classes or objects:

    Watching UNO objects UNO, Python classes or variables

    Depuración con APSO

    The Alternative Python Script Organizer extension allows step by step execution, as well as stack trace display and UNO objects introspection, with xRay or MRI.

    APSO debug window

    Salida a consolas

    Python scripts can be prototyped by use of the Python shell and its Read Execute Print Loop (REPL) process. The Alternative Python Script Organizer integrates this facility, which is part of LibreOffice Python.
    APSO console

    Consola interactiva de Python

    The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as LibreOfficeDev Python modules documentation can be obtained from the terminal. LibreOffice online/local details how to run Python interactive console.
    Python shell

    Consola en Windows

    By default, there is no default stdout on Windows. What is sent by function “print” will not be visible anywhere. To get a console to be used as stdout:

    • Start LibreOffice using soffice.com instead of soffice.exe:

    Python scripts print() statements appear in the console until LibreOffice closes. In the absence of the console, print() statements are silent.

    This is available from LibreOffice release 6.3. Prior to this release, follow these instructions:

    1. Close LibreOffice.
    2. Download Visual Studio Express 2010 C++ (I assume it may work with other versions) and install it.
    3. Open the Console for Visual Studio.
    4. Type:

    editbin.exe /subsystem:console "C:\Program Files\LibreOffice 5\program\soffice.exe"
    editbin.exe /subsystem:console "C:\Program Files\LibreOffice 5\program\soffice.bin"

    Now, a console will be shown when you open LibreOffice. It will be the stdout for the “print” command. And you can get Python errors while LO is running if you use traceback.

    import traceback
    […]
    try:
        […]
        except:
            traceback.print_exc()

    But syntax errors still won’t be reported there.

    Handling Exceptions - draft

    Building Dialogs - draft

    cf. UNODiT UNO Dialog Tools Find below a few listed references t get started:

    Macros orientadas a sucesos

    Regionalización

    Dispatcher commands - draft

    Interface-oriented programming in *Office, Christopher Bourez (2015)

    Creating extensions - draft

    Building a Service

    Building a Calc Add-In

    Building and Extension

    Miscellaneous - draft

    Document module import

    cf. Importing Python modules in online help

    Python package vs. LibreOffice Extension

    (cf. french draft version up to now)

    Static Properties or Methods

    Q: How about the behaviour of Python global attribute?

    Using Git with PyCharm - draft