GridSerializeRegister

Adds a serialization method to the grid package.

Synopsis

#include "grid.h"  
int GridRegisterDestroy(void)

Synopsis


GridSerializeRegister(char *name, char *path, char *func_name, int (*serialize_func)(MPI_Comm, Grid *, PetscViewer, PetscTruth))

Not Collective

Input Parameters

name - The name of a new user-defined serialization routine
path - The path (either absolute or relative) of the library containing this routine
func_name - The name of the serialization routine
serialize_func - The serialization routine itself

Notes

GridSerializeRegister() may be called multiple times to add several user-defined serializers.

If dynamic libraries are used, then the fourth input argument (serialize_func) is ignored.

Sample usage

  GridSerializeRegisterDynamic("my_store", "/home/username/my_lib/lib/libO/solaris/libmy.a", "MyStoreFunc", MyStoreFunc);

Then, your serialization can be chosen with the procedural interface via

    GridSetSerializeType(grid, "my_store")
or at runtime via the option
    -grid_serialize_type my_store

Note: $PETSC_ARCH and $BOPT occuring in pathname will be replaced with appropriate values.

Keywords

grid, register

See Also

GridSerializeRegisterAll(), GridSerializeRegisterDestroy()
M*/ #undef __FUNCT__ #define __FUNCT__ "GridSerializeRegister" int GridSerializeRegister(const char sname[], const char path[], const char name[], int (*function)(MPI_Comm, Grid *, PetscViewer, PetscTruth)) { char fullname[256]; int ierr;

PetscFunctionBegin; ierr = PetscStrcpy(fullname, path); CHKERRQ(ierr); ierr = PetscStrcat(fullname, ":"); CHKERRQ(ierr); ierr = PetscStrcat(fullname, name); CHKERRQ(ierr); ierr = PetscFListAdd(&GridSerializeList, sname, fullname, (void (*)(void)) function); CHKERRQ(ierr); PetscFunctionReturn(0); }

/*-------------------------------------------------------------------------------------------------------------------*/ #undef __FUNCT__ #define __FUNCT__ "GridRegisterDestroy" /*@C GridRegisterDestroy - Frees the list of creation routines for grids that were registered by GridRegister().

Not collective

Keywords

grid, register, destroy

See Also

GridRegister(), GridRegisterAll(), GridSerializeRegisterDestroy()

Level:advanced
Location:
src/grid/interface/gridreg.c
Index of all Grid routines
Table of Contents for all manual pages
Index of all manual pages