Package com.skymobi.monitor.model

Source Code of com.skymobi.monitor.model.Chart

/**
* Copyright (C) 2012 skymobi LTD
*
* Licensed under GNU GENERAL PUBLIC LICENSE  Version 3 (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.gnu.org/licenses/gpl-3.0.html
*
* 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.skymobi.monitor.model;

import com.mongodb.CommandResult;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.List;

/**
* @author hill.hu
*
* 统计类
*/
public class Chart implements IdentifyObject {

    private static Logger logger = LoggerFactory.getLogger(Chart.class);

    private String name;
    /**
     * mongodb的查询脚本
     */
    private String query;

    public Chart(String name) {
        this.name = name;
    }

    public Chart() {
    }

    public List findData() {

        logger.debug("find stats  by {}", query);
        CommandResult result = null;//mongoDb.runCmd(query);
        logger.debug("stats mongo result {}", result);
        Object data = result.get("retval");

        return (List) data;
    }


    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }


    public String getQuery() {
        return query;
    }

    public void setQuery(String query) {
        this.query = query;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof Chart)) return false;

        Chart that = (Chart) o;

        return StringUtils.equals(that.getName(), this.getName());
    }

    @Override
    public int hashCode() {
        return name != null ? name.hashCode() : 0;
    }

}
TOP

Related Classes of com.skymobi.monitor.model.Chart

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.