/server/src/main/java/org/jboss/as/server/services/net/NetworkInterfaceRuntimeHandler.java

http://github.com/jbossas/jboss-as · Java · 80 lines · 44 code · 9 blank · 27 comment · 5 complexity · 479f5df1489a5707475ab09c894c90ea MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source.
  3. * Copyright 2011, Red Hat, Inc., and individual contributors
  4. * as indicated by the @author tags. See the copyright.txt file in the
  5. * distribution for a full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.jboss.as.server.services.net;
  23. import java.net.InetAddress;
  24. import org.jboss.as.controller.OperationContext;
  25. import org.jboss.as.controller.OperationFailedException;
  26. import org.jboss.as.controller.OperationStepHandler;
  27. import org.jboss.as.controller.PathAddress;
  28. import org.jboss.as.controller.SimpleAttributeDefinition;
  29. import org.jboss.as.controller.SimpleAttributeDefinitionBuilder;
  30. import org.jboss.as.controller.descriptions.ModelDescriptionConstants;
  31. import org.jboss.as.network.NetworkInterfaceBinding;
  32. import org.jboss.dmr.ModelNode;
  33. import org.jboss.dmr.ModelType;
  34. import org.jboss.msc.service.ServiceController;
  35. /**
  36. * {@code OperationStepHandler} for the runtime attributes of a network interface.
  37. *
  38. * @author Emanuel Muckenhuber
  39. */
  40. public class NetworkInterfaceRuntimeHandler implements OperationStepHandler {
  41. public static final OperationStepHandler INSTANCE = new NetworkInterfaceRuntimeHandler();
  42. public static final SimpleAttributeDefinition RESOLVED_ADDRESS = new SimpleAttributeDefinitionBuilder("resolved-address", ModelType.STRING)
  43. .setStorageRuntime()
  44. .build();
  45. protected NetworkInterfaceRuntimeHandler() {
  46. //
  47. }
  48. @Override
  49. public void execute(final OperationContext context, final ModelNode operation) throws OperationFailedException {
  50. final PathAddress address = PathAddress.pathAddress(operation.get(ModelDescriptionConstants.OP_ADDR));
  51. final String interfaceName = address.getLastElement().getValue();
  52. final String attributeName = operation.require(ModelDescriptionConstants.NAME).asString();
  53. context.addStep(new OperationStepHandler() {
  54. @Override
  55. public void execute(final OperationContext context, final ModelNode operation) throws OperationFailedException {
  56. final ServiceController<?> controller = context.getServiceRegistry(false).getService(NetworkInterfaceService.JBOSS_NETWORK_INTERFACE.append(interfaceName));
  57. if(controller != null && controller.getState() == ServiceController.State.UP) {
  58. final NetworkInterfaceBinding binding = NetworkInterfaceBinding.class.cast(controller.getValue());
  59. final InetAddress address = binding.getAddress();
  60. final ModelNode result = new ModelNode();
  61. if(RESOLVED_ADDRESS.getName().equals(attributeName)) {
  62. result.set(address.getHostAddress());
  63. }
  64. context.getResult().set(result);
  65. }
  66. context.stepCompleted();
  67. }
  68. }, OperationContext.Stage.RUNTIME);
  69. context.stepCompleted();
  70. }
  71. }