This file is indexed.

/usr/include/casacore/tables/DataMan/VirtScaCol.tcc is in casacore-dev 2.2.0-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
//# VirtScaCol.cc: Base virtual column data manager class
//# Copyright (C) 1994,1995,1996,1999
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 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 Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//#        Internet email: aips2-request@nrao.edu.
//#        Postal address: AIPS++ Project Office
//#                        National Radio Astronomy Observatory
//#                        520 Edgemont Road
//#                        Charlottesville, VA 22903-2475 USA
//#
//# $Id$

#ifndef TABLES_VIRTSCACOL_TCC
#define TABLES_VIRTSCACOL_TCC

//# Includes
#include <casacore/tables/DataMan/VirtScaCol.h>
#include <casacore/casa/Arrays/Vector.h>
#include <casacore/casa/Utilities/ValTypeId.h>


namespace casacore { //# NAMESPACE CASACORE - BEGIN

template<class T>
VirtualScalarColumn<T>::~VirtualScalarColumn()
{}

template<class T>
Bool VirtualScalarColumn<T>::isWritable() const
    { return False; }

template<class T>
int VirtualScalarColumn<T>::dataType() const
    { return ValType::getType (static_cast<T*>(0)); }

template<class T>
String VirtualScalarColumn<T>::dataTypeId() const
{
    return valDataTypeId (static_cast<T*>(0));
}

template<class T>
Bool VirtualScalarColumn<T>::canAccessScalarColumn (Bool& reask) const
{
    reask = False;
    return True;
}


//# Implement the get/put functions via a macro.
//# In principle they are not possible.
//# The implementation is done using global functions iso. specializations
//# to overcome the limitations of the SGI compiler (in May 1995).
#define VIRTUALSCALARCOLUMN_GETPUT(TP,NM) \
template<class T> \
void VirtualScalarColumn<T>::aips_name2(get,NM) (uInt rownr, TP* dataPtr) \
    { getVirtualScalarColumn (this, rownr, dataPtr); } \
template<class T> \
void VirtualScalarColumn<T>::aips_name2(put,NM) (uInt rownr, \
                                                 const TP* dataPtr) \
    { putVirtualScalarColumn (this, rownr, dataPtr); }

VIRTUALSCALARCOLUMN_GETPUT(Bool,BoolV)
VIRTUALSCALARCOLUMN_GETPUT(uChar,uCharV)
VIRTUALSCALARCOLUMN_GETPUT(Short,ShortV)
VIRTUALSCALARCOLUMN_GETPUT(uShort,uShortV)
VIRTUALSCALARCOLUMN_GETPUT(Int,IntV)
VIRTUALSCALARCOLUMN_GETPUT(uInt,uIntV)
VIRTUALSCALARCOLUMN_GETPUT(float,floatV)
VIRTUALSCALARCOLUMN_GETPUT(double,doubleV)
VIRTUALSCALARCOLUMN_GETPUT(Complex,ComplexV)
VIRTUALSCALARCOLUMN_GETPUT(DComplex,DComplexV)
VIRTUALSCALARCOLUMN_GETPUT(String,StringV)

template<class T>
void VirtualScalarColumn<T>::getOtherV (uInt rownr, void* dataPtr)
    { get (rownr, *(T*)dataPtr); }
template<class T>
void VirtualScalarColumn<T>::putOtherV (uInt rownr, const void* dataPtr)
    { put (rownr, *(const T*)dataPtr); }


//# Implement the generic functions as typed functions.
template<class T>
void VirtualScalarColumn<T>::getScalarColumnV (void* dataPtr)
    { getScalarColumn (*(Vector<T>*)dataPtr); }
template<class T>
void VirtualScalarColumn<T>::putScalarColumnV (const void* dataPtr)
    { putScalarColumn (*(const Vector<T>*)dataPtr); }
template<class T>
uInt VirtualScalarColumn<T>::getBlockV (uInt rownr, uInt nrmax, void* dataPtr)
    { return getBlock (rownr, nrmax, (T*)dataPtr); }
template<class T>
void VirtualScalarColumn<T>::putBlockV (uInt rownr, uInt nrmax, const void* dataPtr)
    { putBlock (rownr, nrmax, (const T*)dataPtr); }


//# Now implement the default implementations of the typed functions.

//# The default implementation of put throws an exception.
template<class T>
void VirtualScalarColumn<T>::put (uInt, const T&)
    { throwPut(); }

//# The default implementation of get/putScalarColumn handles its data using
//# get/putBlock.
template<class T>
void VirtualScalarColumn<T>::getScalarColumn (Vector<T>& vec)
{
    Bool deleteIt;
    T* data = vec.getStorage (deleteIt);
    uInt nrgot;
    uInt rownr=0;
    for (uInt nrtodo=vec.nelements(); nrtodo>0;) {
        nrgot = getBlock (rownr, nrtodo, data);
        nrtodo -= nrgot;
        data   += nrgot;
	rownr  += nrgot;
    }
    vec.putStorage (data, deleteIt);
}
template<class T>
void VirtualScalarColumn<T>::putScalarColumn (const Vector<T>& vec)
{
    Bool deleteIt;
    const T* data =vec.getStorage (deleteIt);
    putBlock (0, vec.nelements(), data);
    vec.freeStorage (data, deleteIt);
}

//# The default implementation of getBlock gets one value.
//# The default implementation of putBlock puts one value at a time.
template<class T>
uInt VirtualScalarColumn<T>::getBlock (uInt rownr, uInt nrmax, T* dataPtr)
{
    if (nrmax > 0) {
	get (rownr, *dataPtr);
	return 1;
    }
    return 0;
}
template<class T>
void VirtualScalarColumn<T>::putBlock (uInt rownr, uInt nrmax, const T* dataPtr)
{
    while (nrmax > 0) {
	put (rownr++, *dataPtr++);
	nrmax--;
    }
}

} //# NAMESPACE CASACORE - END


#endif