Package org.springframework.xd.shell.command

Source Code of org.springframework.xd.shell.command.RichGaugeCommands

/*
* Copyright 2002-2013 the original author or authors.
*
* Licensed 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 org.springframework.xd.shell.command;

import java.text.NumberFormat;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.hateoas.PagedResources;
import org.springframework.shell.core.CommandMarker;
import org.springframework.shell.core.annotation.CliAvailabilityIndicator;
import org.springframework.shell.core.annotation.CliCommand;
import org.springframework.shell.core.annotation.CliOption;
import org.springframework.stereotype.Component;
import org.springframework.xd.rest.client.RichGaugeOperations;
import org.springframework.xd.rest.domain.metrics.MetricResource;
import org.springframework.xd.rest.domain.metrics.RichGaugeResource;
import org.springframework.xd.shell.XDShell;
import org.springframework.xd.shell.converter.NumberFormatConverter;
import org.springframework.xd.shell.util.Table;
import org.springframework.xd.shell.util.TableHeader;

/**
* Commands for interacting with RichGauge analytics.
*
* @author Ilayaperumal Gopinathan
*/
@Component
public class RichGaugeCommands extends AbstractMetricsCommands implements CommandMarker {

  protected RichGaugeCommands() {
    super("RichGauge");
  }

  private static final String DISPLAY_RICH_GAUGE = "rich-gauge display";

  private static final String LIST_RICH_GAUGES = "rich-gauge list";

  private static final String DELETE_RICH_GAUGE = "rich-gauge delete";

  @Autowired
  private XDShell xdShell;

  @CliAvailabilityIndicator({ LIST_RICH_GAUGES, DELETE_RICH_GAUGE, DISPLAY_RICH_GAUGE })
  public boolean available() {
    return xdShell.getSpringXDOperations() != null;
  }

  @CliCommand(value = LIST_RICH_GAUGES, help = "List all available richgauge names")
  public Table list(/* TODO */) {
    PagedResources<MetricResource> list = richGaugeOperations().list(/* TODO */);
    return displayMetrics(list);
  }

  @CliCommand(value = DISPLAY_RICH_GAUGE, help = "Display Rich Gauge value")
  public Table display(
      @CliOption(key = { "", "name" }, help = "the name of the richgauge to display value", mandatory = true, optionContext = "existing-rich-gauge disable-string-converter") String name,
      @CliOption(key = "pattern", help = "the pattern used to format the richgauge value (see DecimalFormat)", mandatory = false, unspecifiedDefaultValue = NumberFormatConverter.DEFAULT) NumberFormat pattern) {
    RichGaugeResource resource = richGaugeOperations().retrieve(name);
    return displayRichGauge(resource, pattern);
  }

  @CliCommand(value = DELETE_RICH_GAUGE, help = "Delete the richgauge")
  public String delete(
      @CliOption(key = { "", "name" }, help = "the name of the richgauge to delete", mandatory = true, optionContext = "existing-rich-gauge disable-string-converter") String name) {
    richGaugeOperations().delete(name);
    return String.format("Deleted richgauge '%s'", name);
  }

  private RichGaugeOperations richGaugeOperations() {
    return xdShell.getSpringXDOperations().richGaugeOperations();
  }

  private Table displayRichGauge(RichGaugeResource r, NumberFormat pattern) {
    Table t = new Table();
    t.addHeader(1, new TableHeader(String.format("Name"))).addHeader(2, new TableHeader(r.getName()));
    t.newRow().addValue(1, "value").addValue(2, pattern.format(r.getValue()));
    t.newRow().addValue(1, "alpha").addValue(2, pattern.format(r.getAlpha()));
    t.newRow().addValue(1, "average").addValue(2, pattern.format(r.getAverage()));
    t.newRow().addValue(1, "max").addValue(2, pattern.format(r.getMax()));
    t.newRow().addValue(1, "min").addValue(2, pattern.format(r.getMin()));
    t.newRow().addValue(1, "count").addValue(2, pattern.format(r.getCount()));
    return t;
  }
}
TOP

Related Classes of org.springframework.xd.shell.command.RichGaugeCommands

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.