Coverage for skema/program_analysis/CAST2FN/model/cast/call.py: 95%

76 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2024-04-30 17:15 +0000

1# coding: utf-8 

2 

3""" 

4 SKEMA Common Abstract Syntax Tree (CAST) 

5 

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 

7 

8 OpenAPI spec version: 1.2.6 

9  

10 Generated by: https://github.com/swagger-api/swagger-codegen.git 

11""" 

12 

13import pprint 

14import re # noqa: F401 

15 

16import six 

17from skema.program_analysis.CAST2FN.model.cast.ast_node import AstNode # noqa: F401,E501 

18 

19class Call(AstNode): 

20 """NOTE: This class is auto generated by the swagger code generator program. 

21 

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 'func': 'AstNode', 

33 'source_language': 'str', 

34 'source_language_version': 'str', 

35 'arguments': 'list[AstNode]' 

36 } 

37 if hasattr(AstNode, "swagger_types"): 

38 swagger_types.update(AstNode.swagger_types) 

39 

40 attribute_map = { 

41 'func': 'func', 

42 'source_language': 'source_language', 

43 'source_language_version': 'source_language_version', 

44 'arguments': 'arguments' 

45 } 

46 if hasattr(AstNode, "attribute_map"): 

47 attribute_map.update(AstNode.attribute_map) 

48 

49 def __init__(self, func=None, source_language=None, source_language_version=None, arguments=None, *args, **kwargs): # noqa: E501 

50 """Call - a model defined in Swagger""" # noqa: E501 

51 self._func = None 

52 self._source_language = None 

53 self._source_language_version = None 

54 self._arguments = None 

55 self.discriminator = None 

56 if func is not None: 

57 self.func = func 

58 if source_language is not None: 

59 self.source_language = source_language 

60 if source_language_version is not None: 

61 self.source_language_version = source_language_version 

62 if arguments is not None: 

63 self.arguments = arguments 

64 AstNode.__init__(self, *args, **kwargs) 

65 

66 @property 

67 def func(self): 

68 """Gets the func of this Call. # noqa: E501 

69 

70 

71 :return: The func of this Call. # noqa: E501 

72 :rtype: AstNode 

73 """ 

74 return self._func 

75 

76 @func.setter 

77 def func(self, func): 

78 """Sets the func of this Call. 

79 

80 

81 :param func: The func of this Call. # noqa: E501 

82 :type: AstNode 

83 """ 

84 

85 self._func = func 

86 

87 @property 

88 def source_language(self): 

89 """Gets the source_language of this Call. # noqa: E501 

90 

91 The source language base name (e.g., \"Python\", \"C\", \"Fortran\") # noqa: E501 

92 

93 :return: The source_language of this Call. # noqa: E501 

94 :rtype: str 

95 """ 

96 return self._source_language 

97 

98 @source_language.setter 

99 def source_language(self, source_language): 

100 """Sets the source_language of this Call. 

101 

102 The source language base name (e.g., \"Python\", \"C\", \"Fortran\") # noqa: E501 

103 

104 :param source_language: The source_language of this Call. # noqa: E501 

105 :type: str 

106 """ 

107 

108 self._source_language = source_language 

109 

110 @property 

111 def source_language_version(self): 

112 """Gets the source_language_version of this Call. # noqa: E501 

113 

114 The version of the source language (e.g., \"3.10.9\") # noqa: E501 

115 

116 :return: The source_language_version of this Call. # noqa: E501 

117 :rtype: str 

118 """ 

119 return self._source_language_version 

120 

121 @source_language_version.setter 

122 def source_language_version(self, source_language_version): 

123 """Sets the source_language_version of this Call. 

124 

125 The version of the source language (e.g., \"3.10.9\") # noqa: E501 

126 

127 :param source_language_version: The source_language_version of this Call. # noqa: E501 

128 :type: str 

129 """ 

130 

131 self._source_language_version = source_language_version 

132 

133 @property 

134 def arguments(self): 

135 """Gets the arguments of this Call. # noqa: E501 

136 

137 

138 :return: The arguments of this Call. # noqa: E501 

139 :rtype: list[AstNode] 

140 """ 

141 return self._arguments 

142 

143 @arguments.setter 

144 def arguments(self, arguments): 

145 """Sets the arguments of this Call. 

146 

147 

148 :param arguments: The arguments of this Call. # noqa: E501 

149 :type: list[AstNode] 

150 """ 

151 

152 self._arguments = arguments 

153 

154 def to_dict(self): 

155 """Returns the model properties as a dict""" 

156 result = {} 

157 

158 for attr, _ in six.iteritems(self.swagger_types): 

159 value = getattr(self, attr) 

160 if isinstance(value, list): 

161 result[attr] = list(map( 

162 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 

163 value 

164 )) 

165 elif hasattr(value, "to_dict"): 

166 result[attr] = value.to_dict() 

167 elif isinstance(value, dict): 

168 result[attr] = dict(map( 

169 lambda item: (item[0], item[1].to_dict()) 

170 if hasattr(item[1], "to_dict") else item, 

171 value.items() 

172 )) 

173 else: 

174 result[attr] = value 

175 if issubclass(Call, dict): 

176 for key, value in self.items(): 

177 result[key] = value 

178 

179 return result 

180 

181 def to_str(self): 

182 """Returns the string representation of the model""" 

183 return pprint.pformat(self.to_dict()) 

184 

185 def __repr__(self): 

186 """For `print` and `pprint`""" 

187 return self.to_str() 

188 

189 def __eq__(self, other): 

190 """Returns true if both objects are equal""" 

191 if not isinstance(other, Call): 

192 return False 

193 

194 return self.__dict__ == other.__dict__ 

195 

196 def __ne__(self, other): 

197 """Returns true if both objects are not equal""" 

198 return not self == other