This file is indexed.

/usr/share/cain/fio/ContentHandlerSbml.py is in cain 1.10+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
"""SBML content handler."""

if __name__ == '__main__':
    import sys
    sys.path.insert(1, '..')

from state.Model import Model
from state.Value import Value
from state.ParameterEvaluation import KineticLawDecoratorSbml
from state.Species import Species
from state.Reaction import Reaction
from state.SpeciesReference import SpeciesReference

import re
import xml.sax.handler

# Pattern for (a**b).
_powerPattern = r'\((\w*?)\*\*(\w*?)\)'

def _powerInfixToFunction(matchobj):
    return 'pow(' + matchobj.group(1) + ',' + matchobj.group(2) + ')'

class ContentHandlerSbml(xml.sax.ContentHandler):
    """An SBML content handler.

    Inherit from the XML SAX content handler."""

    def __init__(self):
        xml.sax.ContentHandler.__init__(self)
        # The stack of the enclosing elements.
        self.elements = []
        # The stack of unhandled enclosing elements.
        self.unhandled = []
        self.errors = ''
        self.warnings = ''
        self.level = 0
        self.operators = []
        self.unary = False
        self.firstTerm = False
        self.content = ''
        # We support a subset of the elementary classical functions in MathML.
        # With more work, I could support more.
        # http://www.dessci.com/en/reference/mathml/content.htm
        self.elementaryClassicalFunctions = set(['exp', 'sin', 'cos', 'tan',
                                                 'sinh', 'cosh', 'tanh',
                                                 'asin', 'acos', 'atan'])
        # The natural logarithm is a special case because it has a different
        # name in C++.
        # Define the handled elements as a set for efficient checking.
        self.handled = set(['sbml',
                            'model',
                            'listOfParameters', 'listOfCompartments',
                            'listOfSpecies', 'listOfReactions',
                            'parameter', 'compartment', 'species', 'reaction',
                            'listOfReactants', 'listOfProducts',
                            'listOfModifiers', 'speciesReference',
                            'modifierSpeciesReference', 'kineticLaw',
                            'math', 'apply', 'times', 'divide', 'plus', 'minus',
                            'power', 'ci', 'cn', 'ln']) | \
                            self.elementaryClassicalFunctions
        # Do the same for the set of ignored tags.
        self.ignored = set(['notes', 'annotation'])
        # We don't explicitly maintain a stack of the ignored tags, we just
        # keep track of the stack size.
        self.ignoreInput = 0
        
    def startElement(self, name, attributes):
        if name in self.ignored:
            self.ignoreInput += 1
            return
        if self.ignoreInput:
            return

        if name == 'cain':
            # Fatal error.
            raise Exception('This is a Cain file. Directly open the file instead of using File->Import SBML.')
        
        if name in self.handled:
            self.elements.append(name)
        else:
            self.unhandled.append(name)
            self.warnings += 'Unhandled tag: ' + name + '\n'

        # If we are processing an unhandled tag, do nothing.
        if self.unhandled:
            return

        #
        # Kinetic law elements.
        #
        if name != 'kineticLaw' and 'kineticLaw' in self.elements:
            if name == 'listOfParameters':
                return
            elif name == 'parameter':
                # Append a parameter.
                if 'id' in attributes.keys():
                    id = attributes['id']
                else:
                    if 'name' in attributes.keys():
                        id = attributes['name']
                        self.errors += 'Missing id attribute in reaction parameter. Using name for id.\n'
                    else:
                        self.errors += 'Missing id attribute in reaction parameter.\n'
                        return
                # Ignore the name attribute.
                if 'value' in attributes.keys():
                    expression = attributes['value']
                else:
                    expression = ''
                self.kineticLawParameters[id] = Value('', expression)
            elif name == 'math':
                if self.elements[-2] != 'kineticLaw':
                    self.errors == 'Badly placed math tag.\n'
                    return
            elif name == 'apply':
                self.level += 1
                if self.level != 1:
                    if not self.firstTerm:
                        if not self.operators:
                            self.errors += 'No operator for apply block.\n'
                        else:
                            self.propensity += self.operators[-1]
                    self.propensity += '('
            # Binary operators.
            elif name == 'times':
                self.operators.append('*')
                self.firstTerm = True
            elif name == 'divide':
                self.operators.append('/')
                self.firstTerm = True
            elif name == 'plus':
                self.operators.append('+')
                self.firstTerm = True
            elif name == 'minus':
                self.operators.append('-')
                self.firstTerm = True
            elif name == 'power':
                self.operators.append('**')
                self.firstTerm = True
            # Unary functions.
            elif name in self.elementaryClassicalFunctions:
                self.propensity += name + '('
                self.unary = True
            elif name == 'ln':
                self.propensity += 'log('
                self.unary = True
            # Content Identifier
            elif name == 'ci':
                # The content should be empty.
                if self.content:
                    self.errors += 'Mishandled content in ci tag.\n'
            # Content Number
            elif name == 'cn':
                # The content should be empty.
                if self.content:
                    self.errors += 'Mishandled content in cn tag.\n'
            return
        
        #
        # The top level element.
        #
        if name == 'sbml':
            if 'level' in attributes.keys() and attributes['level'] == 1:
                self.errors += 'Error: SBML level 1 is not supported. Use level 2 or higher.\n'
            return
        #
        # Elements for the model.
        #
        elif name == 'model':
            # Start a new model.
            self.model = Model()
            # If an ID was specified, use it.
            if 'id' in attributes.keys():
                self.model.id = attributes['id']
            # Otherwise try the name.
            elif 'name' in attributes.keys():
                self.model.id = attributes['name']
            # If there is no ID or name, just use 'model'.
            else:
                self.model.id = 'model'
            if 'name' in attributes.keys():
                self.model.name = attributes['name']
        elif name == 'listOfParameters':
            return
        elif name == 'listOfCompartments':
            # Start the dictionary of compartments.
            self.model.compartments = {}
        elif name == 'listOfSpecies':
            # Start the dictionary of species and list of species identifiers.
            self.model.species = {}
            self.model.speciesIdentifiers = []
        elif name == 'listOfReactions':
            # Start the list of reactions.
            self.model.reactions = []
        elif name == 'parameter':
            # Append a parameter.
            if 'id' in attributes.keys():
                id = attributes['id']
            else:
                if 'name' in attributes.keys():
                    id = attributes['name']
                    self.errors += 'Missing id attribute in parameter. Using name for id.\n'
                else:
                    self.errors += 'Missing id attribute in parameter.\n'
                    return
            if 'name' in attributes.keys():
                parameterName = attributes['name']
            else:
                parameterName = ''
            if 'value' in attributes.keys():
                expression = attributes['value']
            else:
                expression = ''
            self.model.parameters[id] = Value(parameterName, expression)
        elif name == 'compartment':
            # Append a compartment.
            if not 'id' in attributes.keys():
                self.errors += 'Missing id attribute in compartment.\n'
                return
            if not attributes['id']:
                self.errors += 'Compartment identifier is empty.\n'
                return
            # No default name. Default size of 1.
            compartment = Value('', '1')
            if 'name' in attributes.keys():
                compartment.name = attributes['name']
            if 'size' in attributes.keys():
                compartment.expression = attributes['size']
            else:
                # Cain uses compartment sizes like parameter values. Thus
                # a value for the size is required.
                compartment.expression = '1'
            # Ignore spatialDimensions, constant, and outside.
            self.model.compartments[attributes['id']] = compartment
        elif name == 'species':
            # Append a species.
            if 'id' in attributes.keys():
                id = attributes['id']
            else:
                if 'name' in attributes.keys():
                    id = attributes['name']
                    self.errors += 'Missing id attribute in species. Using name for id.\n'
                else:
                    self.errors += 'Missing id attribute in species.\n'
                    return
            if not 'compartment' in attributes.keys():
                self.errors += 'Missing compartment attribute in species' +\
                    id + '.\n'
                return
            if 'name' in attributes.keys():
                speciesName = attributes['name']
            else:
                speciesName = ''
            if 'initialAmount' in attributes.keys():
                initialAmount = attributes['initialAmount']
            else:
                initialAmount = ''
            self.model.species[id] = \
                Species(attributes['compartment'], speciesName, initialAmount)
            self.model.speciesIdentifiers.append(id)
        elif name == 'reaction':
            # Append a reaction.
            if 'id' in attributes.keys():
                id = attributes['id']
            else:
                if 'name' in attributes.keys():
                    id = attributes['name']
                    self.errors += 'Missing id attribute in reaction. Using name for id.\n'
                else:
                    self.errors += 'Missing id attribute in reaction.\n'
                    return
            if 'name' in attributes.keys():
                reactionName = attributes['name']
            else:
                reactionName = ''
            # Construct the reaction.
            r = Reaction(id, reactionName, [], [], False, '0')
            # Note if the reaction is reversible. The reversible field is true
            # by default.
            if not 'reversible' in attributes.keys() or\
                    attributes['reversible'] == 'true':
                r.reversible = True
            self.model.reactions.append(r)
        elif name == 'listOfReactants':
            if not self.model.reactions:
                self.errors += 'Badly placed listOfReactants tag.\n'
                return
        elif name == 'listOfProducts':
            if not self.model.reactions:
                self.errors += 'Badly placed listOfProducts tag.\n'
                return
        elif name == 'listOfModifiers':
            if not self.model.reactions:
                self.errors += 'Badly placed listOfModifiers tag.\n'
                return
        elif name == 'speciesReference':
            # Add the reactant, product, or modifier to the current reaction.
            if not self.model.reactions:
                self.errors += 'Badly placed speciesReference tag.\n'
                return
            if not 'species' in attributes.keys():
                self.errors +=\
                    'Missing species attribute in speciesReference.\n'
                return
            if 'stoichiometry' in attributes.keys():
                stoichiometry = int(attributes['stoichiometry'])
            else:
                stoichiometry = 1
            # No need to record if the stoichiometry is zero.
            if stoichiometry != 0:
                sr = SpeciesReference(attributes['species'], stoichiometry)
                if self.elements[-2] == 'listOfReactants':
                    self.model.reactions[-1].reactants.append(sr)
                elif self.elements[-2] == 'listOfProducts':
                    self.model.reactions[-1].products.append(sr)
                else:
                    self.errors += 'Badly placed speciesReference tag.\n'
                    return
        elif name == 'modifierSpeciesReference':
            # Add to the reactants and products of the current reaction.
            if not self.model.reactions:
                self.errors += 'Badly placed modifierSpeciesReference tag.\n'
                return
            if not 'species' in attributes.keys():
                self.errors +=\
                    'Missing species attribute in modifierSpeciesReference.\n'
                return
            if self.elements[-2] != 'listOfModifiers':
                self.errors += 'Badly placed modifierSpeciesReference tag.\n'
                return
            sr = SpeciesReference(attributes['species'])
            self.model.reactions[-1].reactants.append(sr)
            self.model.reactions[-1].products.append(sr)
        elif name == 'kineticLaw':
            if self.elements[-2] != 'reaction':
                self.errors == 'Badly placed kineticLaw tag.\n'
                return
            # Start a propensity expression.
            self.propensity = ''
            # Start the dictionary of parameters for the kinetic law.
            self.kineticLawParameters = {}
            
    def endElement(self, name):
        if name in self.ignored:
            self.ignoreInput -= 1
            return
        if self.ignoreInput:
            return

        # If we are processing an unhandled tag, do nothing.
        if self.unhandled and name == self.unhandled[-1]:
            del self.unhandled[-1]
            return

        del self.elements[-1]

        #
        # Kinetic law elements.
        #
        if 'kineticLaw' in self.elements:
            if name == 'apply':
                if self.unary:
                    # Close a unary function if appropriate.
                    self.propensity += ')'
                    self.unary = False
                else:
                    # Otherwise note that we are finished with a binary
                    # operator.
                    del self.operators[-1]
                if self.level != 1:
                    self.propensity += ')'
                self.level -= 1
                self.firstTerm = False
            # Content Identifier or Content Number
            elif name == 'ci' or name == 'cn':
                if self.operators and not self.firstTerm:
                    self.propensity += self.operators[-1]
                self.propensity += self.content
                self.firstTerm = False
                self.content = ''
            return

        if name == 'listOfParameters':
            # The list of parameters may be empty.
            return
        elif name == 'listOfCompartments':
            if not self.model.compartments:
                self.errors += 'No compartments were defined.\n'
        elif name == 'listOfSpecies':
            if not (self.model.species and self.model.speciesIdentifiers):
                self.errors += 'No species were defined.\n'
        elif name == 'listOfReactions':
            if not self.model.reactions:
                self.errors += 'No reactions were defined.\n'
        elif name == 'kineticLaw':
            if not self.model.reactions:
                self.errors += 'Kinetic law without a reaction.\n'
                return
            # Remove unnecessary spaces.
            self.propensity = self.propensity.replace(' ', '')
            # Change the infix power operator to a function.
            self.propensity = re.sub(_powerPattern, _powerInfixToFunction,
                                     self.propensity)
            # Insert the parameters values.
            decorator = KineticLawDecoratorSbml(self.kineticLawParameters)
            self.model.reactions[-1].propensity = decorator(self.propensity)
                
    def characters(self, content):
        # If we are ignoring irrelevant tags, do nothing. Likewise for
        # unhandled tags.
        if self.ignoreInput or self.unhandled:
            return
        # Content Identifier or Content Number
        if self.elements[-1] == 'ci' or self.elements[-1] == 'cn':
            self.content += content

if __name__ == '__main__':
    from xml.sax import parse
    from fio.XmlWriter import XmlWriter
    from glob import glob
    
    def parseFile(name):
        handler = ContentHandlerSbml()
        parse(open(name, 'r'), handler)
        if handler.warnings:
            print('\nWarning for ' + name)
            print(handler.warnings)
        if handler.errors:
            print('\nError for ' + name)
            print(handler.errors)
        assert not handler.errors

    for name in sys.argv[1:]:
        parseFile(name)

    # CONTINUE
    #sys.exit(0)
    
    print('Parsing each file matching ../examples/sbml/dsmts31/*.xml...')
    for name in glob('../examples/sbml/dsmts31/*.xml'):
        parseFile(name)
        
    handler = ContentHandlerSbml()
    parse(open('../examples/sbml/dsmts31/dsmts-001-01.xml', 'r'),
          handler)
    assert not handler.errors
    writer = XmlWriter()
    writer.beginDocument()
    handler.model.writeXml(writer)
    writer.endDocument()