/* * ALMA - Atacama Large Millimeter Array * (c) European Southern Observatory, 2002 * (c) Associated Universities Inc., 2002 * Copyright by ESO (in the framework of the ALMA collaboration), * Copyright by AUI (in the framework of the ALMA collaboration), * All rights reserved. * * 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 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., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Warning! * -------------------------------------------------------------------- * | This is generated code! Do not modify this file. | * | If you do, all changes will be lost when the file is re-generated. | * -------------------------------------------------------------------- * * File CalReductionTable.cpp */ #include #include #include using asdm::ConversionException; using asdm::DuplicateKey; using asdm::OutOfBoundsException; #include #include #include #include using asdm::ASDM; using asdm::CalReductionTable; using asdm::CalReductionRow; using asdm::Parser; #include #include #include #include #include #include using namespace std; #include using namespace asdm; #include #include #ifndef WITHOUT_BOOST #include "boost/filesystem/operations.hpp" #include #else #include #endif namespace asdm { // The name of the entity we will store in this table. static string entityNameOfCalReduction = "CalReduction"; // An array of string containing the names of the columns of this table. // The array is filled in the order : key, required value, optional value. // static string attributesNamesOfCalReduction_a[] = { "calReductionId" , "numApplied" , "appliedCalibrations" , "numParam" , "paramSet" , "numInvalidConditions" , "invalidConditions" , "timeReduced" , "messages" , "software" , "softwareVersion" }; // A vector of string whose content is a copy of the strings in the array above. // static vector attributesNamesOfCalReduction_v (attributesNamesOfCalReduction_a, attributesNamesOfCalReduction_a + sizeof(attributesNamesOfCalReduction_a) / sizeof(attributesNamesOfCalReduction_a[0])); // An array of string containing the names of the columns of this table. // The array is filled in the order where the names would be read by default in the XML header of a file containing // the table exported in binary mode. // static string attributesNamesInBinOfCalReduction_a[] = { "calReductionId" , "numApplied" , "appliedCalibrations" , "numParam" , "paramSet" , "numInvalidConditions" , "invalidConditions" , "timeReduced" , "messages" , "software" , "softwareVersion" , }; // A vector of string whose content is a copy of the strings in the array above. // static vector attributesNamesInBinOfCalReduction_v(attributesNamesInBinOfCalReduction_a, attributesNamesInBinOfCalReduction_a + sizeof(attributesNamesInBinOfCalReduction_a) / sizeof(attributesNamesInBinOfCalReduction_a[0])); // The array of attributes (or column) names that make up key key. // string keyOfCalReduction_a[] = { "calReductionId" }; // A vector of strings which are copies of those stored in the array above. vector keyOfCalReduction_v(keyOfCalReduction_a, keyOfCalReduction_a + sizeof(keyOfCalReduction_a) / sizeof(keyOfCalReduction_a[0])); /** * Return the list of field names that make up key key * as a const reference to a vector of strings. */ const vector& CalReductionTable::getKeyName() { return keyOfCalReduction_v; } CalReductionTable::CalReductionTable(ASDM &c) : container(c) { // Define a default entity. entity.setEntityId(EntityId("uid://X0/X0/X0")); entity.setEntityIdEncrypted("na"); entity.setEntityTypeName("CalReductionTable"); entity.setEntityVersion("1"); entity.setInstanceVersion("1"); // Archive XML archiveAsBin = false; // File XML fileAsBin = false; // By default the table is considered as present in memory presentInMemory = true; // By default there is no load in progress loadInProgress = false; } /** * A destructor for CalReductionTable. */ CalReductionTable::~CalReductionTable() { for (unsigned int i = 0; i < privateRows.size(); i++) delete(privateRows.at(i)); } /** * Container to which this table belongs. */ ASDM &CalReductionTable::getContainer() const { return container; } /** * Return the number of rows in the table. */ unsigned int CalReductionTable::size() const { if (presentInMemory) return privateRows.size(); else return declaredSize; } /** * Return the name of this table. */ string CalReductionTable::getName() const { return entityNameOfCalReduction; } /** * Return the name of this table. */ string CalReductionTable::name() { return entityNameOfCalReduction; } /** * Return the the names of the attributes (or columns) of this table. */ const vector& CalReductionTable::getAttributesNames() { return attributesNamesOfCalReduction_v; } /** * Return the the names of the attributes (or columns) of this table as they appear by default * in an binary export of this table. */ const vector& CalReductionTable::defaultAttributesNamesInBin() { return attributesNamesInBinOfCalReduction_v; } /** * Return this table's Entity. */ Entity CalReductionTable::getEntity() const { return entity; } /** * Set this table's Entity. */ void CalReductionTable::setEntity(Entity e) { this->entity = e; } // // ====> Row creation. // /** * Create a new row. */ CalReductionRow *CalReductionTable::newRow() { return new CalReductionRow (*this); } /** * Create a new row initialized to the specified values. * @return a pointer on the created and initialized row. * @param numApplied * @param appliedCalibrations * @param numParam * @param paramSet * @param numInvalidConditions * @param invalidConditions * @param timeReduced * @param messages * @param software * @param softwareVersion */ CalReductionRow* CalReductionTable::newRow(int numApplied, std::vector appliedCalibrations, int numParam, std::vector paramSet, int numInvalidConditions, std::vector invalidConditions, ArrayTime timeReduced, std::string messages, std::string software, std::string softwareVersion){ CalReductionRow *row = new CalReductionRow(*this); row->setNumApplied(numApplied); row->setAppliedCalibrations(appliedCalibrations); row->setNumParam(numParam); row->setParamSet(paramSet); row->setNumInvalidConditions(numInvalidConditions); row->setInvalidConditions(invalidConditions); row->setTimeReduced(timeReduced); row->setMessages(messages); row->setSoftware(software); row->setSoftwareVersion(softwareVersion); return row; } CalReductionRow* CalReductionTable::newRow(CalReductionRow* row) { return new CalReductionRow(*this, row); } // // Append a row to its table. // /** * Look up the table for a row whose noautoincrementable attributes are matching their * homologues in *x. If a row is found this row else autoincrement *x.calReductionId, * add x to its table and returns x. * * @returns a pointer on a CalReductionRow. * @param x. A pointer on the row to be added. */ CalReductionRow* CalReductionTable::add(CalReductionRow* x) { CalReductionRow* aRow = lookup( x->getNumApplied() , x->getAppliedCalibrations() , x->getNumParam() , x->getParamSet() , x->getNumInvalidConditions() , x->getInvalidConditions() , x->getTimeReduced() , x->getMessages() , x->getSoftware() , x->getSoftwareVersion() ); if (aRow) return aRow; // Autoincrement calReductionId x->setCalReductionId(Tag(size(), TagType::CalReduction)); row.push_back(x); privateRows.push_back(x); x->isAdded(true); return x; } void CalReductionTable::addWithoutCheckingUnique(CalReductionRow * x) { if (getRowByKey( x->getCalReductionId() ) != (CalReductionRow *) 0) throw DuplicateKey("Dupicate key exception in ", "CalReductionTable"); row.push_back(x); privateRows.push_back(x); x->isAdded(true); } // // A private method to append a row to its table, used by input conversion // methods, with row uniqueness. // /** * If this table has an autoincrementable attribute then check if *x verifies the rule of uniqueness and throw exception if not. * Check if *x verifies the key uniqueness rule and throw an exception if not. * Append x to its table. * @param x a pointer on the row to be appended. * @returns a pointer on x. * @throws DuplicateKey * @throws UniquenessViolationException */ CalReductionRow* CalReductionTable::checkAndAdd(CalReductionRow* x, bool skipCheckUniqueness) { if (!skipCheckUniqueness) { if (lookup( x->getNumApplied() , x->getAppliedCalibrations() , x->getNumParam() , x->getParamSet() , x->getNumInvalidConditions() , x->getInvalidConditions() , x->getTimeReduced() , x->getMessages() , x->getSoftware() , x->getSoftwareVersion() )) throw UniquenessViolationException(); } if (getRowByKey( x->getCalReductionId() )) throw DuplicateKey("Duplicate key exception in ", "CalReductionTable"); row.push_back(x); privateRows.push_back(x); x->isAdded(true); return x; } // // A private method to brutally append a row to its table, without checking for row uniqueness. // void CalReductionTable::append(CalReductionRow *x) { privateRows.push_back(x); x->isAdded(true); } vector CalReductionTable::get() { checkPresenceInMemory(); return privateRows; } const vector& CalReductionTable::get() const { const_cast(*this).checkPresenceInMemory(); return privateRows; } /* ** Returns a CalReductionRow* given a key. ** @return a pointer to the row having the key whose values are passed as parameters, or 0 if ** no row exists for that key. ** */ CalReductionRow* CalReductionTable::getRowByKey(Tag calReductionId) { checkPresenceInMemory(); CalReductionRow* aRow = 0; for (unsigned int i = 0; i < privateRows.size(); i++) { aRow = row.at(i); if (aRow->calReductionId != calReductionId) continue; return aRow; } return 0; } /** * Look up the table for a row whose all attributes except the autoincrementable one * are equal to the corresponding parameters of the method. * @return a pointer on this row if any, 0 otherwise. * * @param numApplied. * @param appliedCalibrations. * @param numParam. * @param paramSet. * @param numInvalidConditions. * @param invalidConditions. * @param timeReduced. * @param messages. * @param software. * @param softwareVersion. */ CalReductionRow* CalReductionTable::lookup(int numApplied, std::vector appliedCalibrations, int numParam, std::vector paramSet, int numInvalidConditions, std::vector invalidConditions, ArrayTime timeReduced, std::string messages, std::string software, std::string softwareVersion) { CalReductionRow* aRow; for (unsigned int i = 0; i < privateRows.size(); i++) { aRow = privateRows.at(i); if (aRow->compareNoAutoInc(numApplied, appliedCalibrations, numParam, paramSet, numInvalidConditions, invalidConditions, timeReduced, messages, software, softwareVersion)) return aRow; } return 0; } #ifndef WITHOUT_ACS using asdmIDL::CalReductionTableIDL; #endif #ifndef WITHOUT_ACS // Conversion Methods CalReductionTableIDL *CalReductionTable::toIDL() { CalReductionTableIDL *x = new CalReductionTableIDL (); unsigned int nrow = size(); x->row.length(nrow); vector v = get(); for (unsigned int i = 0; i < nrow; ++i) { //x->row[i] = *(v[i]->toIDL()); v[i]->toIDL(x->row[i]); } return x; } void CalReductionTable::toIDL(asdmIDL::CalReductionTableIDL& x) const { unsigned int nrow = size(); x.row.length(nrow); vector v = get(); for (unsigned int i = 0; i < nrow; ++i) { v[i]->toIDL(x.row[i]); } } #endif #ifndef WITHOUT_ACS void CalReductionTable::fromIDL(CalReductionTableIDL x) { unsigned int nrow = x.row.length(); for (unsigned int i = 0; i < nrow; ++i) { CalReductionRow *tmp = newRow(); tmp->setFromIDL(x.row[i]); // checkAndAdd(tmp); add(tmp); } } #endif string CalReductionTable::toXML() { string buf; buf.append(" "); buf.append("\n"); buf.append(entity.toXML()); string s = container.getEntity().toXML(); // Change the "Entity" tag to "ContainerEntity". buf.append(" v = get(); for (unsigned int i = 0; i < v.size(); ++i) { try { buf.append(v[i]->toXML()); } catch (const NoSuchRow &e) { } buf.append(" "); } buf.append(" "); return buf; } string CalReductionTable::getVersion() const { return version; } void CalReductionTable::fromXML(string& tableInXML) { // // Look for a version information in the schemaVersion of the XML // xmlDoc *doc; #if LIBXML_VERSION >= 20703 doc = xmlReadMemory(tableInXML.data(), tableInXML.size(), "XMLTableHeader.xml", NULL, XML_PARSE_NOBLANKS|XML_PARSE_HUGE); #else doc = xmlReadMemory(tableInXML.data(), tableInXML.size(), "XMLTableHeader.xml", NULL, XML_PARSE_NOBLANKS); #endif if ( doc == NULL ) throw ConversionException("Failed to parse the xmlHeader into a DOM structure.", "CalReduction"); xmlNode* root_element = xmlDocGetRootElement(doc); if ( root_element == NULL || root_element->type != XML_ELEMENT_NODE ) throw ConversionException("Failed to retrieve the root element in the DOM structure.", "CalReduction"); xmlChar * propValue = xmlGetProp(root_element, (const xmlChar *) "schemaVersion"); if ( propValue != 0 ) { version = string( (const char*) propValue); xmlFree(propValue); } Parser xml(tableInXML); if (!xml.isStr(""); if (s.length() == 0) error(); Entity e; e.setFromXML(s); if (e.getEntityTypeName() != "CalReductionTable") error(); setEntity(e); // Skip the container's entity; but, it has to be there. s = xml.getElement(""); if (s.length() == 0) error(); // Get each row in the table. s = xml.getElementContent("",""); CalReductionRow *row; if (getContainer().checkRowUniqueness()) { try { while (s.length() != 0) { row = newRow(); row->setFromXML(s); checkAndAdd(row); s = xml.getElementContent("",""); } } catch (const DuplicateKey &e1) { throw ConversionException(e1.getMessage(),"CalReductionTable"); } catch (const UniquenessViolationException &e1) { throw ConversionException(e1.getMessage(),"CalReductionTable"); } catch (...) { // cout << "Unexpected error in CalReductionTable::checkAndAdd called from CalReductionTable::fromXML " << endl; } } else { try { while (s.length() != 0) { row = newRow(); row->setFromXML(s); addWithoutCheckingUnique(row); s = xml.getElementContent("",""); } } catch (const DuplicateKey &e1) { throw ConversionException(e1.getMessage(),"CalReductionTable"); } catch (...) { // cout << "Unexpected error in CalReductionTable::addWithoutCheckingUnique called from CalReductionTable::fromXML " << endl; } } if (!xml.isStr("")) error(); //Does not change the convention defined in the model. //archiveAsBin = false; //fileAsBin = false; // clean up the xmlDoc pointer if ( doc != NULL ) xmlFreeDoc(doc); } void CalReductionTable::error() { throw ConversionException("Invalid xml document","CalReduction"); } string CalReductionTable::MIMEXMLPart(const asdm::ByteOrder* byteOrder) { string UID = getEntity().getEntityId().toString(); string withoutUID = UID.substr(6); string containerUID = getContainer().getEntity().getEntityId().toString(); ostringstream oss; oss << ""; oss << "\n"; oss << "\n"; oss<< "\n"; oss<< "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; oss << "\n"; return oss.str(); } string CalReductionTable::toMIME(const asdm::ByteOrder* byteOrder) { EndianOSStream eoss(byteOrder); string UID = getEntity().getEntityId().toString(); // The MIME Header eoss <<"MIME-Version: 1.0"; eoss << "\n"; eoss << "Content-Type: Multipart/Related; boundary='MIME_boundary'; type='text/xml'; start= ''"; eoss <<"\n"; eoss <<"Content-Description: Correlator"; eoss <<"\n"; eoss <<"alma-uid:" << UID; eoss <<"\n"; eoss <<"\n"; // The MIME XML part header. eoss <<"--MIME_boundary"; eoss <<"\n"; eoss <<"Content-Type: text/xml; charset='ISO-8859-1'"; eoss <<"\n"; eoss <<"Content-Transfer-Encoding: 8bit"; eoss <<"\n"; eoss <<"Content-ID: "; eoss <<"\n"; eoss <<"\n"; // The MIME XML part content. eoss << MIMEXMLPart(byteOrder); // The MIME binary part header eoss <<"--MIME_boundary"; eoss <<"\n"; eoss <<"Content-Type: binary/octet-stream"; eoss <<"\n"; eoss <<"Content-ID: "; eoss <<"\n"; eoss <<"\n"; // The MIME binary content entity.toBin(eoss); container.getEntity().toBin(eoss); eoss.writeInt((int) privateRows.size()); for (unsigned int i = 0; i < privateRows.size(); i++) { privateRows.at(i)->toBin(eoss); } // The closing MIME boundary eoss << "\n--MIME_boundary--"; eoss << "\n"; return eoss.str(); } void CalReductionTable::setFromMIME(const string & mimeMsg) { string xmlPartMIMEHeader = "Content-ID: \n\n"; string binPartMIMEHeader = "--MIME_boundary\nContent-Type: binary/octet-stream\nContent-ID: \n\n"; // Detect the XML header. string::size_type loc0 = mimeMsg.find(xmlPartMIMEHeader, 0); if ( loc0 == string::npos) { // let's try with CRLFs xmlPartMIMEHeader = "Content-ID: \r\n\r\n"; loc0 = mimeMsg.find(xmlPartMIMEHeader, 0); if ( loc0 == string::npos ) throw ConversionException("Failed to detect the beginning of the XML header", "CalReduction"); } loc0 += xmlPartMIMEHeader.size(); // Look for the string announcing the binary part. string::size_type loc1 = mimeMsg.find( binPartMIMEHeader, loc0 ); if ( loc1 == string::npos ) { throw ConversionException("Failed to detect the beginning of the binary part", "CalReduction"); } // // Extract the xmlHeader and analyze it to find out what is the byte order and the sequence // of attribute names. // string xmlHeader = mimeMsg.substr(loc0, loc1-loc0); xmlDoc *doc; doc = xmlReadMemory(xmlHeader.data(), xmlHeader.size(), "BinaryTableHeader.xml", NULL, XML_PARSE_NOBLANKS); if ( doc == NULL ) throw ConversionException("Failed to parse the xmlHeader into a DOM structure.", "CalReduction"); // This vector will be filled by the names of all the attributes of the table // in the order in which they are expected to be found in the binary representation. // vector attributesSeq; xmlNode* root_element = xmlDocGetRootElement(doc); if ( root_element == NULL || root_element->type != XML_ELEMENT_NODE ) throw ConversionException("Failed to parse the xmlHeader into a DOM structure.", "CalReduction"); const ByteOrder* byteOrder=0; if ( string("ASDMBinaryTable").compare((const char*) root_element->name) == 0) { // Then it's an "old fashioned" MIME file for tables. // Just try to deserialize it with Big_Endian for the bytes ordering. byteOrder = asdm::ByteOrder::Big_Endian; // // Let's consider a default order for the sequence of attributes. // attributesSeq.push_back("calReductionId") ; attributesSeq.push_back("numApplied") ; attributesSeq.push_back("appliedCalibrations") ; attributesSeq.push_back("numParam") ; attributesSeq.push_back("paramSet") ; attributesSeq.push_back("numInvalidConditions") ; attributesSeq.push_back("invalidConditions") ; attributesSeq.push_back("timeReduced") ; attributesSeq.push_back("messages") ; attributesSeq.push_back("software") ; attributesSeq.push_back("softwareVersion") ; // And decide that it has version == "2" version = "2"; } else if (string("CalReductionTable").compare((const char*) root_element->name) == 0) { // It's a new (and correct) MIME file for tables. // // 1st ) Look for a BulkStoreRef element with an attribute byteOrder. // xmlNode* bulkStoreRef = 0; xmlNode* child = root_element->children; if (xmlHasProp(root_element, (const xmlChar*) "schemaVersion")) { xmlChar * value = xmlGetProp(root_element, (const xmlChar *) "schemaVersion"); version = string ((const char *) value); xmlFree(value); } // Skip the two first children (Entity and ContainerEntity). bulkStoreRef = (child == 0) ? 0 : ( (child->next) == 0 ? 0 : child->next->next ); if ( bulkStoreRef == 0 || (bulkStoreRef->type != XML_ELEMENT_NODE) || (string("BulkStoreRef").compare((const char*) bulkStoreRef->name) != 0)) throw ConversionException ("Could not find the element '/CalReductionTable/BulkStoreRef'. Invalid XML header '"+ xmlHeader + "'.", "CalReduction"); // We found BulkStoreRef, now look for its attribute byteOrder. _xmlAttr* byteOrderAttr = 0; for (struct _xmlAttr* attr = bulkStoreRef->properties; attr; attr = attr->next) if (string("byteOrder").compare((const char*) attr->name) == 0) { byteOrderAttr = attr; break; } if (byteOrderAttr == 0) throw ConversionException("Could not find the element '/CalReductionTable/BulkStoreRef/@byteOrder'. Invalid XML header '" + xmlHeader +"'.", "CalReduction"); string byteOrderValue = string((const char*) byteOrderAttr->children->content); if (!(byteOrder = asdm::ByteOrder::fromString(byteOrderValue))) throw ConversionException("No valid value retrieved for the element '/CalReductionTable/BulkStoreRef/@byteOrder'. Invalid XML header '" + xmlHeader + "'.", "CalReduction"); // // 2nd) Look for the Attributes element and grab the names of the elements it contains. // xmlNode* attributes = bulkStoreRef->next; if ( attributes == 0 || (attributes->type != XML_ELEMENT_NODE) || (string("Attributes").compare((const char*) attributes->name) != 0)) throw ConversionException ("Could not find the element '/CalReductionTable/Attributes'. Invalid XML header '"+ xmlHeader + "'.", "CalReduction"); xmlNode* childOfAttributes = attributes->children; while ( childOfAttributes != 0 && (childOfAttributes->type == XML_ELEMENT_NODE) ) { attributesSeq.push_back(string((const char*) childOfAttributes->name)); childOfAttributes = childOfAttributes->next; } } // Create an EndianISStream from the substring containing the binary part. EndianISStream eiss(mimeMsg.substr(loc1+binPartMIMEHeader.size()), byteOrder); entity = Entity::fromBin((EndianIStream&) eiss); // We do nothing with that but we have to read it. Entity containerEntity = Entity::fromBin((EndianIStream&) eiss); // Let's read numRows but ignore it and rely on the value specified in the ASDM.xml file. int numRows = ((EndianIStream&) eiss).readInt(); if ((numRows != -1) // Then these are *not* data produced at the EVLA. && ((unsigned int) numRows != this->declaredSize )) { // Then the declared size (in ASDM.xml) is not equal to the one // written into the binary representation of the table. cout << "The a number of rows ('" << numRows << "') declared in the binary representation of the table is different from the one declared in ASDM.xml ('" << this->declaredSize << "'). I'll proceed with the value declared in ASDM.xml" << endl; } if (getContainer().checkRowUniqueness()) { try { for (uint32_t i = 0; i < this->declaredSize; i++) { CalReductionRow* aRow = CalReductionRow::fromBin((EndianIStream&) eiss, *this, attributesSeq); checkAndAdd(aRow); } } catch (const DuplicateKey &e) { throw ConversionException("Error while writing binary data , the message was " + e.getMessage(), "CalReduction"); } catch (const TagFormatException &e) { throw ConversionException("Error while reading binary data , the message was " + e.getMessage(), "CalReduction"); } } else { for (uint32_t i = 0; i < this->declaredSize; i++) { CalReductionRow* aRow = CalReductionRow::fromBin((EndianIStream&) eiss, *this, attributesSeq); append(aRow); } } //Does not change the convention defined in the model. //archiveAsBin = true; //fileAsBin = true; if ( doc != NULL ) xmlFreeDoc(doc); } void CalReductionTable::setUnknownAttributeBinaryReader(const string& attributeName, BinaryAttributeReaderFunctor* barFctr) { // // Is this attribute really unknown ? // for (vector::const_iterator iter = attributesNamesOfCalReduction_v.begin(); iter != attributesNamesOfCalReduction_v.end(); iter++) { if ((*iter).compare(attributeName) == 0) throw ConversionException("the attribute '"+attributeName+"' is known you can't override the way it's read in the MIME binary file containing the table.", "CalReduction"); } // Ok then register the functor to activate when an unknown attribute is met during the reading of a binary table? unknownAttributes2Functors[attributeName] = barFctr; } BinaryAttributeReaderFunctor* CalReductionTable::getUnknownAttributeBinaryReader(const string& attributeName) const { map::const_iterator iter = unknownAttributes2Functors.find(attributeName); return (iter == unknownAttributes2Functors.end()) ? 0 : iter->second; } void CalReductionTable::toFile(string directory) { if (!directoryExists(directory.c_str()) && !createPath(directory.c_str())) { throw ConversionException("Could not create directory " , directory); } string fileName = directory + "/CalReduction.xml"; ofstream tableout(fileName.c_str(),ios::out|ios::trunc); if (tableout.rdstate() == ostream::failbit) throw ConversionException("Could not open file " + fileName + " to write ", "CalReduction"); if (fileAsBin) tableout << MIMEXMLPart(); else tableout << toXML() << endl; tableout.close(); if (tableout.rdstate() == ostream::failbit) throw ConversionException("Could not close file " + fileName, "CalReduction"); if (fileAsBin) { // write the bin serialized string fileName = directory + "/CalReduction.bin"; ofstream tableout(fileName.c_str(),ios::out|ios::trunc); if (tableout.rdstate() == ostream::failbit) throw ConversionException("Could not open file " + fileName + " to write ", "CalReduction"); tableout << toMIME() << endl; tableout.close(); if (tableout.rdstate() == ostream::failbit) throw ConversionException("Could not close file " + fileName, "CalReduction"); } } void CalReductionTable::setFromFile(const string& directory) { #ifndef WITHOUT_BOOST if (boost::filesystem::exists(boost::filesystem::path(uniqSlashes(directory + "/CalReduction.xml")))) setFromXMLFile(directory); else if (boost::filesystem::exists(boost::filesystem::path(uniqSlashes(directory + "/CalReduction.bin")))) setFromMIMEFile(directory); #else // alternative in Misc.h if (file_exists(uniqSlashes(directory + "/CalReduction.xml"))) setFromXMLFile(directory); else if (file_exists(uniqSlashes(directory + "/CalReduction.bin"))) setFromMIMEFile(directory); #endif else throw ConversionException("No file found for the CalReduction table", "CalReduction"); } void CalReductionTable::setFromMIMEFile(const string& directory) { string tablePath ; tablePath = directory + "/CalReduction.bin"; ifstream tablefile(tablePath.c_str(), ios::in|ios::binary); if (!tablefile.is_open()) { throw ConversionException("Could not open file " + tablePath, "CalReduction"); } // Read in a stringstream. stringstream ss; ss << tablefile.rdbuf(); if (tablefile.rdstate() == istream::failbit || tablefile.rdstate() == istream::badbit) { throw ConversionException("Error reading file " + tablePath,"CalReduction"); } // And close. tablefile.close(); if (tablefile.rdstate() == istream::failbit) throw ConversionException("Could not close file " + tablePath,"CalReduction"); setFromMIME(ss.str()); } /* void CalReductionTable::openMIMEFile (const string& directory) { // Open the file. string tablePath ; tablePath = directory + "/CalReduction.bin"; ifstream tablefile(tablePath.c_str(), ios::in|ios::binary); if (!tablefile.is_open()) throw ConversionException("Could not open file " + tablePath, "CalReduction"); // Locate the xmlPartMIMEHeader. string xmlPartMIMEHeader = "CONTENT-ID: \n\n"; CharComparator comparator; istreambuf_iterator BEGIN(tablefile.rdbuf()); istreambuf_iterator END; istreambuf_iterator it = search(BEGIN, END, xmlPartMIMEHeader.begin(), xmlPartMIMEHeader.end(), comparator); if (it == END) throw ConversionException("failed to detect the beginning of the XML header", "CalReduction"); // Locate the binaryPartMIMEHeader while accumulating the characters of the xml header. string binPartMIMEHeader = "--MIME_BOUNDARY\nCONTENT-TYPE: BINARY/OCTET-STREAM\nCONTENT-ID: \n\n"; string xmlHeader; CharCompAccumulator compaccumulator(&xmlHeader, 100000); ++it; it = search(it, END, binPartMIMEHeader.begin(), binPartMIMEHeader.end(), compaccumulator); if (it == END) throw ConversionException("failed to detect the beginning of the binary part", "CalReduction"); cout << xmlHeader << endl; // // We have the xmlHeader , let's parse it. // xmlDoc *doc; doc = xmlReadMemory(xmlHeader.data(), xmlHeader.size(), "BinaryTableHeader.xml", NULL, XML_PARSE_NOBLANKS); if ( doc == NULL ) throw ConversionException("Failed to parse the xmlHeader into a DOM structure.", "CalReduction"); // This vector will be filled by the names of all the attributes of the table // in the order in which they are expected to be found in the binary representation. // vector attributesSeq(attributesNamesInBinOfCalReduction_v); xmlNode* root_element = xmlDocGetRootElement(doc); if ( root_element == NULL || root_element->type != XML_ELEMENT_NODE ) throw ConversionException("Failed to parse the xmlHeader into a DOM structure.", "CalReduction"); const ByteOrder* byteOrder=0; if ( string("ASDMBinaryTable").compare((const char*) root_element->name) == 0) { // Then it's an "old fashioned" MIME file for tables. // Just try to deserialize it with Big_Endian for the bytes ordering. byteOrder = asdm::ByteOrder::Big_Endian; // And decide that it has version == "2" version = "2"; } else if (string("CalReductionTable").compare((const char*) root_element->name) == 0) { // It's a new (and correct) MIME file for tables. // // 1st ) Look for a BulkStoreRef element with an attribute byteOrder. // xmlNode* bulkStoreRef = 0; xmlNode* child = root_element->children; if (xmlHasProp(root_element, (const xmlChar*) "schemaVersion")) { xmlChar * value = xmlGetProp(root_element, (const xmlChar *) "schemaVersion"); version = string ((const char *) value); xmlFree(value); } // Skip the two first children (Entity and ContainerEntity). bulkStoreRef = (child == 0) ? 0 : ( (child->next) == 0 ? 0 : child->next->next ); if ( bulkStoreRef == 0 || (bulkStoreRef->type != XML_ELEMENT_NODE) || (string("BulkStoreRef").compare((const char*) bulkStoreRef->name) != 0)) throw ConversionException ("Could not find the element '/CalReductionTable/BulkStoreRef'. Invalid XML header '"+ xmlHeader + "'.", "CalReduction"); // We found BulkStoreRef, now look for its attribute byteOrder. _xmlAttr* byteOrderAttr = 0; for (struct _xmlAttr* attr = bulkStoreRef->properties; attr; attr = attr->next) if (string("byteOrder").compare((const char*) attr->name) == 0) { byteOrderAttr = attr; break; } if (byteOrderAttr == 0) throw ConversionException("Could not find the element '/CalReductionTable/BulkStoreRef/@byteOrder'. Invalid XML header '" + xmlHeader +"'.", "CalReduction"); string byteOrderValue = string((const char*) byteOrderAttr->children->content); if (!(byteOrder = asdm::ByteOrder::fromString(byteOrderValue))) throw ConversionException("No valid value retrieved for the element '/CalReductionTable/BulkStoreRef/@byteOrder'. Invalid XML header '" + xmlHeader + "'.", "CalReduction"); // // 2nd) Look for the Attributes element and grab the names of the elements it contains. // xmlNode* attributes = bulkStoreRef->next; if ( attributes == 0 || (attributes->type != XML_ELEMENT_NODE) || (string("Attributes").compare((const char*) attributes->name) != 0)) throw ConversionException ("Could not find the element '/CalReductionTable/Attributes'. Invalid XML header '"+ xmlHeader + "'.", "CalReduction"); xmlNode* childOfAttributes = attributes->children; while ( childOfAttributes != 0 && (childOfAttributes->type == XML_ELEMENT_NODE) ) { attributesSeq.push_back(string((const char*) childOfAttributes->name)); childOfAttributes = childOfAttributes->next; } } // Create an EndianISStream from the substring containing the binary part. EndianIFStream eifs(&tablefile, byteOrder); entity = Entity::fromBin((EndianIStream &) eifs); // We do nothing with that but we have to read it. Entity containerEntity = Entity::fromBin((EndianIStream &) eifs); // Let's read numRows but ignore it and rely on the value specified in the ASDM.xml file. int numRows = eifs.readInt(); if ((numRows != -1) // Then these are *not* data produced at the EVLA. && ((unsigned int) numRows != this->declaredSize )) { // Then the declared size (in ASDM.xml) is not equal to the one // written into the binary representation of the table. cout << "The a number of rows ('" << numRows << "') declared in the binary representation of the table is different from the one declared in ASDM.xml ('" << this->declaredSize << "'). I'll proceed with the value declared in ASDM.xml" << endl; } // clean up xmlDoc pointer if ( doc != NULL ) xmlFreeDoc(doc); } */ void CalReductionTable::setFromXMLFile(const string& directory) { string tablePath ; tablePath = directory + "/CalReduction.xml"; /* ifstream tablefile(tablePath.c_str(), ios::in|ios::binary); if (!tablefile.is_open()) { throw ConversionException("Could not open file " + tablePath, "CalReduction"); } // Read in a stringstream. stringstream ss; ss << tablefile.rdbuf(); if (tablefile.rdstate() == istream::failbit || tablefile.rdstate() == istream::badbit) { throw ConversionException("Error reading file '" + tablePath + "'", "CalReduction"); } // And close tablefile.close(); if (tablefile.rdstate() == istream::failbit) throw ConversionException("Could not close file '" + tablePath + "'", "CalReduction"); // Let's make a string out of the stringstream content and empty the stringstream. string xmlDocument = ss.str(); ss.str(""); // Let's make a very primitive check to decide // whether the XML content represents the table // or refers to it via a ::iterator iter; if ((iter=noAutoIncIds.find(key)) == noAutoIncIds.end()) { // There is not yet a combination of the non autoinc attributes values in the hashtable // Initialize calReductionId to Tag(0). x->setCalReductionId(Tag(0, TagType::CalReduction)); // Record it in the map. noAutoIncIds.insert(make_pair(key, 0)); } else { // There is already a combination of the non autoinc attributes values in the hashtable // Increment its value. int n = iter->second + 1; // Initialize calReductionId to Tag(n). x->setCalReductionId(Tag(n, TagType::CalReduction)); // Record it in the map. noAutoIncIds.insert(make_pair(key, n)); } } } // End namespace asdm