const char help[] = "Test PetscLogEventsPause() and PetscLogEventsUnpause()"; #include int main(int argc, char **argv) { PetscLogStage main_stage, unrelated_stage; PetscLogEvent runtime_event, unrelated_event; PetscLogHandler default_handler; PetscClassId runtime_classid, unrelated_classid; PetscBool main_visible = PETSC_FALSE; PetscBool unrelated_visible = PETSC_FALSE; PetscBool get_main_visible; PetscBool get_unrelated_visible; PetscBool is_active; PetscCall(PetscInitialize(&argc, &argv, NULL, help)); PetscCall(PetscLogIsActive(&is_active)); PetscCheck(is_active, PETSC_COMM_WORLD, PETSC_ERR_SUP, "Logging must be active for this test"); PetscCall(PetscLogActions(PETSC_FALSE)); PetscCall(PetscLogObjects(PETSC_FALSE)); PetscOptionsBegin(PETSC_COMM_WORLD, NULL, help, NULL); PetscCall(PetscOptionsBool("-main_visible", "The logging visibility of the main stage", NULL, main_visible, &main_visible, NULL)); PetscCall(PetscOptionsBool("-unrelated_visible", "The logging visibility of the unrelated stage", NULL, unrelated_visible, &unrelated_visible, NULL)); PetscOptionsEnd(); /* This test simulates a program with unrelated logging stages and events that has to "stop the world" to lazily initialize a runtime. - Pausing events should send the log data for the runtime initalization to the Main Stage - Turning the Main Stage invisible should hide it from -log_view So the runtime intialization should be more or less missing from -log_view. */ PetscCall(PetscClassIdRegister("External runtime", &runtime_classid)); PetscCall(PetscLogEventRegister("External runtime initialization", runtime_classid, &runtime_event)); PetscCall(PetscClassIdRegister("Unrelated class", &unrelated_classid)); PetscCall(PetscLogEventRegister("Unrelated event", unrelated_classid, &unrelated_event)); PetscCall(PetscLogStageRegister("Unrelated stage", &unrelated_stage)); PetscCall(PetscLogStageGetId("Main Stage", &main_stage)); PetscCall(PetscLogStageSetVisible(main_stage, main_visible)); PetscCall(PetscLogStageSetVisible(unrelated_stage, unrelated_visible)); PetscCall(PetscLogGetDefaultHandler(&default_handler)); if (default_handler) { PetscCall(PetscLogStageGetVisible(main_stage, &get_main_visible)); PetscCall(PetscLogStageGetVisible(unrelated_stage, &get_unrelated_visible)); PetscCheck(main_visible == get_main_visible, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Get/Set stage visibility discrepancy"); PetscCheck(unrelated_visible == get_unrelated_visible, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Get/Set stage visibility discrepancy"); } PetscCall(PetscLogStagePush(unrelated_stage)); PetscCall(PetscLogEventBegin(unrelated_event, NULL, NULL, NULL, NULL)); PetscCall(PetscLogEventsPause()); PetscCall(PetscLogEventBegin(runtime_event, NULL, NULL, NULL, NULL)); PetscCall(PetscSleep(0.2)); PetscCall(PetscLogEventEnd(runtime_event, NULL, NULL, NULL, NULL)); PetscCall(PetscLogEventsResume()); PetscCall(PetscLogEventEnd(unrelated_event, NULL, NULL, NULL, NULL)); PetscCall(PetscLogStagePop()); PetscCall(PetscFinalize()); return 0; } /*TEST # main stage invisible, "External runtime initialization" shouldn't appear in the log test: requires: defined(PETSC_USE_LOG) suffix: 0 args: -log_view -unrelated_visible filter: grep -o "\\(External runtime initialization\\|Unrelated event\\)" # unrelated stage invisible, "Unrelated event" shouldn't appear in the log test: requires: defined(PETSC_USE_LOG) suffix: 1 args: -log_view -main_visible filter: grep -o "\\(External runtime initialization\\|Unrelated event\\)" TEST*/