forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHost.java
More file actions
224 lines (173 loc) · 5.2 KB
/
Host.java
File metadata and controls
224 lines (173 loc) · 5.2 KB
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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package com.cloud.host;
import com.cloud.cpu.CPU;
import com.cloud.hypervisor.Hypervisor.HypervisorType;
import com.cloud.resource.ResourceState;
import com.cloud.utils.fsm.StateObject;
import org.apache.cloudstack.api.Identity;
import org.apache.cloudstack.ha.HAResource;
import org.apache.cloudstack.kernel.Partition;
import java.util.Date;
/**
* Host represents one particular host server.
*/
public interface Host extends StateObject<Status>, Identity, Partition, HAResource {
public enum Type {
Storage(false), Routing(false), SecondaryStorage(false), SecondaryStorageCmdExecutor(false), ConsoleProxy(true), ExternalFirewall(false), ExternalLoadBalancer(
false), ExternalVirtualSwitchSupervisor(false), PxeServer(false), BaremetalPxe(false), BaremetalDhcp(false), TrafficMonitor(false), NetScalerControlCenter(false),
ExternalDhcp(false), SecondaryStorageVM(true), LocalSecondaryStorage(false), L2Networking(false);
boolean _virtual;
private Type(boolean virtual) {
_virtual = virtual;
}
public boolean isVirtual() {
return _virtual;
}
public static String[] toStrings(Host.Type... types) {
String[] strs = new String[types.length];
for (int i = 0; i < types.length; i++) {
strs[i] = types[i].toString();
}
return strs;
}
}
String HOST_UEFI_ENABLE = "host.uefi.enable";
String HOST_VOLUME_ENCRYPTION = "host.volume.encryption";
String HOST_INSTANCE_CONVERSION = "host.instance.conversion";
String HOST_OVFTOOL_VERSION = "host.ovftool.version";
String HOST_VIRTV2V_VERSION = "host.virtv2v.version";
String HOST_SSH_PORT = "host.ssh.port";
int DEFAULT_SSH_PORT = 22;
/**
* @return name of the machine.
*/
String getName();
/**
* @return the type of host.
*/
Type getType();
/**
* @return the date the host first registered
*/
Date getCreated();
/**
* @return current state of this machine.
*/
Status getStatus();
/**
* @return the ip address of the host.
*/
String getPrivateIpAddress();
/**
* @return the ip address of the host.
*/
String getStorageUrl();
/**
* @return the ip address of the host attached to the storage network.
*/
String getStorageIpAddress();
/**
* @return the mac address of the host.
*/
String getGuid();
/**
* @return total amount of memory.
*/
Long getTotalMemory();
/**
* @return # of cpu sockets in a machine.
*/
Integer getCpuSockets();
/**
* @return # of cores in a machine. Note two cpus with two cores each returns 4.
*/
Integer getCpus();
/**
* @return speed of each cpu in mhz.
*/
Long getSpeed();
/**
* @return the proxy port that is being listened at the agent host
*/
Integer getProxyPort();
/**
* @return the pod.
*/
Long getPodId();
/**
* @return availability zone.
*/
long getDataCenterId();
/**
* @return parent path. only used for storage server.
*/
String getParent();
/**
* @return storage ip address.
*/
String getStorageIpAddressDeux();
/**
* @return type of hypervisor
*/
HypervisorType getHypervisorType();
/**
* @return disconnection date
*/
Date getDisconnectedOn();
/**
* @return version
*/
String getVersion();
/*
* @return total size
*/
long getTotalSize();
/*
* @return capabilities
*/
String getCapabilities();
/*
* @return last pinged time
*/
long getLastPinged();
/*
* @return management server id
*/
Long getManagementServerId();
Long getLastManagementServerId();
/*
*@return removal date
*/
Date getRemoved();
Long getClusterId();
String getPublicIpAddress();
String getPublicNetmask();
String getPrivateNetmask();
String getStorageNetmask();
String getStorageMacAddress();
String getPublicMacAddress();
String getPrivateMacAddress();
String getStorageNetmaskDeux();
String getStorageMacAddressDeux();
String getHypervisorVersion();
boolean isInMaintenanceStates();
boolean isDisabled();
ResourceState getResourceState();
CPU.CPUArch getArch();
String getStorageAccessGroups();
}