summaryrefslogtreecommitdiff
path: root/indra/llcommon/llunit.h
blob: 45199057076941fc83aa3c58ed25cba28b0a8c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/** 
 * @file llunit.h
 * @brief Unit conversion classes
 *
 * $LicenseInfo:firstyear=2001&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2012, Linden Research, Inc.
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#ifndef LL_LLUNIT_H
#define LL_LLUNIT_H

#include "stdtypes.h"
#include "llpreprocessor.h"

template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT = BASE_UNIT>
struct LLUnitType : public BASE_UNIT
{
	typedef DERIVED_UNIT unit_t;

	typedef typename STORAGE_TYPE storage_t;
	typedef void is_unit_tag_t;

	LLUnitType()
	{}

	LLUnitType(storage_t value)
	:	BASE_UNIT(convertToBase(value))
	{}

	// implicit downcast
	operator unit_t& ()
	{
		return static_cast<unit_t&>(*this);
	}

	operator storage_t () const
	{
		return value();
	}

	storage_t value() const
	{
		return convertToDerived(mBaseValue);
	}

	template<typename CONVERTED_TYPE>
	storage_t as() const
	{
		return CONVERTED_TYPE(*this).value();
	}

protected:
	static storage_t convertToBase(storage_t derived_value)
	{
		return (storage_t)((F32)derived_value * unit_t::conversionToBaseFactor());
	}

	static storage_t convertToDerived(storage_t base_value)
	{
		return (storage_t)((F32)base_value / unit_t::conversionToBaseFactor());
	}

};

template<typename STORAGE_TYPE, typename T>
struct LLUnitType<STORAGE_TYPE, T, T>
{
	typedef T unit_t;
	typedef STORAGE_TYPE storage_t;
	typedef void is_unit_tag_t;

	LLUnitType()
	:	mBaseValue()
	{}

	LLUnitType(storage_t value)
	:	mBaseValue(value)
	{}

	unit_t& operator=(storage_t value)
	{
		setBaseValue(value);
		return *this;
	}

	//implicit downcast
	operator unit_t& ()
	{
		return static_cast<unit_t&>(*this);
	}

	operator storage_t () const
	{
		return value();
	}

	storage_t value() const { return mBaseValue; }

	template<typename CONVERTED_TYPE>
	storage_t as() const
	{
		return CONVERTED_TYPE(*this).value();
	}

	static storage_t convertToBase(storage_t derived_value)
	{
		return (storage_t)derived_value;
	}

	static storage_t convertToDerived(storage_t base_value)
	{
		return (storage_t)base_value;
	}

	void operator += (const unit_t other)
	{
		mBaseValue += other.mBaseValue;
	}

	void operator -= (const unit_t other)
	{
		mBaseValue -= other.mBaseValue;
	}

	void operator *= (storage_t multiplicand)
	{
		mBaseValue *= multiplicand;
	}

	void operator /= (storage_t divisor)
	{
		mBaseValue /= divisor;
	}

protected:
	void setBaseValue(storage_t value)
	{
		mBaseValue = value;
	}

	storage_t mBaseValue;
};

template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
struct LLUnitTypeWrapper
:	public LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>
{
	typedef LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> unit_t;
	LLUnitTypeWrapper(const unit_t& other)
	:	unit_t(other)
	{}
};


//
// operator +
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT, typename STORAGE_TYPE2, typename BASE_UNIT2, typename DERIVED_UNIT2>
DERIVED_UNIT operator + (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE2, BASE_UNIT2, DERIVED_UNIT2> second)
{
	return DERIVED_UNIT(first + LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>(second).value());
}


//
// operator -
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT, typename STORAGE_TYPE2, typename BASE_UNIT2, typename DERIVED_UNIT2>
DERIVED_UNIT operator - (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return DERIVED_UNIT(first - LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>(second).value());
}

//
// operator *
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
DERIVED_UNIT operator * (STORAGE_TYPE first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return DERIVED_UNIT(first * second.value());
}

template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
DERIVED_UNIT operator * (LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> first, STORAGE_TYPE second)
{
	return DERIVED_UNIT(first.value() * second);
}


//
// operator /
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
DERIVED_UNIT operator / (STORAGE_TYPE first, LLUnitTypeWrapper<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return DERIVED_UNIT(first / second.value());
}

template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
DERIVED_UNIT operator / (LLUnitTypeWrapper<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> first, STORAGE_TYPE second)
{
	return DERIVED_UNIT(first.value() / second);
}

//
// operator <
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT, typename STORAGE_TYPE2, typename BASE_UNIT2, typename DERIVED_UNIT2>

bool operator < (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return first < second.value();
}

//
// operator <=
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
bool operator <= (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return first <= second.value();
}


//
// operator >
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
bool operator > (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return first > second.value();
}

//
// operator >=
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
bool operator >= (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return first >= second.value();
}

//
// operator ==
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
bool operator == (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return first == second.value();
}

//
// operator !=
//
template<typename STORAGE_TYPE, typename BASE_UNIT, typename DERIVED_UNIT>
bool operator != (typename LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT>::storage_t first, LLUnitType<STORAGE_TYPE, BASE_UNIT, DERIVED_UNIT> second)
{
	return first != second.value();
}

#define LL_DECLARE_BASE_UNIT(unit_name)                                                                          \
	template<typename STORAGE>                                                                                   \
	struct unit_name : public LLUnitType<STORAGE, unit_name<STORAGE>, unit_name<STORAGE> >						 \
	{                                                                                                            \
		typedef LLUnitType<STORAGE, unit_name> unit_t;						                                     \
	                                                                                                             \
		unit_name(storage_t value = 0)                                                                           \
		:	LLUnitType(value)                                                                                    \
		{}                                                                                                       \
		                                                                                                         \
		template <typename SOURCE_STORAGE_TYPE, typename SOURCE_TYPE>                                            \
		unit_name(LLUnitType<SOURCE_STORAGE_TYPE, unit_name<SOURCE_STORAGE_TYPE>, SOURCE_TYPE> source)			 \
		{                                                                                                        \
			assignFrom(source);			                                                                         \
		}                                                                                                        \
		                                                                                                         \
		template <typename SOURCE_STORAGE_TYPE, typename SOURCE_TYPE>                                            \
		void assignFrom(LLUnitType<SOURCE_STORAGE_TYPE, unit_name<SOURCE_STORAGE_TYPE>, SOURCE_TYPE> source)     \
		{                                                                                                        \
			setBaseValue((storage_t)source.unit_name<SOURCE_STORAGE_TYPE>::unit_t::value());                     \
		}                                                                                                        \
	                                                                                                             \
	};                                                                                                           \

#define LL_DECLARE_DERIVED_UNIT(base_unit, derived_unit, conversion_factor)                                      \
	template<typename STORAGE>	                                                                                 \
	struct derived_unit : public LLUnitType<STORAGE, base_unit<STORAGE>, derived_unit<STORAGE> >                 \
	{                                                                                                            \
		typedef LLUnitType<STORAGE, base_unit<STORAGE>, derived_unit<STORAGE> > unit_t;				             \
		                                                                                                         \
		derived_unit(storage_t value = 0)                                                                        \
		:	LLUnitType(value)                                                                                    \
		{}                                                                                                       \
		                                                                                                         \
		template <typename SOURCE_STORAGE_TYPE, typename SOURCE_TYPE>                                            \
		derived_unit(LLUnitType<SOURCE_STORAGE_TYPE, base_unit<SOURCE_STORAGE_TYPE>, SOURCE_TYPE> source)		 \
		{                                                                                                        \
			assignFrom(source);					                                                                 \
		}                                                                                                        \
		                                                                                                         \
		template <typename SOURCE_STORAGE_TYPE, typename SOURCE_TYPE>                                            \
		void assignFrom(LLUnitType<SOURCE_STORAGE_TYPE, base_unit<SOURCE_STORAGE_TYPE>, SOURCE_TYPE> source)     \
		{                                                                                                        \
			setBaseValue((storage_t)source.base_unit<SOURCE_STORAGE_TYPE>::unit_t::value());                     \
		}                                                                                                        \
		                                                                                                         \
		static F32 conversionToBaseFactor() { return (F32)(conversion_factor); }                                 \
		                                                                                                         \
	};                                                                                                           \

namespace LLUnit
{
	LL_DECLARE_BASE_UNIT(Bytes);
	LL_DECLARE_DERIVED_UNIT(Bytes, Kilobytes, 1024);
	LL_DECLARE_DERIVED_UNIT(Bytes, Megabytes, 1024 * 1024);
	LL_DECLARE_DERIVED_UNIT(Bytes, Gigabytes, 1024 * 1024 * 1024);
	LL_DECLARE_DERIVED_UNIT(Bytes, Bits,	  (1.f / 8.f));
	LL_DECLARE_DERIVED_UNIT(Bytes, Kilobits,  (1024 / 8));
	LL_DECLARE_DERIVED_UNIT(Bytes, Megabits,  (1024 / 8));
	LL_DECLARE_DERIVED_UNIT(Bytes, Gigabits,  (1024 * 1024 * 1024 / 8));

	LL_DECLARE_BASE_UNIT(Seconds);
	LL_DECLARE_DERIVED_UNIT(Seconds, Minutes,		60);
	LL_DECLARE_DERIVED_UNIT(Seconds, Hours,			60 * 60);
	LL_DECLARE_DERIVED_UNIT(Seconds, Days,			60 * 60 * 24);
	LL_DECLARE_DERIVED_UNIT(Seconds, Weeks,			60 * 60 * 24 * 7);
	LL_DECLARE_DERIVED_UNIT(Seconds, Milliseconds,	(1.f / 1000.f));
	LL_DECLARE_DERIVED_UNIT(Seconds, Microseconds,	(1.f / (1000000.f)));
	LL_DECLARE_DERIVED_UNIT(Seconds, Nanoseconds,	(1.f / (1000000000.f)));

	LL_DECLARE_BASE_UNIT(Meters);
	LL_DECLARE_DERIVED_UNIT(Meters, Kilometers, 1000);
	LL_DECLARE_DERIVED_UNIT(Meters, Centimeters, 1 / 100);
	LL_DECLARE_DERIVED_UNIT(Meters, Millimeters, 1 / 1000);
}

#endif // LL_LLUNIT_H