/sandbox-providers/glesys/src/main/java/org/jclouds/glesys/domain/AllowedArgumentsForCreateServer.java

http://github.com/jclouds/jclouds · Java · 231 lines · 153 code · 33 blank · 45 comment · 9 complexity · d36ea8f89f476acdbf1c12fe54c0237d MD5 · raw file

  1. /**
  2. * Licensed to jclouds, Inc. (jclouds) under one or more
  3. * contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. jclouds licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.jclouds.glesys.domain;
  20. import static com.google.common.base.Preconditions.checkNotNull;
  21. import java.util.Set;
  22. import com.google.common.base.Joiner;
  23. import com.google.common.base.Objects;
  24. import com.google.common.collect.ImmutableSet;
  25. import com.google.gson.annotations.SerializedName;
  26. /**
  27. * Sets the allowed arguments for some of the functions in this module such as disksize, cpucores etc.
  28. *
  29. * @author Adam Lowe
  30. * @see <a href="https://customer.glesys.com/api.php?a=doc#server_allowedarguments" />
  31. */
  32. public class AllowedArgumentsForCreateServer {
  33. public static Builder builder() {
  34. return new Builder();
  35. }
  36. public static class Builder {
  37. private Set<Integer> diskSizes;
  38. private Set<Integer> memorySizes;
  39. private Set<Integer> cpuCores;
  40. private Set<String> templates;
  41. private Set<Integer> transfers;
  42. private Set<String> dataCenters;
  43. public Builder diskSizes(Integer... sizes) {
  44. return diskSizes(ImmutableSet.<Integer>copyOf(sizes));
  45. }
  46. public Builder diskSizes(Set<Integer> sizes) {
  47. this.diskSizes = sizes;
  48. return this;
  49. }
  50. public Builder memorySizes(Integer... sizes) {
  51. return memorySizes(ImmutableSet.<Integer>copyOf(sizes));
  52. }
  53. public Builder memorySizes(Set<Integer> sizes) {
  54. this.memorySizes = sizes;
  55. return this;
  56. }
  57. public Builder cpuCores(Integer... cpuCores) {
  58. this.cpuCores = ImmutableSet.<Integer>copyOf(cpuCores);
  59. return this;
  60. }
  61. public Builder cpuCores(Set<Integer> cpuCores) {
  62. this.cpuCores = cpuCores;
  63. return this;
  64. }
  65. public Builder templates(String... templates) {
  66. return templates(ImmutableSet.<String>copyOf(templates));
  67. }
  68. public Builder templates(Set<String> templates) {
  69. this.templates = templates;
  70. return this;
  71. }
  72. public Builder transfers(Integer... transfers) {
  73. return transfers(ImmutableSet.<Integer>copyOf(transfers));
  74. }
  75. public Builder transfers(Set<Integer> transfers) {
  76. this.transfers = transfers;
  77. return this;
  78. }
  79. public Builder dataCenters(String... dataCenters) {
  80. return dataCenters(ImmutableSet.<String>copyOf(dataCenters));
  81. }
  82. public Builder dataCenters(Set<String> dataCenters) {
  83. this.dataCenters = dataCenters;
  84. return this;
  85. }
  86. public AllowedArgumentsForCreateServer build() {
  87. return new AllowedArgumentsForCreateServer(diskSizes, memorySizes, cpuCores, templates, transfers, dataCenters);
  88. }
  89. public Builder fromAllowedArguments(AllowedArgumentsForCreateServer in) {
  90. return diskSizes(in.getDiskSizesInGB())
  91. .memorySizes(in.getMemorySizesInMB())
  92. .cpuCores(in.getCpuCoreOptions())
  93. .templates(in.getTemplateNames())
  94. .transfers(in.getTransfersInGB())
  95. .dataCenters(in.getDataCenters());
  96. }
  97. }
  98. @SerializedName("disksize")
  99. private final Set<Integer> diskSizes;
  100. @SerializedName("memorysize")
  101. private final Set<Integer> memorySizes;
  102. @SerializedName("cpucores")
  103. private final Set<Integer> cpuCores;
  104. @SerializedName("template")
  105. private final Set<String> templates;
  106. @SerializedName("transfer")
  107. private final Set<Integer> transfers;
  108. @SerializedName("datacenter")
  109. private final Set<String> dataCenters;
  110. public AllowedArgumentsForCreateServer(Set<Integer> diskSizes, Set<Integer> memorySizes, Set<Integer> cpuCores,
  111. Set<String> templates, Set<Integer> transfers, Set<String> dataCenters) {
  112. checkNotNull(diskSizes, "diskSizes");
  113. checkNotNull(memorySizes, "memorySizes");
  114. checkNotNull(cpuCores, "cpuCores");
  115. checkNotNull(templates, "templates");
  116. checkNotNull(transfers, "transfers");
  117. checkNotNull(dataCenters, "dataCenters");
  118. this.diskSizes = diskSizes;
  119. this.memorySizes = memorySizes;
  120. this.cpuCores = cpuCores;
  121. this.templates = templates;
  122. this.transfers = transfers;
  123. this.dataCenters = dataCenters;
  124. }
  125. /**
  126. * @return a list of disk sizes, in GB, that can be used for creating servers on this platform
  127. * @see org.jclouds.glesys.domain.OSTemplate#getMinDiskSize()
  128. */
  129. public Set<Integer> getDiskSizesInGB() {
  130. return diskSizes;
  131. }
  132. /**
  133. * @return a list of memory sizes, in MB, that can be used for creating servers on this platform
  134. * @see org.jclouds.glesys.domain.OSTemplate#getMinMemSize()
  135. */
  136. public Set<Integer> getMemorySizesInMB() {
  137. return memorySizes;
  138. }
  139. /**
  140. * @return a list of which core counts can be used for creating servers on this platform
  141. */
  142. public Set<Integer> getCpuCoreOptions() {
  143. return cpuCores;
  144. }
  145. /**
  146. * @return a list of template names available for creating servers on this platform
  147. * @see org.jclouds.glesys.domain.OSTemplate#getName()
  148. */
  149. public Set<String> getTemplateNames() {
  150. return templates;
  151. }
  152. /**
  153. * @return the list of transfer settings available for creating servers on this platform
  154. */
  155. public Set<Integer> getTransfersInGB() {
  156. return transfers;
  157. }
  158. /**
  159. * @return the list of datacenters available that support creating servers on this platform
  160. */
  161. public Set<String> getDataCenters() {
  162. return dataCenters;
  163. }
  164. @Override
  165. public boolean equals(Object object) {
  166. if (this == object) {
  167. return true;
  168. }
  169. if (object instanceof AllowedArgumentsForCreateServer) {
  170. final AllowedArgumentsForCreateServer other = (AllowedArgumentsForCreateServer) object;
  171. return Objects.equal(diskSizes, other.diskSizes)
  172. && Objects.equal(memorySizes, other.memorySizes)
  173. && Objects.equal(cpuCores, other.cpuCores)
  174. && Objects.equal(templates, other.templates)
  175. && Objects.equal(transfers, other.transfers)
  176. && Objects.equal(dataCenters, other.dataCenters);
  177. } else {
  178. return false;
  179. }
  180. }
  181. @Override
  182. public int hashCode() {
  183. return Objects.hashCode(diskSizes, memorySizes, cpuCores, templates, transfers, dataCenters);
  184. }
  185. @Override
  186. public String toString() {
  187. checkNotNull(diskSizes, "diskSizes");
  188. checkNotNull(memorySizes, "memorySizes");
  189. checkNotNull(cpuCores, "cpuCores");
  190. checkNotNull(templates, "templates");
  191. checkNotNull(transfers, "transfers");
  192. checkNotNull(dataCenters, "dataCenters");
  193. Joiner commaJoiner = Joiner.on(", ");
  194. return String.format("[disksize=[%s], memorysize=[%s], cpuCores=[%s], templates=[%s], transfers=[%s], datacenters=[%s]]",
  195. commaJoiner.join(diskSizes), commaJoiner.join(memorySizes), commaJoiner.join(cpuCores), commaJoiner.join(templates),
  196. commaJoiner.join(transfers), commaJoiner.join(dataCenters));
  197. }
  198. }