Ignition Common

API Reference

4.1.0
Battery.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef IGNITION_COMMON_BATTERY_HH_
18 #define IGNITION_COMMON_BATTERY_HH_
19 
20 #include <map>
21 #include <string>
22 #include <functional>
23 #include <memory>
24 #include <ignition/common/Export.hh>
26 
27 namespace ignition
28 {
29  namespace common
30  {
31  // Forward declare private data class.
32  class BatteryPrivate;
33 
44  class IGNITION_COMMON_VISIBLE Battery
45  {
49 
51  public: explicit Battery();
52 
56  public: Battery(const std::string &_name, const double _voltage);
57 
60  public: Battery(const Battery &_battery);
61 
65  public: Battery &operator=(const Battery &_battery);
66 
68  public: virtual ~Battery();
69 
74  public: bool operator==(const Battery &_battery) const;
75 
80  public: bool operator!=(const Battery &_battery) const;
81 
83  public: virtual void Init();
84 
88  public: virtual void ResetVoltage();
89 
92  public: double InitVoltage() const;
93 
96  public: virtual void SetInitVoltage(const double _voltage);
97 
100  public: std::string Name() const;
101 
104  public: void SetName(const std::string &_name) const;
105 
108  public: uint32_t AddConsumer();
109 
114  public: bool RemoveConsumer(const uint32_t _consumerId);
115 
120  public: bool SetPowerLoad(const uint32_t _consumerId,
121  const double _powerLoad);
122 
127  public: bool PowerLoad(const uint32_t _consumerId,
128  double &_powerLoad) const;
129 
132  public: const PowerLoad_M &PowerLoads() const;
133 
136  public: double Voltage() const;
137 
145  public: void SetUpdateFunc(
146  std::function<double (Battery *)> _updateFunc);
147 
151  public: void ResetUpdateFunc();
152 
156  public: void Update();
157 
159  protected: void InitConsumers();
160 
164  private: double UpdateDefault(Battery *_battery);
165 
169  private: std::unique_ptr<BatteryPrivate> dataPtr;
171  };
172 
176  }
177 }
178 #endif
#define IGN_COMMON_WARN_RESUME__DLL_INTERFACE_MISSING
Definition: SuppressWarning.hh:67
STL class.
STL class.
A battery abstraction.
Definition: Battery.hh:44
Forward declarations for the common classes.
std::map< uint32_t, double > PowerLoad_M
Typedef the powerload map.
Definition: Battery.hh:48
#define IGN_COMMON_WARN_IGNORE__DLL_INTERFACE_MISSING
Microsoft Visual Studio does not automatically export the interface information for member variables ...
Definition: SuppressWarning.hh:64
std::shared_ptr< Battery > BatteryPtr
Definition: Battery.hh:175