summaryrefslogtreecommitdiffstats
path: root/examples/example_dcopexport.py
blob: 7d4ae954c0a7d45444ed677075ea25a4e1b46d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python

"""
Copyright 2004 Jim Bublitz

Terms and Conditions

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Except as contained in this notice, the name of the copyright holder shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from the
copyright holder.
"""

# This is an example of a DCOP enabled application written in Python, using
# PyKDE and the dcopexport module. Taken from server.py example in kde-bindings
# which was written by Torben Weis and Julian Rockey

import sys
from tdecore import TDEApplication, TDECmdLineArgs, TDEAboutData
from dcopexport import DCOPExObj
from PyTQt.qt import TQString, TQStringList

"""
DCOPExObj provides all of the necessary machinery to DCOP-enable
an application: the 'process' method, marshalling/demarshalling,
and the 'features' method

To DCOP-enable an app,

    1. Add a class which subclasses DCOPExObj (ParrotObject in
       this case). Call the DCOPExObj.__init__ method with 'id'.
       If 'id' isn't specified, DCOP will assing a numerical id.
       'id' is the name of the object (eg, how it will be listed
       in kdcop, or returned with a dcopClient.remoteObjects call)

    2. Identify the methods/functions that will be exposed via
       DCOP - they don't have to be methods of the DCOPExObj
       class, as long as the DCOPExObj class can call them. Make
       sure they take/return types that DCOPExObj supports.

    3. For each method, call self.addMethod with the complete
       method signature (return type, name, list of argument
       types, but no argument names) as a string and the
       Python method/function that corresponds.

    4. That's it.
"""

# the class which will expose methods to DCOP - the methods do NOT
# need to be a member of this class.
class DeadParrotObject (DCOPExObj):
    def __init__ (self, id = 'dead parrot'):
        DCOPExObj.__init__ (self, id)

        # the methods available from this app via DCOP
        #     addMethod (<signature>, <Python method>)
        self.addMethod ('TQString getParrotType()', self.get_type)
        self.addMethod ('void setParrotType (TQString)', self.set_type)
        self.addMethod ('TQString squawk()', self.squawk)
        self.addMethod ('TQStringList adjectives()', self.adjectives)

        # set up object variables
        self.parrot_type = TQString ("Norwegian Blue")

    def get_type (self):
        return self.parrot_type

    def set_type (self, parrot_type):
        self.parrot_type = parrot_type

    def squawk (self):
        return "This parrot, a %s, is pining for the fjords" % (self.parrot_type)

    def adjectives (self):
        adjList = ["passed on", "is no more", "ceased to be", "expired", "gone to meet his maker",
                   "a stiff", "bereft of life", "rests in peace", "metabolic processes are now history",
                   "off the twig", "kicked the bucket", "shuffled off his mortal coil",
                   "run down his curtain", "joined the bleedin' choir invisible", "THIS IS AN EX-PARROT"]
        qadjList = TQStringList ()
        for adj in adjList:
            qadjList.append (adj)

        return qadjList

description = "A basic application template"
version     = "1.0"
aboutData   = TDEAboutData ("testdcopexport", "petshop",\
    version, description, TDEAboutData.License_GPL,\
    "(C) 2003 whoever the author is")

aboutData.addAuthor ("author1", "whatever they did", "email@somedomain")
aboutData.addAuthor ("author2", "they did something else", "another@email.address")

TDECmdLineArgs.init (sys.argv, aboutData)

TDECmdLineArgs.addCmdLineOptions ([("+files", "File to open")])

app   = TDEApplication ()
dcop  = app.dcopClient ()
appid = dcop.registerAs('petshop')
print "DCOP Application: %s starting" % appid

parrot         = DeadParrotObject()
another_parrot = DeadParrotObject('polly')

print """
Run kdcop and look for the 'petshop' application instance.

This program exports the 'deadParrot' and 'polly' objects.
Double-clicking those object's methods will allow you to get or set data.

To end the application, in kdcop choose the MainApplication-Interface
object and double-click the quit() method.
"""

app.exec_loop()