xref: /petsc/src/dm/interface/dlregisdmdm.c (revision 3d822a50fa56047d2c4e32398223829f215b291b)
1e8597998SBarry Smith 
24035e84dSBarry Smith #include <petsc-private/dmdaimpl.h>
334541f0dSBarry Smith #include <petsc-private/dmpleximpl.h>
4e8597998SBarry Smith 
5e8597998SBarry Smith static PetscBool DMPackageInitialized = PETSC_FALSE;
6e8597998SBarry Smith #undef __FUNCT__
7e8597998SBarry Smith #define __FUNCT__ "DMFinalizePackage"
8e8597998SBarry Smith /*@C
9e8597998SBarry Smith   DMFinalizePackage - This function finalizes everything in the DM package. It is called
10e8597998SBarry Smith   from PetscFinalize().
11e8597998SBarry Smith 
12e8597998SBarry Smith   Level: developer
13e8597998SBarry Smith 
14e8597998SBarry Smith .keywords: AO, initialize, package
15e8597998SBarry Smith .seealso: PetscInitialize()
16e8597998SBarry Smith @*/
17e8597998SBarry Smith PetscErrorCode  DMFinalizePackage(void)
18e8597998SBarry Smith {
19e8597998SBarry Smith   PetscErrorCode ierr;
20e8597998SBarry Smith 
21e8597998SBarry Smith   PetscFunctionBegin;
2277623264SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscPartitionerList);CHKERRQ(ierr);
2337e93019SBarry Smith   ierr = PetscFunctionListDestroy(&DMList);CHKERRQ(ierr);
24e8597998SBarry Smith   DMPackageInitialized = PETSC_FALSE;
25e8597998SBarry Smith   DMRegisterAllCalled  = PETSC_FALSE;
2677623264SMatthew G. Knepley   PetscPartitionerRegisterAllCalled = PETSC_FALSE;
27e8597998SBarry Smith   PetscFunctionReturn(0);
28e8597998SBarry Smith }
29e8597998SBarry Smith 
30e8597998SBarry Smith #if defined(PETSC_HAVE_HYPRE)
318cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatCreate_HYPREStruct(Mat);
32e8597998SBarry Smith #endif
33e8597998SBarry Smith 
34e8597998SBarry Smith #undef __FUNCT__
35e8597998SBarry Smith #define __FUNCT__ "DMInitializePackage"
36e8597998SBarry Smith /*@C
37e8597998SBarry Smith   DMInitializePackage - This function initializes everything in the DM package. It is called
38e8597998SBarry Smith   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to AOCreate()
39e8597998SBarry Smith   or DMDACreate() when using static libraries.
40e8597998SBarry Smith 
41e8597998SBarry Smith   Level: developer
42e8597998SBarry Smith 
43e8597998SBarry Smith .keywords: AO, initialize, package
44e8597998SBarry Smith .seealso: PetscInitialize()
45e8597998SBarry Smith @*/
46607a6623SBarry Smith PetscErrorCode  DMInitializePackage(void)
47e8597998SBarry Smith {
48e8597998SBarry Smith   char           logList[256];
49e8597998SBarry Smith   char           *className;
50e8597998SBarry Smith   PetscBool      opt;
51e8597998SBarry Smith   PetscErrorCode ierr;
52e8597998SBarry Smith 
53e8597998SBarry Smith   PetscFunctionBegin;
54e8597998SBarry Smith   if (DMPackageInitialized) PetscFunctionReturn(0);
55e8597998SBarry Smith   DMPackageInitialized = PETSC_TRUE;
56e8597998SBarry Smith 
57e8597998SBarry Smith   /* Register Classes */
58e8597998SBarry Smith   ierr = PetscClassIdRegister("Distributed Mesh",&DM_CLASSID);CHKERRQ(ierr);
5977623264SMatthew G. Knepley   ierr = PetscClassIdRegister("GraphPartitioner",&PETSCPARTITIONER_CLASSID);CHKERRQ(ierr);
60e8597998SBarry Smith 
61e8597998SBarry Smith #if defined(PETSC_HAVE_HYPRE)
62bdf89e91SBarry Smith   ierr = MatRegister(MATHYPRESTRUCT, MatCreate_HYPREStruct);CHKERRQ(ierr);
63e8597998SBarry Smith #endif
64e8597998SBarry Smith 
65e8597998SBarry Smith   /* Register Constructors */
66607a6623SBarry Smith   ierr = DMRegisterAll();CHKERRQ(ierr);
67e8597998SBarry Smith   /* Register Events */
68e8597998SBarry Smith   ierr = PetscLogEventRegister("DMConvert",              DM_CLASSID,&DM_Convert);CHKERRQ(ierr);
69e8597998SBarry Smith   ierr = PetscLogEventRegister("DMGlobalToLocal",        DM_CLASSID,&DM_GlobalToLocal);CHKERRQ(ierr);
70e8597998SBarry Smith   ierr = PetscLogEventRegister("DMLocalToGlobal",        DM_CLASSID,&DM_LocalToGlobal);CHKERRQ(ierr);
71e8597998SBarry Smith 
72e8597998SBarry Smith   ierr = PetscLogEventRegister("DMDALocalADFunc",        DM_CLASSID,&DMDA_LocalADFunction);CHKERRQ(ierr);
73e8597998SBarry Smith 
7477623264SMatthew G. Knepley   ierr = PetscLogEventRegister("Mesh Partition",         PETSCPARTITIONER_CLASSID,&PETSCPARTITIONER_Partition);CHKERRQ(ierr);
7575a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexInterp",           DM_CLASSID,&DMPLEX_Interpolate);CHKERRQ(ierr);
76e8597998SBarry Smith   ierr = PetscLogEventRegister("DMPlexDistribute",       DM_CLASSID,&DMPLEX_Distribute);CHKERRQ(ierr);
7775a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistCones",        DM_CLASSID,&DMPLEX_DistributeCones);CHKERRQ(ierr);
7875a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistLabels",       DM_CLASSID,&DMPLEX_DistributeLabels);CHKERRQ(ierr);
791337e6e5SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistribSF",        DM_CLASSID,&DMPLEX_DistributeSF);CHKERRQ(ierr);
80*3d822a50SMichael Lange   ierr = PetscLogEventRegister("DMPlexDistribOL",        DM_CLASSID,&DMPLEX_DistributeOverlap);CHKERRQ(ierr);
8175a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistField",        DM_CLASSID,&DMPLEX_DistributeField);CHKERRQ(ierr);
8275a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistData",         DM_CLASSID,&DMPLEX_DistributeData);CHKERRQ(ierr);
83e8597998SBarry Smith   ierr = PetscLogEventRegister("DMPlexStratify",         DM_CLASSID,&DMPLEX_Stratify);CHKERRQ(ierr);
8475a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexPrealloc",         DM_CLASSID,&DMPLEX_Preallocate);CHKERRQ(ierr);
8575a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexResidualFE",       DM_CLASSID,&DMPLEX_ResidualFEM);CHKERRQ(ierr);
8675a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexJacobianFE",       DM_CLASSID,&DMPLEX_JacobianFEM);CHKERRQ(ierr);
8775a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexInterpFE",         DM_CLASSID,&DMPLEX_InterpolatorFEM);CHKERRQ(ierr);
8875a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexInjectorFE",       DM_CLASSID,&DMPLEX_InjectorFEM);CHKERRQ(ierr);
89e8597998SBarry Smith   /* Process info exclusions */
90e8597998SBarry Smith   ierr = PetscOptionsGetString(NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
91e8597998SBarry Smith   if (opt) {
92e8597998SBarry Smith     ierr = PetscStrstr(logList, "da", &className);CHKERRQ(ierr);
93e8597998SBarry Smith     if (className) {
94e8597998SBarry Smith       ierr = PetscInfoDeactivateClass(DM_CLASSID);CHKERRQ(ierr);
95e8597998SBarry Smith     }
96e8597998SBarry Smith   }
97e8597998SBarry Smith   /* Process summary exclusions */
98e8597998SBarry Smith   ierr = PetscOptionsGetString(NULL, "-log_summary_exclude", logList, 256, &opt);CHKERRQ(ierr);
99e8597998SBarry Smith   if (opt) {
100e8597998SBarry Smith     ierr = PetscStrstr(logList, "da", &className);CHKERRQ(ierr);
101e8597998SBarry Smith     if (className) {
102e8597998SBarry Smith       ierr = PetscLogEventDeactivateClass(DM_CLASSID);CHKERRQ(ierr);
103e8597998SBarry Smith     }
104e8597998SBarry Smith   }
105e8597998SBarry Smith   ierr = PetscRegisterFinalize(DMFinalizePackage);CHKERRQ(ierr);
106e8597998SBarry Smith   PetscFunctionReturn(0);
107e8597998SBarry Smith }
10806759e06SMatthew G. Knepley #include <petscfe.h>
109e8597998SBarry Smith 
11006759e06SMatthew G. Knepley static PetscBool PetscFEPackageInitialized = PETSC_FALSE;
11106759e06SMatthew G. Knepley #undef __FUNCT__
11206759e06SMatthew G. Knepley #define __FUNCT__ "PetscFEFinalizePackage"
11306759e06SMatthew G. Knepley /*@C
11406759e06SMatthew G. Knepley   PetscFEFinalizePackage - This function finalizes everything in the PetscFE package. It is called
11506759e06SMatthew G. Knepley   from PetscFinalize().
116e8597998SBarry Smith 
11706759e06SMatthew G. Knepley   Level: developer
11806759e06SMatthew G. Knepley 
11906759e06SMatthew G. Knepley .keywords: PetscFE, initialize, package
12006759e06SMatthew G. Knepley .seealso: PetscInitialize()
12106759e06SMatthew G. Knepley @*/
12206759e06SMatthew G. Knepley PetscErrorCode PetscFEFinalizePackage(void)
12306759e06SMatthew G. Knepley {
12406759e06SMatthew G. Knepley   PetscErrorCode ierr;
12506759e06SMatthew G. Knepley 
12606759e06SMatthew G. Knepley   PetscFunctionBegin;
12706759e06SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscSpaceList);CHKERRQ(ierr);
12806759e06SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscDualSpaceList);CHKERRQ(ierr);
1290483ade4SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscFEList);CHKERRQ(ierr);
13006759e06SMatthew G. Knepley   PetscFEPackageInitialized       = PETSC_FALSE;
13106759e06SMatthew G. Knepley   PetscSpaceRegisterAllCalled     = PETSC_FALSE;
13206759e06SMatthew G. Knepley   PetscDualSpaceRegisterAllCalled = PETSC_FALSE;
1330483ade4SMatthew G. Knepley   PetscFERegisterAllCalled        = PETSC_FALSE;
13406759e06SMatthew G. Knepley   PetscFunctionReturn(0);
13506759e06SMatthew G. Knepley }
13606759e06SMatthew G. Knepley 
13706759e06SMatthew G. Knepley #undef __FUNCT__
13806759e06SMatthew G. Knepley #define __FUNCT__ "PetscFEInitializePackage"
13906759e06SMatthew G. Knepley /*@C
14006759e06SMatthew G. Knepley   PetscFEInitializePackage - This function initializes everything in the FE package. It is called
14106759e06SMatthew G. Knepley   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscSpaceCreate()
14206759e06SMatthew G. Knepley   when using static libraries.
14306759e06SMatthew G. Knepley 
14406759e06SMatthew G. Knepley   Level: developer
14506759e06SMatthew G. Knepley 
14606759e06SMatthew G. Knepley .keywords: PetscFE, initialize, package
14706759e06SMatthew G. Knepley .seealso: PetscInitialize()
14806759e06SMatthew G. Knepley @*/
14906759e06SMatthew G. Knepley PetscErrorCode PetscFEInitializePackage(void)
15006759e06SMatthew G. Knepley {
15106759e06SMatthew G. Knepley   char           logList[256];
15206759e06SMatthew G. Knepley   char          *className;
15306759e06SMatthew G. Knepley   PetscBool      opt;
15406759e06SMatthew G. Knepley   PetscErrorCode ierr;
15506759e06SMatthew G. Knepley 
15606759e06SMatthew G. Knepley   PetscFunctionBegin;
15706759e06SMatthew G. Knepley   if (PetscFEPackageInitialized) PetscFunctionReturn(0);
15806759e06SMatthew G. Knepley   PetscFEPackageInitialized = PETSC_TRUE;
15906759e06SMatthew G. Knepley 
16006759e06SMatthew G. Knepley   /* Register Classes */
16106759e06SMatthew G. Knepley   ierr = PetscClassIdRegister("Linear Space", &PETSCSPACE_CLASSID);CHKERRQ(ierr);
16206759e06SMatthew G. Knepley   ierr = PetscClassIdRegister("Dual Space",   &PETSCDUALSPACE_CLASSID);CHKERRQ(ierr);
16306759e06SMatthew G. Knepley   ierr = PetscClassIdRegister("FE Space",     &PETSCFE_CLASSID);CHKERRQ(ierr);
16406759e06SMatthew G. Knepley 
16506759e06SMatthew G. Knepley   /* Register Constructors */
16606759e06SMatthew G. Knepley   ierr = PetscSpaceRegisterAll();CHKERRQ(ierr);
1670483ade4SMatthew G. Knepley   ierr = PetscDualSpaceRegisterAll();CHKERRQ(ierr);
1680483ade4SMatthew G. Knepley   ierr = PetscFERegisterAll();CHKERRQ(ierr);
16906759e06SMatthew G. Knepley   /* Register Events */
17006759e06SMatthew G. Knepley   /* Process info exclusions */
17106759e06SMatthew G. Knepley   ierr = PetscOptionsGetString(NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
17206759e06SMatthew G. Knepley   if (opt) {
17306759e06SMatthew G. Knepley     ierr = PetscStrstr(logList, "fe", &className);CHKERRQ(ierr);
174f62f30faSMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCFE_CLASSID);CHKERRQ(ierr);}
17506759e06SMatthew G. Knepley   }
17606759e06SMatthew G. Knepley   /* Process summary exclusions */
17706759e06SMatthew G. Knepley   ierr = PetscOptionsGetString(NULL, "-log_summary_exclude", logList, 256, &opt);CHKERRQ(ierr);
17806759e06SMatthew G. Knepley   if (opt) {
179f62f30faSMatthew G. Knepley     ierr = PetscStrstr(logList, "fe", &className);CHKERRQ(ierr);
180f62f30faSMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCFE_CLASSID);CHKERRQ(ierr);}
18106759e06SMatthew G. Knepley   }
18206759e06SMatthew G. Knepley   ierr = PetscRegisterFinalize(PetscFEFinalizePackage);CHKERRQ(ierr);
18306759e06SMatthew G. Knepley   PetscFunctionReturn(0);
18406759e06SMatthew G. Knepley }
185f62f30faSMatthew G. Knepley #include <petscfv.h>
186f62f30faSMatthew G. Knepley 
187f62f30faSMatthew G. Knepley static PetscBool PetscFVPackageInitialized = PETSC_FALSE;
188f62f30faSMatthew G. Knepley #undef __FUNCT__
189f62f30faSMatthew G. Knepley #define __FUNCT__ "PetscFVFinalizePackage"
190f62f30faSMatthew G. Knepley /*@C
191f62f30faSMatthew G. Knepley   PetscFVFinalizePackage - This function finalizes everything in the PetscFV package. It is called
192f62f30faSMatthew G. Knepley   from PetscFinalize().
193f62f30faSMatthew G. Knepley 
194f62f30faSMatthew G. Knepley   Level: developer
195f62f30faSMatthew G. Knepley 
196f62f30faSMatthew G. Knepley .keywords: PetscFV, initialize, package
197f62f30faSMatthew G. Knepley .seealso: PetscInitialize()
198f62f30faSMatthew G. Knepley @*/
199f62f30faSMatthew G. Knepley PetscErrorCode PetscFVFinalizePackage(void)
200f62f30faSMatthew G. Knepley {
201f62f30faSMatthew G. Knepley   PetscErrorCode ierr;
202f62f30faSMatthew G. Knepley 
203f62f30faSMatthew G. Knepley   PetscFunctionBegin;
204ab2453f0SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscLimiterList);CHKERRQ(ierr);
205f62f30faSMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscFVList);CHKERRQ(ierr);
206f62f30faSMatthew G. Knepley   PetscFVPackageInitialized     = PETSC_FALSE;
207f62f30faSMatthew G. Knepley   PetscFVRegisterAllCalled      = PETSC_FALSE;
208ab2453f0SMatthew G. Knepley   PetscLimiterRegisterAllCalled = PETSC_FALSE;
209f62f30faSMatthew G. Knepley   PetscFunctionReturn(0);
210f62f30faSMatthew G. Knepley }
211f62f30faSMatthew G. Knepley 
212f62f30faSMatthew G. Knepley #undef __FUNCT__
213f62f30faSMatthew G. Knepley #define __FUNCT__ "PetscFVInitializePackage"
214f62f30faSMatthew G. Knepley /*@C
215f62f30faSMatthew G. Knepley   PetscFVInitializePackage - This function initializes everything in the FV package. It is called
216f62f30faSMatthew G. Knepley   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscFVCreate()
217f62f30faSMatthew G. Knepley   when using static libraries.
218f62f30faSMatthew G. Knepley 
219f62f30faSMatthew G. Knepley   Level: developer
220f62f30faSMatthew G. Knepley 
221f62f30faSMatthew G. Knepley .keywords: PetscFV, initialize, package
222f62f30faSMatthew G. Knepley .seealso: PetscInitialize()
223f62f30faSMatthew G. Knepley @*/
224f62f30faSMatthew G. Knepley PetscErrorCode PetscFVInitializePackage(void)
225f62f30faSMatthew G. Knepley {
226f62f30faSMatthew G. Knepley   char           logList[256];
227f62f30faSMatthew G. Knepley   char          *className;
228f62f30faSMatthew G. Knepley   PetscBool      opt;
229f62f30faSMatthew G. Knepley   PetscErrorCode ierr;
230f62f30faSMatthew G. Knepley 
231f62f30faSMatthew G. Knepley   PetscFunctionBegin;
232f62f30faSMatthew G. Knepley   if (PetscFVPackageInitialized) PetscFunctionReturn(0);
233f62f30faSMatthew G. Knepley   PetscFVPackageInitialized = PETSC_TRUE;
234f62f30faSMatthew G. Knepley 
235f62f30faSMatthew G. Knepley   /* Register Classes */
236f62f30faSMatthew G. Knepley   ierr = PetscClassIdRegister("FV Space", &PETSCFV_CLASSID);CHKERRQ(ierr);
237ab2453f0SMatthew G. Knepley   ierr = PetscClassIdRegister("Limiter",  &PETSCLIMITER_CLASSID);CHKERRQ(ierr);
238f62f30faSMatthew G. Knepley 
239f62f30faSMatthew G. Knepley   /* Register Constructors */
240f62f30faSMatthew G. Knepley   ierr = PetscFVRegisterAll();CHKERRQ(ierr);
241f62f30faSMatthew G. Knepley   /* Register Events */
242f62f30faSMatthew G. Knepley   /* Process info exclusions */
243f62f30faSMatthew G. Knepley   ierr = PetscOptionsGetString(NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
244f62f30faSMatthew G. Knepley   if (opt) {
245f62f30faSMatthew G. Knepley     ierr = PetscStrstr(logList, "fv", &className);CHKERRQ(ierr);
246f62f30faSMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCFV_CLASSID);CHKERRQ(ierr);}
247ab2453f0SMatthew G. Knepley     ierr = PetscStrstr(logList, "limiter", &className);CHKERRQ(ierr);
248ab2453f0SMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCLIMITER_CLASSID);CHKERRQ(ierr);}
249f62f30faSMatthew G. Knepley   }
250f62f30faSMatthew G. Knepley   /* Process summary exclusions */
251f62f30faSMatthew G. Knepley   ierr = PetscOptionsGetString(NULL, "-log_summary_exclude", logList, 256, &opt);CHKERRQ(ierr);
252f62f30faSMatthew G. Knepley   if (opt) {
253f62f30faSMatthew G. Knepley     ierr = PetscStrstr(logList, "fv", &className);CHKERRQ(ierr);
254f62f30faSMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCFV_CLASSID);CHKERRQ(ierr);}
255ab2453f0SMatthew G. Knepley     ierr = PetscStrstr(logList, "limiter", &className);CHKERRQ(ierr);
256ab2453f0SMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCLIMITER_CLASSID);CHKERRQ(ierr);}
257f62f30faSMatthew G. Knepley   }
258f62f30faSMatthew G. Knepley   ierr = PetscRegisterFinalize(PetscFVFinalizePackage);CHKERRQ(ierr);
259f62f30faSMatthew G. Knepley   PetscFunctionReturn(0);
260f62f30faSMatthew G. Knepley }
2612764a2aaSMatthew G. Knepley #include <petscds.h>
262022a7a5cSMatthew G. Knepley 
2632764a2aaSMatthew G. Knepley static PetscBool PetscDSPackageInitialized = PETSC_FALSE;
264022a7a5cSMatthew G. Knepley #undef __FUNCT__
2652764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSFinalizePackage"
266022a7a5cSMatthew G. Knepley /*@C
2672764a2aaSMatthew G. Knepley   PetscDSFinalizePackage - This function finalizes everything in the PetscDS package. It is called
268022a7a5cSMatthew G. Knepley   from PetscFinalize().
269022a7a5cSMatthew G. Knepley 
270022a7a5cSMatthew G. Knepley   Level: developer
271022a7a5cSMatthew G. Knepley 
2722764a2aaSMatthew G. Knepley .keywords: PetscDS, initialize, package
273022a7a5cSMatthew G. Knepley .seealso: PetscInitialize()
274022a7a5cSMatthew G. Knepley @*/
2752764a2aaSMatthew G. Knepley PetscErrorCode PetscDSFinalizePackage(void)
276022a7a5cSMatthew G. Knepley {
277022a7a5cSMatthew G. Knepley   PetscErrorCode ierr;
278022a7a5cSMatthew G. Knepley 
279022a7a5cSMatthew G. Knepley   PetscFunctionBegin;
2802764a2aaSMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscDSList);CHKERRQ(ierr);
2812764a2aaSMatthew G. Knepley   PetscDSPackageInitialized = PETSC_FALSE;
2822764a2aaSMatthew G. Knepley   PetscDSRegisterAllCalled  = PETSC_FALSE;
283022a7a5cSMatthew G. Knepley   PetscFunctionReturn(0);
284022a7a5cSMatthew G. Knepley }
285022a7a5cSMatthew G. Knepley 
286022a7a5cSMatthew G. Knepley #undef __FUNCT__
2872764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSInitializePackage"
288022a7a5cSMatthew G. Knepley /*@C
2892764a2aaSMatthew G. Knepley   PetscDSInitializePackage - This function initializes everything in the DS package. It is called
2902764a2aaSMatthew G. Knepley   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscDSCreate()
291022a7a5cSMatthew G. Knepley   when using static libraries.
292022a7a5cSMatthew G. Knepley 
293022a7a5cSMatthew G. Knepley   Level: developer
294022a7a5cSMatthew G. Knepley 
2952764a2aaSMatthew G. Knepley .keywords: PetscDS, initialize, package
296022a7a5cSMatthew G. Knepley .seealso: PetscInitialize()
297022a7a5cSMatthew G. Knepley @*/
2982764a2aaSMatthew G. Knepley PetscErrorCode PetscDSInitializePackage(void)
299022a7a5cSMatthew G. Knepley {
300022a7a5cSMatthew G. Knepley   char           logList[256];
301022a7a5cSMatthew G. Knepley   char          *className;
302022a7a5cSMatthew G. Knepley   PetscBool      opt;
303022a7a5cSMatthew G. Knepley   PetscErrorCode ierr;
304022a7a5cSMatthew G. Knepley 
305022a7a5cSMatthew G. Knepley   PetscFunctionBegin;
3062764a2aaSMatthew G. Knepley   if (PetscDSPackageInitialized) PetscFunctionReturn(0);
3072764a2aaSMatthew G. Knepley   PetscDSPackageInitialized = PETSC_TRUE;
308022a7a5cSMatthew G. Knepley 
309022a7a5cSMatthew G. Knepley   /* Register Classes */
3102764a2aaSMatthew G. Knepley   ierr = PetscClassIdRegister("Discrete System", &PETSCDS_CLASSID);CHKERRQ(ierr);
311022a7a5cSMatthew G. Knepley 
312022a7a5cSMatthew G. Knepley   /* Register Constructors */
3132764a2aaSMatthew G. Knepley   ierr = PetscDSRegisterAll();CHKERRQ(ierr);
314022a7a5cSMatthew G. Knepley   /* Register Events */
315022a7a5cSMatthew G. Knepley   /* Process info exclusions */
316022a7a5cSMatthew G. Knepley   ierr = PetscOptionsGetString(NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
317022a7a5cSMatthew G. Knepley   if (opt) {
3182764a2aaSMatthew G. Knepley     ierr = PetscStrstr(logList, "ds", &className);CHKERRQ(ierr);
3192764a2aaSMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCDS_CLASSID);CHKERRQ(ierr);}
320022a7a5cSMatthew G. Knepley   }
321022a7a5cSMatthew G. Knepley   /* Process summary exclusions */
322022a7a5cSMatthew G. Knepley   ierr = PetscOptionsGetString(NULL, "-log_summary_exclude", logList, 256, &opt);CHKERRQ(ierr);
323022a7a5cSMatthew G. Knepley   if (opt) {
3242764a2aaSMatthew G. Knepley     ierr = PetscStrstr(logList, "ds", &className);CHKERRQ(ierr);
3252764a2aaSMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCDS_CLASSID);CHKERRQ(ierr);}
326022a7a5cSMatthew G. Knepley   }
3272764a2aaSMatthew G. Knepley   ierr = PetscRegisterFinalize(PetscDSFinalizePackage);CHKERRQ(ierr);
328022a7a5cSMatthew G. Knepley   PetscFunctionReturn(0);
329022a7a5cSMatthew G. Knepley }
330e8597998SBarry Smith 
331aa2d57e9SJed Brown #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES)
332e8597998SBarry Smith #undef __FUNCT__
333e8597998SBarry Smith #define __FUNCT__ "PetscDLLibraryRegister_petscdm"
334e8597998SBarry Smith /*
335e8597998SBarry Smith   PetscDLLibraryRegister - This function is called when the dynamic library it is in is opened.
336e8597998SBarry Smith 
337e8597998SBarry Smith   This one registers all the mesh generators and partitioners that are in
338e8597998SBarry Smith   the basic DM library.
339e8597998SBarry Smith 
340e8597998SBarry Smith */
341607a6623SBarry Smith PETSC_EXTERN PetscErrorCode PetscDLLibraryRegister_petscdm(void)
342e8597998SBarry Smith {
343e8597998SBarry Smith   PetscErrorCode ierr;
344e8597998SBarry Smith 
345e8597998SBarry Smith   PetscFunctionBegin;
346607a6623SBarry Smith   ierr = AOInitializePackage();CHKERRQ(ierr);
347607a6623SBarry Smith   ierr = DMInitializePackage();CHKERRQ(ierr);
34806759e06SMatthew G. Knepley   ierr = PetscFEInitializePackage();CHKERRQ(ierr);
349ab2453f0SMatthew G. Knepley   ierr = PetscFVInitializePackage();CHKERRQ(ierr);
350e8597998SBarry Smith   PetscFunctionReturn(0);
351e8597998SBarry Smith }
352e8597998SBarry Smith 
353aa2d57e9SJed Brown #endif /* PETSC_HAVE_DYNAMIC_LIBRARIES */
354