From 698ae18f535c3e388b6ebcdca1582005a29ff2f2 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Mon, 29 Feb 2016 11:52:16 +0000 Subject: [PATCH] Tape is in the dump and successfully restored. --- src/restore.c | 52 ++++++++++++++++++++++++++++++++++++++++------------ 1 files changed, 40 insertions(+), 12 deletions(-) diff --git a/src/restore.c b/src/restore.c index 74b0ef6..5db794e 100644 --- a/src/restore.c +++ b/src/restore.c @@ -12,13 +12,14 @@ #include "triangle.h" #include "bond.h" #include "energy.h" +#include "poly.h" #include "initial_distribution.h" +#include "io.h" ts_bool parseDump(char *dumpfname) { xmlDocPtr doc; xmlNodePtr cur, cur1,cur2; ts_vesicle *vesicle=NULL; - doc = xmlParseFile(dumpfname); if (doc == NULL ) { @@ -37,6 +38,11 @@ cur = cur->xmlChildrenNode; while (cur != NULL) { + + if ((!xmlStrcmp(cur->name, (const xmlChar *)"tape"))){ + setGlobalTapeTXTfromTapeTag(doc, cur); + } + if ((!xmlStrcmp(cur->name, (const xmlChar *)"trisurf"))){ vesicle=parseTrisurfTag(doc, cur); } @@ -50,12 +56,12 @@ if ((!xmlStrcmp(cur2->name, (const xmlChar *)"Points"))){ fprintf(stderr,"Found point data\n"); if(vesicle!=NULL) - parseXMLVertexPosition(vesicle, doc, cur); + parseXMLVertexPosition(vesicle, doc, cur2); } if ((!xmlStrcmp(cur2->name, (const xmlChar *)"Cells"))){ fprintf(stderr,"Found cell(Bonds) data\n"); if(vesicle!=NULL) - parseXMLBonds(vesicle, doc, cur); + parseXMLBonds(vesicle, doc, cur2); } cur2=cur2->next; } @@ -68,17 +74,27 @@ } xmlFreeDoc(doc); + + vesicle->poly_list=init_poly_list(0, 0, vesicle->vlist, vesicle); + init_normal_vectors(vesicle->tlist); mean_curvature_and_energy(vesicle); /* TODO: cells, polymeres, filaments, core, tape */ fprintf(stderr,"Restoration completed\n"); +// write_vertex_xml_file(vesicle,999); vesicle_free(vesicle); exit(0); return TS_SUCCESS; } +ts_bool setGlobalTapeTXTfromTapeTag(xmlDocPtr doc, xmlNodePtr cur){ + xmlChar *tape = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); + strcpy(tapetxt,(char *)tape); + xmlFree(tape); + return TS_SUCCESS; +} /* this is a parser of additional data in xml */ @@ -124,8 +140,10 @@ nvtx = xmlGetProp(cur, (xmlChar *)"nvtx"); npoly=xmlGetProp(cur, (xmlChar *)"npoly"); nfono=xmlGetProp(cur, (xmlChar *)"nfono"); - fprintf(stderr,"nvtx=%u\n",atoi((char *)nvtx)); - ts_vesicle *vesicle=init_vesicle(atoi((char *)nvtx),10,10,10,0.1); + ts_tape *tape=parsetapebuffer(tapetxt); + //fprintf(stderr,"nvtx=%u\n",atoi((char *)nvtx)); + //TODO: check if nvtx is in agreement with nshell from tape + ts_vesicle *vesicle=init_vesicle(atoi((char *)nvtx),tape->ncxmax,tape->ncymax,tape->nczmax,tape->stepsize); //vesicle->poly_list=init_poly_list(atoi((char *)npoly),atoi((char *)nmono), vesicle->vlist, vesicle); xmlFree(nvtx); xmlFree(npoly); @@ -150,6 +168,8 @@ } + vesicle->tape=tape; + set_vesicle_values_from_tape(vesicle); return vesicle; } @@ -272,43 +292,51 @@ points = xmlNodeListGetString(doc, child->xmlChildrenNode, 1); pts=(char *)points; token[0]=strtok(pts," "); - for(i=1;i<3;i++) token[i]=strtok(NULL," "); + token[1]=strtok(NULL," "); + token[2]=strtok(NULL,"\n"); idx=0; while(token[0]!=NULL){ vesicle->vlist->vtx[idx]->x=atof(token[0]); vesicle->vlist->vtx[idx]->y=atof(token[1]); vesicle->vlist->vtx[idx]->z=atof(token[2]); - for(i=0;i<3;i++) token[i]=strtok(NULL," "); + for(i=0;i<2;i++) token[i]=strtok(NULL," "); + token[2]=strtok(NULL,"\n"); idx++; } xmlFree(points); } child=child->next; } + fprintf(stderr,"Vertices position j=%d\n",idx); + return TS_SUCCESS; } ts_bool parseXMLBonds(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur){ xmlNodePtr child = cur->xmlChildrenNode; - xmlChar *bonds; + xmlChar *bonds, *conname; char *b; - int i, idx; + int idx; char *token[2]; while (child != NULL) { - if ((!xmlStrcmp(child->name, (const xmlChar *)"DataArray"))){ + conname=xmlGetProp(child, (xmlChar *)"Name"); + if ((!xmlStrcmp(child->name, (const xmlChar *)"DataArray")) && !xmlStrcmp(conname, (const xmlChar *)"connectivity") ){ bonds = xmlNodeListGetString(doc, child->xmlChildrenNode, 1); b=(char *)bonds; token[0]=strtok(b," "); - token[1]=strtok(NULL," "); + token[1]=strtok(NULL,"\n"); idx=0; while(token[0]!=NULL){ bond_add(vesicle->blist, vesicle->vlist->vtx[atoi(token[0])], vesicle->vlist->vtx[atoi(token[1])]); - for(i=0;i<2;i++) token[i]=strtok(NULL," "); + token[0]=strtok(NULL," "); + token[1]=strtok(NULL,"\n"); idx++; } xmlFree(bonds); } + xmlFree(conname); child=child->next; } + fprintf(stderr,"Bond data j=%d\n",idx); return TS_SUCCESS; } -- Gitblit v1.9.3