blob: bd2a643ce5686b050817901884163b763c9aef79 [file] [log] [blame]
/**
* Copyright 2010 Google Inc.
*
* 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.
*/
// Author: jmarantz@google.com (Joshua Marantz)
#ifndef NET_INSTAWEB_UTIL_PUBLIC_STATISTICS_H_
#define NET_INSTAWEB_UTIL_PUBLIC_STATISTICS_H_
#include "net/instaweb/util/public/string_util.h"
namespace net_instaweb {
class Variable {
public:
virtual ~Variable();
// TODO(sligocki): int -> int64
virtual int Get() const = 0;
virtual void Set(int delta) = 0;
virtual void Add(int delta) { Set(delta + Get()); }
void Clear() { Set(0); }
};
// Helps build a statistics that can be exported as a CSV file.
class Statistics {
public:
virtual ~Statistics();
// Add a new variable, or returns an existing one of that name.
// The Variable* is owned by the Statistics class -- it should
// not be deleted by the caller.
virtual Variable* AddVariable(const StringPiece& name) = 0;
// Find a variable from a name, returning NULL if not found.
virtual Variable* FindVariable(const StringPiece& name) const = 0;
// Find a variable from a name, aborting if not found.
virtual Variable* GetVariable(const StringPiece& name) const {
Variable* var = FindVariable(name);
CHECK(var != NULL) << "Variable not found: " << name;
return var;
}
};
} // namespace net_instaweb
#endif // NET_INSTAWEB_UTIL_PUBLIC_STATISTICS_H_