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

# coding=utf-8 

# 

# Copyright (C) 2010-2012 Platform Computing 

# 

# This library is free software; you can redistribute it and/or 

# modify it under the terms of the GNU Lesser General Public 

# License as published by the Free Software Foundation; either 

# version 2.1 of the License, or (at your option) any later version. 

# 

# This library 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 

# Lesser General Public License for more details. 

# 

# You should have received a copy of the GNU Lesser General Public 

# License along with this library; if not, write to the Free Software 

# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA 

# 

''' 

The OCCI Infrastructure extension. 

 

Created on Jul 20, 2011 

 

@author: tmetsch 

''' 

 

from occi.core_model import Action, Kind, Resource, Mixin, Link 

 

#============================================================================== 

# Compute 

#============================================================================== 

 

START = Action('http://schemas.ogf.org/occi/infrastructure/compute/action#', 

               'start', 'Start a compute resource') 

 

STOP = Action('http://schemas.ogf.org/occi/infrastructure/compute/action#', 

              'stop', 'Stop a compute resource', {'method': ''}) 

 

RESTART = Action('http://schemas.ogf.org/occi/infrastructure/compute/action#', 

                 'restart', 'Restart a compute resource', {'method': ''}) 

 

SUSPEND = Action('http://schemas.ogf.org/occi/infrastructure/compute/action#', 

                 'suspend', 'Suspend a compute resource', {'method': ''}) 

 

COMPUTE_ATTRIBUTES = {'occi.compute.architecture': '', 

                      'occi.compute.cores': '', 

                      'occi.compute.hostname': '', 

                      'occi.compute.speed': '', 

                      'occi.compute.memory': '', 

                      'occi.compute.state': 'immutable'} 

 

COMPUTE = Kind('http://schemas.ogf.org/occi/infrastructure#', 

               'compute', 

               [Resource.kind], 

               [START, STOP, RESTART, SUSPEND], 

               'Compute Resource', 

               COMPUTE_ATTRIBUTES, 

               '/compute/') 

 

#============================================================================== 

# Network 

#============================================================================== 

 

UP = Action('http://schemas.ogf.org/occi/infrastructure/network/action#', 

            'up', 'Bring up a network resource') 

 

DOWN = Action('http://schemas.ogf.org/occi/infrastructure/network/action#', 

              'down', 'Bring down a network resource') 

 

NETWORK_ATTRIBUTES = {'occi.network.vlan': '', 

                      'occi.network.label': '', 

                      'occi.network.state': 'immutable'} 

 

NETWORK = Kind('http://schemas.ogf.org/occi/infrastructure#', 

               'network', 

               [Resource.kind], 

               [UP, DOWN], 

               'Network Resource', 

               NETWORK_ATTRIBUTES, 

               '/network/') 

 

#IP networking mixin 

 

IPNETWORK_ATTRIBUTES = {'occi.network.address': '', 

                        'occi.network.gateway': '', 

                        'occi.network.allocation': ''} 

 

IPNETWORK = Mixin('http://schemas.ogf.org/occi/infrastructure/network#', 

                  'ipnetwork', attributes=IPNETWORK_ATTRIBUTES) 

 

#============================================================================== 

# Storage 

#============================================================================== 

 

ONLINE = Action('http://schemas.ogf.org/occi/infrastructure/storage/action#', 

                'online', 'Bring storage online') 

 

OFFLINE = Action('http://schemas.ogf.org/occi/infrastructure/storage/action#', 

              'offline', 'Bring storage offline') 

 

BACKUP = Action('http://schemas.ogf.org/occi/infrastructure/storage/action#', 

                'backup', 'Backup storage resource') 

 

SNAPSHOT = Action('http://schemas.ogf.org/occi/infrastructure/storage/action#', 

                  'snapshot', 'Make a snapshot of storage resource') 

 

RESIZE = Action('http://schemas.ogf.org/occi/infrastructure/storage/action#', 

                'resize', 'Resize storage resource', {'size': 'required'}) 

 

STORAGE_ATTRIBUTES = {'occi.storage.size': '', 

                      'occi.storage.state': 'immutable'} 

 

STORAGE = Kind('http://schemas.ogf.org/occi/infrastructure#', 

               'storage', 

               [Resource.kind], 

               [ONLINE, OFFLINE, BACKUP, SNAPSHOT, RESIZE], 

               'Storage Resource', 

               STORAGE_ATTRIBUTES, 

               '/storage/') 

 

#============================================================================== 

# Linking 

#============================================================================== 

 

NETWORKINTERFACE_ATTRIBUTES = {'occi.networkinterface.interface': 'immutable', 

                               'occi.networkinterface.mac': '', 

                               'occi.networkinterface.state': 'immutable'} 

 

NETWORKINTERFACE = Kind('http://schemas.ogf.org/occi/infrastructure#', 

                        'networkinterface', 

                        [Link.kind], 

                        [], 

                        'A L2 Network Interface', 

                        NETWORKINTERFACE_ATTRIBUTES, 

                        '/network/interface/') 

 

IPNETWORKINTERFACE_ATTRIBUTES = {'occi.networkinterface.address': '', 

                                 'occi.networkinterface.gateway': '', 

                                 'occi.networkinterface.allocation': ''} 

 

IPNETWORKINTERFACE = Mixin('http://schemas.ogf.org/occi/infrastructure/' 

                           'networkinterface#', 

                           'ipnetworkinterface', 

                           [], 

                           [], 

                           'L3/L4 capabilities for L2 Network Interface', 

                           IPNETWORKINTERFACE_ATTRIBUTES, 

                           '/network/interface/ip/') 

 

STORAGELINK_ATTRIBUTES = {'occi.storagelink.deviceid': '', 

                          'occi.storagelink.mountpoint': '', 

                          'occi.storagelink.state': 'immutable'} 

 

STORAGELINK = Kind('http://schemas.ogf.org/occi/infrastructure#', 

                   'storagelink', 

                   [Link.kind], 

                   [], 

                   'A link to a storage resource', 

                   STORAGELINK_ATTRIBUTES, 

                   '/storage/link/') 

 

#============================================================================== 

# Templates 

#============================================================================== 

 

RESOURCE_TEMPLATE = Mixin('http://schemas.ogf.org/occi/infrastructure#', 

                          'resource_tpl') 

 

OS_TEMPLATE = Mixin('http://schemas.ogf.org/occi/infrastructure#', 'os_tpl')