[BACK]Return to bsave.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / io

Annotation of OpenXM_contrib2/asir2000/io/bsave.c, Revision 1.21

1.2       noro        1: /*
                      2:  * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
                      3:  * All rights reserved.
                      4:  *
                      5:  * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,
                      6:  * non-exclusive and royalty-free license to use, copy, modify and
                      7:  * redistribute, solely for non-commercial and non-profit purposes, the
                      8:  * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and
                      9:  * conditions of this Agreement. For the avoidance of doubt, you acquire
                     10:  * only a limited right to use the SOFTWARE hereunder, and FLL or any
                     11:  * third party developer retains all rights, including but not limited to
                     12:  * copyrights, in and to the SOFTWARE.
                     13:  *
                     14:  * (1) FLL does not grant you a license in any way for commercial
                     15:  * purposes. You may use the SOFTWARE only for non-commercial and
                     16:  * non-profit purposes only, such as academic, research and internal
                     17:  * business use.
                     18:  * (2) The SOFTWARE is protected by the Copyright Law of Japan and
                     19:  * international copyright treaties. If you make copies of the SOFTWARE,
                     20:  * with or without modification, as permitted hereunder, you shall affix
                     21:  * to all such copies of the SOFTWARE the above copyright notice.
                     22:  * (3) An explicit reference to this SOFTWARE and its copyright owner
                     23:  * shall be made on your publication or presentation in any form of the
                     24:  * results obtained by use of the SOFTWARE.
                     25:  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
1.3       noro       26:  * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
1.2       noro       27:  * for such modification or the source code of the modified part of the
                     28:  * SOFTWARE.
                     29:  *
                     30:  * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL
                     31:  * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND
                     32:  * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
                     33:  * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'
                     34:  * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY
                     35:  * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.
                     36:  * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,
                     37:  * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY
                     38:  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
                     39:  * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES
                     40:  * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES
                     41:  * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY
                     42:  * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF
                     43:  * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART
                     44:  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
                     45:  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
                     46:  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
1.21    ! noro       47:  * $OpenXM: OpenXM_contrib2/asir2000/io/bsave.c,v 1.20 2018/03/29 01:32:53 noro Exp $
1.2       noro       48: */
1.1       noro       49: /* saveXXX must not use GC_malloc(), GC_malloc_atomic(). */
                     50:
                     51: #include "ca.h"
                     52: #include "parse.h"
                     53: #include "com.h"
1.21    ! noro       54: #include "ox.h"
1.1       noro       55:
1.15      noro       56: void savenbp(FILE *s,NBP p);
                     57:
1.1       noro       58: void (*savef[])() = { 0, savenum, savep, saver, savelist, savevect,
1.20      noro       59:   savemat, savestring, 0, savedp, saveui, saveerror,0,0,0,savegfmmat,
                     60:   savebytearray, 0, 0, 0, 0, 0, 0, 0, 0,  savenbp };
1.6       saito      61: #if defined(INTERVAL)
1.7       saito      62: void saveitv();
                     63: void saveitvd();
1.14      noro       64: void (*nsavef[])() = { saveq, savereal, 0, savebf, saveitv, saveitvd, 0, saveitv, savecplx ,savemi, savelm, savegf2n, savegfpn, savegfs, savegfsn,savedalg};
1.6       saito      65: #else
1.14      noro       66: void (*nsavef[])() = { saveq, savereal, 0, savebf, savecplx ,savemi, savelm, savegf2n, savegfpn, savegfs, savegfsn,savedalg};
1.6       saito      67: #endif
1.1       noro       68:
                     69: static short zeroval = 0;
                     70:
1.10      noro       71: void saveobj(FILE *s,Obj p)
1.1       noro       72: {
1.20      noro       73:   if ( !p )
                     74:     write_short(s,&zeroval);
                     75:   else if ( !savef[OID(p)] )
                     76:     error("saveobj : not implemented");
                     77:   else
                     78:     (*savef[OID(p)])(s,p);
1.1       noro       79: }
                     80:
1.10      noro       81: void savenum(FILE *s,Num p)
1.1       noro       82: {
1.20      noro       83:   if ( !nsavef[NID(p)] )
                     84:     error("savenum : not implemented");
                     85:   else {
                     86:     write_short(s,&OID(p)); write_char(s,&NID(p));
                     87:     write_char(s,&(p->pad));
                     88:     (*nsavef[NID(p)])(s,p);
                     89:   }
1.1       noro       90: }
                     91:
1.10      noro       92: void saveq(FILE *s,Q p)
1.1       noro       93: {
1.20      noro       94:   int size[2];
                     95:   int len = 2;
1.1       noro       96:
1.20      noro       97:   size[0] = PL(NM(p)); size[1] = DN(p) ? PL(DN(p)) : 0;
                     98:   write_intarray(s,size,len);
                     99:   write_intarray(s,BD(NM(p)),size[0]);
                    100:   if ( size[1] )
                    101:     write_intarray(s,BD(DN(p)),size[1]);
1.1       noro      102: }
                    103:
1.10      noro      104: void savereal(FILE *s,Real p)
1.1       noro      105: { write_double(s,&BDY(p)); }
                    106:
                    107: /*
                    108:  * BDY(p) = |  z[0]  |   z[1]  | z[2] | ... | z[lg(z)-1] |
                    109:  * -> | id(2) | nid(1) | sgn(1) | expo>>32 | expo&0xffffffff | len | ... |
                    110:  */
                    111:
1.10      noro      112: void savebf(FILE *s,BF p)
1.1       noro      113: {
1.17      noro      114:   unsigned int zero = 0;
                    115:   unsigned int prec;
1.19      noro      116:   L exp;
1.17      noro      117:   int sgn,len,t;
                    118:
                    119:   prec = MPFR_PREC(p->body);
                    120:   exp = MPFR_EXP(p->body);
                    121:   sgn = MPFR_SIGN(p->body);
1.19      noro      122:   len = MPFR_LIMB_SIZE(p->body);
1.17      noro      123:
1.19      noro      124:   write_int(s,&sgn);
                    125:   write_int(s,(int *)&prec);
                    126:   write_int64(s,(UL *)&exp);
                    127: #if defined(VISUAL)
                    128: #if !defined(_WIN64)
1.20      noro      129:   write_int(s,&len);
                    130:   write_intarray(s,p->body->_mpfr_d,len);
1.19      noro      131: #else
1.20      noro      132:   t = (prec+31)/32;
                    133:   write_int(s,&t);
                    134:   write_longarray(s,(long long *)p->body->_mpfr_d,t);
1.19      noro      135: #endif
                    136: #else
1.16      ohara     137: #if SIZEOF_LONG == 4
1.20      noro      138:   write_int(s,&len);
                    139:   write_intarray(s,p->body->_mpfr_d,len);
1.17      noro      140: #else /* SIZEOF_LONG == 8 */
1.20      noro      141:   t = (prec+31)/32;
                    142:   write_int(s,&t);
                    143:   write_longarray(s,p->body->_mpfr_d,t);
1.1       noro      144: #endif
1.19      noro      145: #endif
1.1       noro      146: }
1.6       saito     147:
                    148: #if defined(INTERVAL)
1.10      noro      149: void saveitv(FILE *s,Itv p)
1.6       saito     150: {
1.20      noro      151:   saveobj(s,(Obj)INF(p));
                    152:   saveobj(s,(Obj)SUP(p));
1.6       saito     153: }
                    154:
1.11      kondoh    155: void saveitvd(FILE *s,IntervalDouble p)
1.6       saito     156: {
1.20      noro      157:   write_double(s,&INF(p));
                    158:   write_double(s,&SUP(p));
1.6       saito     159: }
                    160: #endif
1.1       noro      161:
1.10      noro      162: void savecplx(FILE *s,C p)
1.1       noro      163: { saveobj(s,(Obj)p->r); saveobj(s,(Obj)p->i); }
                    164:
1.10      noro      165: void savemi(FILE *s,MQ p)
1.1       noro      166: { write_int(s,&CONT(p)); }
                    167:
1.10      noro      168: void savelm(FILE *s,LM p)
1.1       noro      169: {
1.20      noro      170:   int size;
1.1       noro      171:
1.20      noro      172:   size = PL(BDY(p));
                    173:   write_int(s,&size);
                    174:   write_intarray(s,BD(BDY(p)),size);
1.1       noro      175: }
                    176:
1.10      noro      177: void savegf2n(FILE *s,GF2N p)
1.1       noro      178: {
1.20      noro      179:   int len;
1.1       noro      180:
1.20      noro      181:   len = p->body->w;
                    182:   write_int(s,&len);
                    183:   write_intarray(s,p->body->b,len);
1.1       noro      184: }
                    185:
1.10      noro      186: void savegfpn(FILE *s,GFPN p)
1.1       noro      187: {
1.20      noro      188:   int d,i;
1.1       noro      189:
1.20      noro      190:   d = p->body->d;
                    191:   write_int(s,&d);
                    192:   for ( i = 0; i <= d; i++ )
                    193:     saveobj(s,(Obj)p->body->c[i]);
1.1       noro      194: }
1.8       noro      195:
1.10      noro      196: void savegfs(FILE *s,GFS p)
1.8       noro      197: { write_int(s,&CONT(p)); }
1.9       noro      198:
1.10      noro      199: void savegfsn(FILE *s,GFSN p)
1.9       noro      200: {
1.20      noro      201:   int d;
1.9       noro      202:
1.20      noro      203:   d = DEG(BDY(p));
                    204:   write_int(s,&d);
                    205:   write_intarray(s,COEF(BDY(p)),d+1);
1.14      noro      206: }
                    207:
                    208: void savedalg(FILE *s,DAlg p)
                    209: {
1.20      noro      210:   saveobj(s,(Obj)p->nm);
                    211:   saveobj(s,(Obj)p->dn);
1.9       noro      212: }
1.1       noro      213:
1.10      noro      214: void savep(FILE *s,P p)
1.1       noro      215: {
1.20      noro      216:   DCP dc;
                    217:   int n;
                    218:   int vindex;
                    219:
                    220:   if ( NUM(p) )
                    221:     savenum(s,(Num)p);
                    222:   else {
                    223:     vindex = save_convv(VR(p));
                    224:     for ( dc = DC(p), n = 0; dc; dc = NEXT(dc), n++ );
                    225:     write_short(s,&OID(p));
                    226:     write_int(s,&vindex);
                    227:     if ( vindex < 0 )
                    228:       savepfins(s,VR(p));
                    229:     write_int(s,&n);
                    230:     for ( dc = DC(p); dc; dc = NEXT(dc) ) {
                    231:       saveobj(s,(Obj)DEG(dc)); saveobj(s,(Obj)COEF(dc));
                    232:     }
                    233:   }
1.1       noro      234: }
                    235:
                    236: /* save a pure function (v->attr = V_PF) */
                    237: /* |name(str)|argc(int)|darray(intarray)|args| */
                    238:
1.10      noro      239: void savepfins(FILE *s,V v)
1.1       noro      240: {
1.20      noro      241:   PFINS ins;
                    242:   PF pf;
                    243:   int argc,i;
                    244:   int *darray;
                    245:
                    246:   ins = (PFINS)v->priv;
                    247:   pf = ins->pf;
                    248:   savestr(s,NAME(pf));
                    249:   argc = pf->argc;
                    250:   write_int(s,&argc);
                    251:   darray = (int *)ALLOCA(argc*sizeof(int));
                    252:   for ( i = 0; i < argc; i++ )
                    253:     darray[i] = ins->ad[i].d;
                    254:   write_intarray(s,darray,argc);
                    255:   for ( i = 0; i < argc; i++ )
                    256:     saveobj(s,ins->ad[i].arg);
1.1       noro      257: }
                    258:
1.10      noro      259: void saver(FILE *s,R p)
1.1       noro      260: {
1.20      noro      261:   if ( !RAT(p) )
                    262:     savep(s,(P)p);
                    263:   else {
                    264:     write_short(s,&OID(p)); write_short(s,&p->reduced);
                    265:     savep(s,NM(p)); savep(s,DN(p));
                    266:   }
1.1       noro      267: }
                    268:
1.10      noro      269: void savelist(FILE *s,LIST p)
1.1       noro      270: {
1.20      noro      271:   int n;
                    272:   NODE tn;
1.1       noro      273:
1.20      noro      274:   for ( tn = BDY(p), n = 0; tn; tn = NEXT(tn), n++ );
                    275:   write_short(s,&OID(p)); write_int(s,&n);
                    276:   for ( tn = BDY(p); tn; tn = NEXT(tn) )
                    277:     saveobj(s,(Obj)BDY(tn));
1.1       noro      278: }
                    279:
1.10      noro      280: void savevect(FILE *s,VECT p)
1.1       noro      281: {
1.20      noro      282:   int i,len = 2;
1.1       noro      283:
1.20      noro      284:   write_short(s,&OID(p)); write_int(s,&p->len);
                    285:   for ( i = 0, len = p->len; i < len; i++ )
                    286:     saveobj(s,(Obj)BDY(p)[i]);
1.1       noro      287: }
                    288:
1.10      noro      289: void savemat(FILE *s,MAT p)
1.1       noro      290: {
1.20      noro      291:   int i,j,row,col;
                    292:   int len = 3;
1.1       noro      293:
1.20      noro      294:   write_short(s,&OID(p)); write_int(s,&p->row); write_int(s,&p->col);
                    295:   for ( i = 0, row = p->row, col = p->col; i < row; i++ )
                    296:     for ( j = 0; j < col; j++ )
                    297:       saveobj(s,(Obj)BDY(p)[i][j]);
1.1       noro      298: }
                    299:
1.10      noro      300: void savestring(FILE *s,STRING p)
1.1       noro      301: {
1.20      noro      302:   write_short(s,&OID(p)); savestr(s,BDY(p));
1.1       noro      303: }
                    304:
1.10      noro      305: void savestr(FILE *s,char *p)
1.1       noro      306: {
1.20      noro      307:   int size;
1.1       noro      308:
1.20      noro      309:   size = p ? strlen(p) : 0; write_int(s,&size);
                    310:   if ( size )
                    311:     write_string(s,p,size);
1.1       noro      312: }
                    313:
1.10      noro      314: void savedp(FILE *s,DP p)
1.1       noro      315: {
1.20      noro      316:   int nv,n,i,sugar;
                    317:   MP m,t;
1.1       noro      318:
1.20      noro      319:   nv = p->nv; m = p->body; sugar = p->sugar;
                    320:   for ( n = 0, t = m; t; t = NEXT(t), n++ );
                    321:   write_short(s,&OID(p)); write_int(s,&nv); write_int(s,&sugar); write_int(s,&n);
                    322:   for ( i = 0, t = m; i < n; i++, t = NEXT(t) ) {
                    323:     saveobj(s,(Obj)t->c);
                    324:     write_int(s,&t->dl->td); write_intarray(s,&(t->dl->d[0]),nv);
                    325:   }
1.1       noro      326: }
                    327:
1.10      noro      328: void saveui(FILE *s,USINT u)
1.1       noro      329: {
1.20      noro      330:   write_short(s,&OID(u)); write_int(s,&BDY(u));
1.1       noro      331: }
                    332:
1.10      noro      333: void saveerror(FILE *s,ERR e)
1.1       noro      334: {
1.20      noro      335:   write_short(s,&OID(e)); saveobj(s,(Obj)BDY(e));
1.1       noro      336: }
                    337:
1.10      noro      338: void savegfmmat(FILE *s,GFMMAT p)
1.1       noro      339: {
1.20      noro      340:   int i,row,col;
1.1       noro      341:
1.20      noro      342:   write_short(s,&OID(p)); write_int(s,&p->row); write_int(s,&p->col);
                    343:   for ( i = 0, row = p->row, col = p->col; i < row; i++ )
                    344:     write_intarray(s,p->body[i],col);
1.4       noro      345: }
                    346:
1.10      noro      347: void savebytearray(FILE *s,BYTEARRAY p)
1.4       noro      348: {
1.20      noro      349:   write_short(s,&OID(p)); write_int(s,&p->len);
                    350:   write_string(s,p->body,p->len);
1.15      noro      351: }
                    352:
                    353: void savenbp(FILE *s,NBP p)
                    354: {
1.20      noro      355:   int i,n;
                    356:   NODE t;
                    357:   NBM m;
                    358:
                    359:   write_short(s,&OID(p));
                    360:   for ( n = 0, t = BDY(p); t; t = NEXT(t), n++ );
                    361:   write_int(s,&n);
                    362:   for ( i = 0, t = BDY(p); i < n; t = NEXT(t), i++ ) {
                    363:     m = (NBM)BDY(t);
                    364:     saveobj(s,(Obj)m->c);
                    365:     write_int(s,&m->d);
                    366:     write_intarray(s,m->b,(m->d+31)/32);
                    367:   }
1.1       noro      368: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>