Changeset 25524


Ignore:
Timestamp:
09/03/20 10:51:58 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: working on better marshalling for AD

Location:
issm/trunk-jpl/src/c/classes
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/DependentObject.cpp

    r22587 r25524  
    7777}
    7878/*}}}*/
     79void    DependentObject::Marshall(MarshallHandle* marshallhandle){/*{{{*/
     80
     81        int object_enum = DependentObjectEnum;
     82        marshallhandle->call(object_enum);
     83
     84        /*Marshall name (tricky)*/
     85        marshallhandle->call(this->name);
     86
     87        marshallhandle->call(this->type);
     88        marshallhandle->call(this->index);
     89        marshallhandle->call(this->response_value);
     90}
     91/*}}}*/
    7992
    8093/*DependentObject methods: */
  • issm/trunk-jpl/src/c/classes/DependentObject.h

    r25508 r25524  
    3434                int   Id();
    3535                int   ObjectEnum();
    36                 void  Marshall(MarshallHandle* marshallhandle){_error_("not implemented yet!"); };
     36                void  Marshall(MarshallHandle* marshallhandle);
    3737
    3838                /*DependentObject methods: */
  • issm/trunk-jpl/src/c/classes/Params/Parameters.cpp

    r25508 r25524  
    117117        marshallhandle->call(obj_enum);
    118118
    119         if(marshallhandle->OperationNumber()==MARSHALLING_WRITE || marshallhandle->OperationNumber()==MARSHALLING_SIZE){
     119        if(marshallhandle->OperationNumber()!=MARSHALLING_LOAD){
    120120
    121121                /*Marshall num_params first*/
  • issm/trunk-jpl/src/c/classes/Params/StringArrayParam.cpp

    r25508 r25524  
    7575void StringArrayParam::Marshall(MarshallHandle* marshallhandle){ /*{{{*/
    7676
    77         int* sizes=NULL;
    78 
    79         if(marshallhandle->OperationNumber()==MARSHALLING_WRITE || marshallhandle->OperationNumber()==MARSHALLING_SIZE){
    80                 if(this->numstrings)sizes=xNew<int>(this->numstrings);
    81                 for(int i=0;i<numstrings;i++)sizes[i]=strlen(this->value[i])+1;
    82         }       
    83 
    8477        int object_enum = StringArrayParamEnum;
    8578   marshallhandle->call(object_enum);
     
    8982
    9083        if(this->numstrings){
    91                 marshallhandle->call(sizes,this->numstrings);
    9284                if(marshallhandle->OperationNumber()==MARSHALLING_LOAD){
    9385                        this->value=xNew<char*>(this->numstrings);
    9486                }
    9587                for(int i=0;i<numstrings;i++){
    96                         marshallhandle->call(this->value[i],sizes[i]);
     88                        marshallhandle->call(this->value[i]);
    9789                }
    9890        }
    9991        else{
    100                 value=NULL;
     92                this->value=NULL;
    10193        }
    102 
    103         //cleanup sizes array
    104         if(sizes) xDelete<int>(sizes);
    105 
    10694}
    10795/*}}}*/
  • issm/trunk-jpl/src/c/classes/Params/StringParam.cpp

    r25508 r25524  
    5252void StringParam::Marshall(MarshallHandle* marshallhandle){ /*{{{*/
    5353
    54         int size = 0;
    55         if(marshallhandle->OperationNumber()==MARSHALLING_WRITE || marshallhandle->OperationNumber() == MARSHALLING_SIZE){
    56                 size=strlen(value)+1;
    57         }
    58 
    5954        int object_enum = StringParamEnum;
    6055   marshallhandle->call(object_enum);
    61 
    6256        marshallhandle->call(this->enum_type);
    63         marshallhandle->call(size);
    64         marshallhandle->call(this->value,size);
     57        marshallhandle->call(this->value);
    6558}
    6659/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.