Welcome to mirror list, hosted at ThFree Co, Russian Federation.

component.py « parser « pclc « src - github.com/ianj-als/pcl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 229367bb7b171f73226e47825e6baab70dcc28be (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
#
# Copyright Capita Translation and Interpreting 2013
#
# This file is part of Pipeline Creation Language (PCL).
# 
# Pipeline Creation Language (PCL) 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.
# 
# Pipeline Creation Language (PCL) 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 Pipeline Creation Language (PCL).  If not, see <http://www.gnu.org/licenses/>.
#
from entity import Entity

class Component(Entity):
    def __init__(self,
                 filename,
                 lineno,
                 identifier,
                 inputs,
                 outputs,
                 configuration,
                 declarations,
                 definition):
        Entity.__init__(self, filename, lineno)
        self.identifier = identifier
        self.inputs = inputs
        self.outputs = outputs
        self.configuration = configuration
        self.declarations = declarations
        self.definition = definition

    def accept(self, visitor):
        visitor.visit(self)
        for decl in self.declarations:
            decl.accept(visitor)
        self.definition.accept(visitor)

    def __str__(self):
        return str(self.identifier)

    def __repr__(self):
        return "<Component:\n\tname = %s,\n\tinputs = %s,\n\toutputs = %s," \
               "\n\tconfiguration = %s,\n\tdeclarations = %s\n\tdefinition = %s" \
               "\n\tentity = %s>" % \
               (self.identifier.__repr__(), self.inputs.__repr__(),
                self.outputs.__repr__(), self.configuration.__repr__(),
                self.declarations.__repr__(), self.definition.__repr__(),
                super(Component, self).__repr__())