Changeset 25524
- Timestamp:
- 09/03/20 10:51:58 (5 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/DependentObject.cpp
r22587 r25524 77 77 } 78 78 /*}}}*/ 79 void 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 /*}}}*/ 79 92 80 93 /*DependentObject methods: */ -
issm/trunk-jpl/src/c/classes/DependentObject.h
r25508 r25524 34 34 int Id(); 35 35 int ObjectEnum(); 36 void Marshall(MarshallHandle* marshallhandle) {_error_("not implemented yet!"); };36 void Marshall(MarshallHandle* marshallhandle); 37 37 38 38 /*DependentObject methods: */ -
issm/trunk-jpl/src/c/classes/Params/Parameters.cpp
r25508 r25524 117 117 marshallhandle->call(obj_enum); 118 118 119 if(marshallhandle->OperationNumber() ==MARSHALLING_WRITE || marshallhandle->OperationNumber()==MARSHALLING_SIZE){119 if(marshallhandle->OperationNumber()!=MARSHALLING_LOAD){ 120 120 121 121 /*Marshall num_params first*/ -
issm/trunk-jpl/src/c/classes/Params/StringArrayParam.cpp
r25508 r25524 75 75 void StringArrayParam::Marshall(MarshallHandle* marshallhandle){ /*{{{*/ 76 76 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 84 77 int object_enum = StringArrayParamEnum; 85 78 marshallhandle->call(object_enum); … … 89 82 90 83 if(this->numstrings){ 91 marshallhandle->call(sizes,this->numstrings);92 84 if(marshallhandle->OperationNumber()==MARSHALLING_LOAD){ 93 85 this->value=xNew<char*>(this->numstrings); 94 86 } 95 87 for(int i=0;i<numstrings;i++){ 96 marshallhandle->call(this->value[i] ,sizes[i]);88 marshallhandle->call(this->value[i]); 97 89 } 98 90 } 99 91 else{ 100 value=NULL;92 this->value=NULL; 101 93 } 102 103 //cleanup sizes array104 if(sizes) xDelete<int>(sizes);105 106 94 } 107 95 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Params/StringParam.cpp
r25508 r25524 52 52 void StringParam::Marshall(MarshallHandle* marshallhandle){ /*{{{*/ 53 53 54 int size = 0;55 if(marshallhandle->OperationNumber()==MARSHALLING_WRITE || marshallhandle->OperationNumber() == MARSHALLING_SIZE){56 size=strlen(value)+1;57 }58 59 54 int object_enum = StringParamEnum; 60 55 marshallhandle->call(object_enum); 61 62 56 marshallhandle->call(this->enum_type); 63 marshallhandle->call(size); 64 marshallhandle->call(this->value,size); 57 marshallhandle->call(this->value); 65 58 } 66 59 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.