Coverage for skema/program_analysis/CAST2FN/model/cast/model_if.py: 73%
67 statements
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
1# coding: utf-8
3"""
4 SKEMA Common Abstract Syntax Tree (CAST)
6 This document outlines the structure of the CAST that will be used as a generic representation of the semantics of a program written in any language. This will be used when creating functions networks from programs using the SKEMA Program Analysis pipeline. __Generating Class Structure__ To automatically generate Python or Java models corresponding to this document, you can use [swagger-codegen](https://swagger.io/tools/swagger-codegen/). We can use this to generate client code based off of this spec that will also generate the class structure. 1. Install via the method described for your operating system [here](https://github.com/swagger-api/swagger-codegen#Prerequisites). Make sure to install a version after 3.0 that will support openapi 3. 2. Run swagger-codegen with the options in the example below. The URL references where the yaml for this documentation is stored on github. Make sure to replace CURRENT_VERSION with the correct version. To generate Java classes rather, change the `-l python` to `-l java`. Change the value to the `-o` option to the desired output location. ``` swagger-codegen generate -l python -o ./client -i https://raw.githubusercontent.com/ml4ai/automates-v2/master/docs/source/cast_v{CURRENT_VERSION}.yaml ``` 3. Once it executes, the client code will be generated at your specified location. For python, the classes will be located in `$OUTPUT_PATH/swagger_client/models/`. For java, they will be located in `$OUTPUT_PATH/src/main/java/io/swagger/client/model/` # noqa: E501
8 OpenAPI spec version: 1.2.6
10 Generated by: https://github.com/swagger-api/swagger-codegen.git
11"""
13import pprint
14import re # noqa: F401
16import six
17from skema.program_analysis.CAST2FN.model.cast.ast_node import AstNode # noqa: F401,E501
19class ModelIf(AstNode):
20 """NOTE: This class is auto generated by the swagger code generator program.
22 Do not edit the class manually.
23 """
24 """
25 Attributes:
26 swagger_types (dict): The key is attribute name
27 and the value is attribute type.
28 attribute_map (dict): The key is attribute name
29 and the value is json key in definition.
30 """
31 swagger_types = {
32 'expr': 'AstNode',
33 'body': 'list[AstNode]',
34 'orelse': 'list[AstNode]'
35 }
36 if hasattr(AstNode, "swagger_types"):
37 swagger_types.update(AstNode.swagger_types)
39 attribute_map = {
40 'expr': 'expr',
41 'body': 'body',
42 'orelse': 'orelse'
43 }
44 if hasattr(AstNode, "attribute_map"):
45 attribute_map.update(AstNode.attribute_map)
47 def __init__(self, expr=None, body=None, orelse=None, *args, **kwargs): # noqa: E501
48 """ModelIf - a model defined in Swagger""" # noqa: E501
49 self._expr = None
50 self._body = None
51 self._orelse = None
52 self.discriminator = None
53 if expr is not None:
54 self.expr = expr
55 if body is not None:
56 self.body = body
57 if orelse is not None:
58 self.orelse = orelse
59 AstNode.__init__(self, *args, **kwargs)
61 @property
62 def expr(self):
63 """Gets the expr of this ModelIf. # noqa: E501
66 :return: The expr of this ModelIf. # noqa: E501
67 :rtype: AstNode
68 """
69 return self._expr
71 @expr.setter
72 def expr(self, expr):
73 """Sets the expr of this ModelIf.
76 :param expr: The expr of this ModelIf. # noqa: E501
77 :type: AstNode
78 """
80 self._expr = expr
82 @property
83 def body(self):
84 """Gets the body of this ModelIf. # noqa: E501
87 :return: The body of this ModelIf. # noqa: E501
88 :rtype: list[AstNode]
89 """
90 return self._body
92 @body.setter
93 def body(self, body):
94 """Sets the body of this ModelIf.
97 :param body: The body of this ModelIf. # noqa: E501
98 :type: list[AstNode]
99 """
101 self._body = body
103 @property
104 def orelse(self):
105 """Gets the orelse of this ModelIf. # noqa: E501
108 :return: The orelse of this ModelIf. # noqa: E501
109 :rtype: list[AstNode]
110 """
111 return self._orelse
113 @orelse.setter
114 def orelse(self, orelse):
115 """Sets the orelse of this ModelIf.
118 :param orelse: The orelse of this ModelIf. # noqa: E501
119 :type: list[AstNode]
120 """
122 self._orelse = orelse
124 def to_dict(self):
125 """Returns the model properties as a dict"""
126 result = {}
128 for attr, _ in six.iteritems(self.swagger_types):
129 value = getattr(self, attr)
130 if isinstance(value, list):
131 result[attr] = list(map(
132 lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
133 value
134 ))
135 elif hasattr(value, "to_dict"):
136 result[attr] = value.to_dict()
137 elif isinstance(value, dict):
138 result[attr] = dict(map(
139 lambda item: (item[0], item[1].to_dict())
140 if hasattr(item[1], "to_dict") else item,
141 value.items()
142 ))
143 else:
144 result[attr] = value
145 if issubclass(ModelIf, dict):
146 for key, value in self.items():
147 result[key] = value
149 return result
151 def to_str(self):
152 """Returns the string representation of the model"""
153 return pprint.pformat(self.to_dict())
155 def __repr__(self):
156 """For `print` and `pprint`"""
157 return self.to_str()
159 def __eq__(self, other):
160 """Returns true if both objects are equal"""
161 if not isinstance(other, ModelIf):
162 return False
164 return self.__dict__ == other.__dict__
166 def __ne__(self, other):
167 """Returns true if both objects are not equal"""
168 return not self == other