/usr/include/mffm/masterCounter.H is in mffm-timecode-dev 1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
mffm Time Code
Time Code for multimedia systems
Copyright (C) 2000, 2001 Matt R. Flax <flatmax@ieee.org>
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; either
version 2.1 of the License, or (at your option) any later version.
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 have received a copy of the GNU Lesser General Public License
along with this library.
*/
#ifndef MASTERCOUNTER_H_
#define MASTERCOUNTER_H_
#include <stdarg.h>
#include "field.H"
//#define DEBUG_MC
template <class FIELDTYPE, int FIELDCOUNT>
class MasterCounter : public counter {
protected:
FIELDTYPE **fields;
public:
int fieldCount(void){return FIELDCOUNT;}
MasterCounter(int startVal, ...) : counter(0, startVal, 1){
#ifdef DEBUG_MC
std::cout<<"MasterCounter::MasterCounter(startVal, ...)"<<std::endl;
#endif
int maxC=1;
if (FIELDCOUNT){
if (!(fields=new FIELDTYPE*[FIELDCOUNT])){
std::cerr<<"MasterCounter: Out of memory error"<<std::endl;
exit(-1);
}
for (int i=0;i<FIELDCOUNT;i++)
fields[i]=NULL;
va_list ap;
va_start(ap, startVal);
for (int i=0;i<FIELDCOUNT;i++){
int temp=va_arg(ap, int);
if (i==0)
maxC*=temp;
maxC*=temp;
if (!(fields[i]=new FIELDTYPE(0, 0,temp))){
std::cerr<<"MasterCounter: Out of memory error 1"<<std::endl;
exit(-1);
}
}
va_end(ap);
setMaxCount(maxC);
updateFields();
}
#ifdef DEBUG_MC
std::cout<<"MasterCounter::MasterCounter(startVal, ...) EXIT"<<std::endl;
#endif
}
MasterCounter(void) : counter(0, 0, 1){
#ifdef DEBUG_MC
std::cout<<"MasterCounter::MasterCounter()"<<std::endl;
#endif
if (FIELDCOUNT){
fields=new FIELDTYPE*[FIELDCOUNT];
if (!fields){
std::cerr<<"MasterCounter: Out of memory error"<<std::endl;
exit(-1);
}
for (int i=0;i<FIELDCOUNT;i++)
fields[i]=NULL;
}
}
void init(int c, ...){
#ifdef DEBUG_MC
std::cout<<"MasterCount: init "<<c<<" ..."<<std::endl;
#endif
va_list ap;
va_start(ap, c);
init(c, ap);
va_end(ap);
}
void init(int c, va_list& ap){
#ifdef DEBUG_MC
std::cout<<"MasterCount: init "<<c<<std::endl;
#endif
count=c;
int maxC=1;
for (int i=0;i<FIELDCOUNT;i++){
int temp=va_arg(ap, int);
maxC*=temp;
//std::cout<<i<<" after "<<temp<<'\t'<<maxC<<std::endl;
fields[i]=new FIELDTYPE(0,0,temp);
if (!fields[i]){
std::cerr<<"MasterCounter: Out of memory error 1"<<std::endl;
exit(-1);
}
// std::cout<<FIELDCOUNT<< " looping"<<std::endl;
}
setMaxCount(maxC);
updateFields();
}
~MasterCounter(void){
#ifdef DEBUG_MC
std::cout<<"MasterCounter::~MasterCounter"<<std::endl;
#endif
if (fields) {
for (int i=0;i<FIELDCOUNT;i++){
if (fields[i]) delete fields[i];
fields[i]=NULL;
}
delete [] fields;
fields=NULL;
}
// std::cout<<"~MasterCounter: out"<<std::endl;
}
/// Sets the minimum count
int setMinCount(counter mc){return setMinCount(mc.getCount());}
int setMinCount(int mc){
#ifdef DEBUG_MC
std::cout<<"MasterCounter::setMinCount(mc="<<mc<<")"<<std::endl;
#endif
int temp=counter::setMinCount(mc);
updateFields();
return temp;
}
/// Sets the minimum count
int setMaxCount(counter mc){return setMaxCount(mc.getCount());}
int setMaxCount(int mc){
#ifdef DEBUG_MC
std::cout<<"MasterCounter::setMaxCount(mc="<<mc<<")"<<std::endl;
#endif
int temp=counter::setMaxCount(mc);
updateFields();
return temp;
}
// syncs the field with the new counter value
void updateFields(void){
//std::cout<<"masterCounter: updateFields"<<std::endl;
int temp=count, tempCarry;
for (int i=0;i<FIELDCOUNT;i++){
//std::cout<<i<<std::endl;
int which =FIELDCOUNT-i-1;
tempCarry=temp%fields[which]->getMaxCount();
temp=temp/fields[which]->getMaxCount();
*fields[which]=(int)tempCarry;
}
//std::cout<<"masterCounter: updateFields EXIT"<<std::endl;
}
// Logic operators
/* char operator==(counter& m) {return count == m.getCount();}
char operator!=(counter& m) {return count != m.getCount();}
char operator> (counter& m) {return count > m.getCount();}
char operator>=(counter& m) {return count >= m.getCount();}
char operator< (counter& m) {return count < m.getCount();}
char operator<=(counter& m) {return count <= m.getCount();}
*/
// Evaluational operators
MasterCounter& operator =(counter c){counter::operator=(c); updateFields();return *this;}
MasterCounter& operator =(int c){counter::operator=(c);updateFields();return *this;}
MasterCounter& operator+=(counter c){counter::operator+=(c); updateFields();return *this;}
MasterCounter& operator+=(int c){counter::operator+=(c);updateFields();return *this;}
MasterCounter& operator-=(counter c){counter::operator-=(c); updateFields();return *this;}
MasterCounter& operator-=(int c){counter::operator-=(c); updateFields();return *this;}
MasterCounter& operator*=(counter c){counter::operator*=(c); updateFields();return *this;}
MasterCounter& operator*=(int c){counter::operator*=(c); updateFields();return *this;}
MasterCounter& operator/=(counter c){counter::operator/=(c); updateFields();return *this;}
MasterCounter& operator/=(int c){counter::operator/=(c); updateFields();return *this;}
friend std::ostream& operator <<(std::ostream& o, MasterCounter<FIELDTYPE, FIELDCOUNT>& c) {
o << c.count<<"\tMinCount="<<c.minCount<<"\tcarry="<<c.carry<<"\tMaxCount="<<c.maxCount<<'\t';
return o;
}
};
#endif //MASTERCOUNTER_H_
|