status.h 6.73 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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.
gejun's avatar
gejun committed
17

gejun's avatar
gejun committed
18 19 20 21 22 23 24
// Author Zhangyi Chen (chenzhangyi01@baidu.com)
// Date 2014/09/22 11:57:43

#ifndef  BVAR_STATUS_H
#define  BVAR_STATUS_H

#include <string>                       // std::string
25 26 27 28
#include "butil/atomicops.h"
#include "butil/type_traits.h"
#include "butil/string_printf.h"
#include "butil/synchronization/lock.h"
gejun's avatar
gejun committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#include "bvar/detail/is_atomical.h"
#include "bvar/variable.h"

namespace bvar {

// Display a rarely or periodically updated value.
// Usage:
//   bvar::Status<int> foo_count1(17);
//   foo_count1.expose("my_value");
//
//   bvar::Status<int> foo_count2;
//   foo_count2.set_value(17);
//   
//   bvar::Status<int> foo_count3("my_value", 17);
template <typename T, typename Enabler = void>
class Status : public Variable {
public:
    Status() {}
    Status(const T& value) : _value(value) {}
48
    Status(const butil::StringPiece& name, const T& value) : _value(value) {
gejun's avatar
gejun committed
49 50
        this->expose(name);
    }
51 52
    Status(const butil::StringPiece& prefix,
           const butil::StringPiece& name, const T& value) : _value(value) {
gejun's avatar
gejun committed
53 54 55 56 57
        this->expose_as(prefix, name);
    }
    // Calling hide() manually is a MUST required by Variable.
    ~Status() { hide(); }

gejun's avatar
gejun committed
58
    void describe(std::ostream& os, bool /*quote_string*/) const override {
gejun's avatar
gejun committed
59 60 61 62
        os << get_value();
    }
    
#ifdef BAIDU_INTERNAL
gejun's avatar
gejun committed
63
    void get_value(boost::any* value) const override {
64
        butil::AutoLock guard(_lock);
gejun's avatar
gejun committed
65 66 67 68 69
        *value = _value;
    }
#endif

    T get_value() const {
70
        butil::AutoLock guard(_lock);
gejun's avatar
gejun committed
71 72 73 74 75
        const T res = _value;
        return res;
    }

    void set_value(const T& value) {
76
        butil::AutoLock guard(_lock);
gejun's avatar
gejun committed
77 78 79 80 81
        _value = value;
    }

private:
    T _value;
82 83 84
    // We use lock rather than butil::atomic for generic values because
    // butil::atomic requires the type to be memcpy-able (POD basically)
    mutable butil::Lock _lock;
gejun's avatar
gejun committed
85 86 87
};

template <typename T>
88
class Status<T, typename butil::enable_if<detail::is_atomical<T>::value>::type>
gejun's avatar
gejun committed
89 90
    : public Variable {
public:
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    struct PlaceHolderOp {
        void operator()(T&, const T&) const {}
    };
    class SeriesSampler : public detail::Sampler {
    public:
        typedef typename butil::conditional<
        true, detail::AddTo<T>, PlaceHolderOp>::type Op;
        explicit SeriesSampler(Status* owner)
            : _owner(owner), _series(Op()) {}
        void take_sample() { _series.append(_owner->get_value()); }
        void describe(std::ostream& os) { _series.describe(os, NULL); }
    private:
        Status* _owner;
        detail::Series<T, Op> _series;
    };

public:
    Status() : _series_sampler(NULL) {}
    Status(const T& value) : _value(value), _series_sampler(NULL) { }
    Status(const butil::StringPiece& name, const T& value)
        : _value(value), _series_sampler(NULL) {
gejun's avatar
gejun committed
112 113
        this->expose(name);
    }
114
    Status(const butil::StringPiece& prefix,
115 116
           const butil::StringPiece& name, const T& value)
        : _value(value), _series_sampler(NULL) {
gejun's avatar
gejun committed
117 118
        this->expose_as(prefix, name);
    }
119 120 121 122 123 124 125
    ~Status() {
        hide();
        if (_series_sampler) {
            _series_sampler->destroy();
            _series_sampler = NULL;
        }
    }
gejun's avatar
gejun committed
126

gejun's avatar
gejun committed
127
    void describe(std::ostream& os, bool /*quote_string*/) const override {
gejun's avatar
gejun committed
128 129 130 131
        os << get_value();
    }
    
#ifdef BAIDU_INTERNAL
gejun's avatar
gejun committed
132
    void get_value(boost::any* value) const override {
gejun's avatar
gejun committed
133 134 135 136 137
        *value = get_value();
    }
#endif
    
    T get_value() const {
138
        return _value.load(butil::memory_order_relaxed);
gejun's avatar
gejun committed
139 140 141
    }
    
    void set_value(const T& value) {
142
        _value.store(value, butil::memory_order_relaxed);
gejun's avatar
gejun committed
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
    int describe_series(std::ostream& os, const SeriesOptions& options) const override {
        if (_series_sampler == NULL) {
            return 1;
        }
        if (!options.test_only) {
            _series_sampler->describe(os);
        }
        return 0;
    }

protected:
    int expose_impl(const butil::StringPiece& prefix,
                    const butil::StringPiece& name,
                    DisplayFilter display_filter) override {
        const int rc = Variable::expose_impl(prefix, name, display_filter);
        if (rc == 0 &&
            _series_sampler == NULL &&
            FLAGS_save_series) {
            _series_sampler = new SeriesSampler(this);
            _series_sampler->schedule();
        }
        return rc;
    }

gejun's avatar
gejun committed
169
private:
170
    butil::atomic<T> _value;
171
    SeriesSampler* _series_sampler;
gejun's avatar
gejun committed
172 173 174 175 176 177 178
};

// Specialize for std::string, adding a printf-style set_value().
template <>
class Status<std::string, void> : public Variable {
public:
    Status() {}
179
    Status(const butil::StringPiece& name, const char* fmt, ...) {
gejun's avatar
gejun committed
180 181 182
        if (fmt) {
            va_list ap;
            va_start(ap, fmt);
183
            butil::string_vprintf(&_value, fmt, ap);
gejun's avatar
gejun committed
184 185 186 187
            va_end(ap);
        }
        expose(name);
    }
188 189
    Status(const butil::StringPiece& prefix,
           const butil::StringPiece& name, const char* fmt, ...) {
gejun's avatar
gejun committed
190 191 192
        if (fmt) {
            va_list ap;
            va_start(ap, fmt);
193
            butil::string_vprintf(&_value, fmt, ap);
gejun's avatar
gejun committed
194 195 196 197 198 199 200
            va_end(ap);
        }
        expose_as(prefix, name);
    }

    ~Status() { hide(); }

gejun's avatar
gejun committed
201
    void describe(std::ostream& os, bool quote_string) const override {
gejun's avatar
gejun committed
202 203 204 205 206 207 208 209
        if (quote_string) {
            os << '"' << get_value() << '"';
        } else {
            os << get_value();
        }
    }

    std::string get_value() const {
210
        butil::AutoLock guard(_lock);
gejun's avatar
gejun committed
211 212 213 214
        return _value;
    }

#ifdef BAIDU_INTERNAL
gejun's avatar
gejun committed
215
    void get_value(boost::any* value) const override {
gejun's avatar
gejun committed
216 217 218 219 220 221 222 223
        *value = get_value();
    }
#endif
    
    void set_value(const char* fmt, ...) {
        va_list ap;
        va_start(ap, fmt);
        {
224 225
            butil::AutoLock guard(_lock);
            butil::string_vprintf(&_value, fmt, ap);
gejun's avatar
gejun committed
226 227 228 229 230
        }
        va_end(ap);
    }

    void set_value(const std::string& s) {
231
        butil::AutoLock guard(_lock);
gejun's avatar
gejun committed
232 233 234 235 236
        _value = s;
    }

private:
    std::string _value;
237
    mutable butil::Lock _lock;
gejun's avatar
gejun committed
238 239 240 241 242
};

}  // namespace bvar

#endif  //BVAR_STATUS_H