[1778] | 1 | //
|
---|
| 2 | // C++ Interface: Filler
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2010
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
| 12 | #ifndef ASAPFILLER_H
|
---|
| 13 | #define ASAPFILLER_H
|
---|
| 14 |
|
---|
| 15 | #include <casa/aips.h>
|
---|
[1786] | 16 | #include <casa/Exceptions.h>
|
---|
[1778] | 17 | #include <casa/Utilities/CountedPtr.h>
|
---|
[1904] | 18 | #include <casa/Containers/Record.h>
|
---|
[1813] | 19 | #include <casa/OS/File.h>
|
---|
| 20 |
|
---|
[1778] | 21 | #include <string>
|
---|
| 22 |
|
---|
[1786] | 23 | #include "ScantableWrapper.h"
|
---|
| 24 | #include "FillerBase.h"
|
---|
| 25 | #include "PKSFiller.h"
|
---|
| 26 | #include "NROFiller.h"
|
---|
| 27 |
|
---|
[1794] | 28 |
|
---|
[1778] | 29 | namespace asap
|
---|
| 30 | {
|
---|
[1786] | 31 | class FillerWrapper
|
---|
[1778] | 32 | {
|
---|
| 33 | public:
|
---|
| 34 |
|
---|
[1787] | 35 | explicit FillerWrapper(ScantableWrapper tbl) : filler_(0), attached_(false)
|
---|
[1786] | 36 | { stable_ = tbl.getCP(); }
|
---|
| 37 |
|
---|
| 38 | virtual ~FillerWrapper() { close(); }
|
---|
| 39 |
|
---|
| 40 |
|
---|
[3106] | 41 | void open(const std::string& filename, const casacore::Record& rec) {
|
---|
[1904] | 42 | // void open(const std::string& filename) {
|
---|
[3106] | 43 | casacore::File file(filename);
|
---|
[1813] | 44 | if ( !file.exists() ) {
|
---|
| 45 | throw(AipsError("File does not exist"));
|
---|
| 46 | }
|
---|
[2289] | 47 | int fileType = dataType( filename ) ;
|
---|
| 48 | if ( fileType == 0 ) {
|
---|
| 49 | filler_ = new PKSFiller(stable_);
|
---|
| 50 | if (filler_->open(filename, rec)) {
|
---|
| 51 | attached_ = true;
|
---|
| 52 | return;
|
---|
| 53 | }
|
---|
[1778] | 54 | }
|
---|
[2289] | 55 | else if ( fileType == 1 ) {
|
---|
| 56 | filler_ = new NROFiller(stable_);
|
---|
| 57 | if (filler_->open(filename, rec)) {
|
---|
| 58 | attached_ = true;
|
---|
| 59 | return;
|
---|
| 60 | }
|
---|
[1778] | 61 | }
|
---|
[1786] | 62 | filler_ = 0;
|
---|
| 63 | attached_ = false;
|
---|
[3106] | 64 | throw casacore::AipsError("Unknown Data Format");
|
---|
[1778] | 65 | }
|
---|
| 66 | void close() {
|
---|
[1786] | 67 | if (attached_) {
|
---|
| 68 | filler_->close();
|
---|
[1778] | 69 | }
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | void fill() {
|
---|
[1786] | 73 | if (attached_) {
|
---|
| 74 | filler_->fill();
|
---|
[1778] | 75 | }
|
---|
| 76 | }
|
---|
[1786] | 77 |
|
---|
| 78 | void setReferenceRegex(const std::string& rx) {
|
---|
| 79 | if (attached_) {
|
---|
| 80 | filler_->setReferenceRegex(rx);
|
---|
[1778] | 81 | }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | private:
|
---|
[1786] | 85 |
|
---|
[2289] | 86 | int dataType( const std::string &filename ) {
|
---|
| 87 | int ret = -1 ;
|
---|
| 88 | int pks = 0 ;
|
---|
| 89 | int nro = 1 ;
|
---|
[3106] | 90 | casacore::File file( filename ) ;
|
---|
[2289] | 91 | if ( file.isDirectory() )
|
---|
| 92 | ret = pks ;
|
---|
| 93 | else if ( file.isReadable() ) {
|
---|
[2334] | 94 | // if we want to compare to 6 characters we should only read in 6
|
---|
[2289] | 95 | FILE *f = fopen( filename.c_str(), "r") ;
|
---|
[2334] | 96 | char buf[7] ;
|
---|
[2760] | 97 | fread( buf, 6, 1, f ) ;
|
---|
[2289] | 98 | fclose( f ) ;
|
---|
[2334] | 99 | buf[6]='\0' ;
|
---|
[2289] | 100 | // NRO data has two types:
|
---|
| 101 | // 1) specific binary data for OTF observation
|
---|
| 102 | // 2) (pseudo-)FITS data that doesn't have primary HDU
|
---|
| 103 | // So, one can distinguish NRO and non-NRO data by examining
|
---|
| 104 | // first keyword name.
|
---|
[3106] | 105 | if ( casacore::String( buf ) == "SIMPLE" ) {
|
---|
[2289] | 106 | ret = pks ;
|
---|
| 107 | }
|
---|
| 108 | else {
|
---|
| 109 | ret = nro ;
|
---|
| 110 | }
|
---|
| 111 | }
|
---|
| 112 | return ret ;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[1811] | 115 | FillerWrapper();
|
---|
| 116 | FillerWrapper(const FillerWrapper&);
|
---|
| 117 | FillerWrapper& operator=(const FillerWrapper&);
|
---|
[1787] | 118 |
|
---|
[3106] | 119 | casacore::CountedPtr<FillerBase> filler_;
|
---|
[1786] | 120 | bool attached_;
|
---|
[3106] | 121 | casacore::CountedPtr<Scantable> stable_;
|
---|
[1778] | 122 | };
|
---|
| 123 |
|
---|
| 124 | };
|
---|
[1786] | 125 | #endif
|
---|