+
+string hypercache::fileOfPath(const string& dressedfile) {
+ return dressedfile.substr(dressedfile.find_last_of("\\/")+1);
+}
+
+bool hypercache::readC() {
+ bool readret;
+
+ if ( readret = C->readConfig(&parentConfigs) )
+ activeCFile = fileOfPath(C->getInFileName());
+ else
+ activeCFile = "";
+
+ return readret;
+}
+
+void hypercache::writeC() {
+ C->writeConfig();
+ activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) );
+}
+
+void hypercache::writeO() {
+ if ( activeCFile != "" ) {
+ unsigned long afilehash = configcache::hash(activeCFile);
+ O->writeHeader("concurrent_cfile", (char*)(&afilehash), sizeof(unsigned long));
+ }
+
+ O->writeConfig();
+}
+
+bool hypercache::readO() {
+ bool readret;
+
+ if ( readret = O->readConfig() ) {
+ unsigned long *parentconfig = (unsigned long*)O->getHeader("concurrent_cfile");
+ if ( parentconfig != NULL )
+ addParentConfig(parentconfig);
+ }
+
+ return readret;
+}
+
+void hypercache::addParentConfig(const unsigned long *parentconfig) {
+ for (vector<unsigned long>::iterator parit = parentConfigs.begin(); parit != parentConfigs.end(); ++parit)
+ if ( *parit == *parentconfig )
+ return;
+
+ parentConfigs.push_back(*parentconfig);
+}