xref: /petsc/src/sys/classes/viewer/interface/viewreg.c (revision dd63322a7d8666826518b99e582852523706f70c)
15c6c1daeSBarry Smith 
2af0996ceSBarry Smith #include <petsc/private/viewerimpl.h>  /*I "petscviewer.h" I*/
3e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
4e04113cfSBarry Smith #include <petscviewersaws.h>
5bfb97211SBarry Smith #endif
65c6c1daeSBarry Smith 
7140e18c1SBarry Smith PetscFunctionList PetscViewerList = 0;
85c6c1daeSBarry Smith 
99af95d99SBarry Smith #include "../src/sys/utils/hash.h"
109af95d99SBarry Smith 
119af95d99SBarry Smith 
129de0f6ecSBarry Smith PetscOptionsHelpPrinted PetscOptionsHelpPrintedSingleton = NULL;
139de0f6ecSBarry Smith KHASH_SET_INIT_STR(HTPrinted)
149de0f6ecSBarry Smith struct  _n_PetscOptionsHelpPrinted{
159de0f6ecSBarry Smith   khash_t(HTPrinted) *printed;
169de0f6ecSBarry Smith   PetscSegBuffer     strings;
179de0f6ecSBarry Smith };
189de0f6ecSBarry Smith 
199de0f6ecSBarry Smith PetscErrorCode PetscOptionsHelpPrintedDestroy(PetscOptionsHelpPrinted *hp)
2094d6a431SBarry Smith {
219af95d99SBarry Smith   PetscErrorCode ierr;
229de0f6ecSBarry Smith 
239de0f6ecSBarry Smith   PetscFunctionBegin;
249de0f6ecSBarry Smith   if (!*hp) PetscFunctionReturn(0);
259de0f6ecSBarry Smith   kh_destroy(HTPrinted,(*hp)->printed);
269de0f6ecSBarry Smith   ierr = PetscSegBufferDestroy(&(*hp)->strings);CHKERRQ(ierr);
279de0f6ecSBarry Smith   ierr = PetscFree(*hp);CHKERRQ(ierr);
289de0f6ecSBarry Smith   PetscFunctionReturn(0);
299de0f6ecSBarry Smith }
309de0f6ecSBarry Smith 
319de0f6ecSBarry Smith /*@C
329de0f6ecSBarry Smith       PetscOptionsHelpPrintedCreate - Creates an object used to manage tracking which help messages have
339de0f6ecSBarry Smith          been printed so they will not be printed again.
349de0f6ecSBarry Smith 
359de0f6ecSBarry Smith      Not collective
369de0f6ecSBarry Smith 
379de0f6ecSBarry Smith     Level: developer
389de0f6ecSBarry Smith 
399de0f6ecSBarry Smith .seealso: PetscOptionsHelpPrintedCheck(), PetscOptionsHelpPrintChecked()
409de0f6ecSBarry Smith @*/
419de0f6ecSBarry Smith PetscErrorCode PetscOptionsHelpPrintedCreate(PetscOptionsHelpPrinted *hp)
429de0f6ecSBarry Smith {
439de0f6ecSBarry Smith   PetscErrorCode             ierr;
449de0f6ecSBarry Smith 
459de0f6ecSBarry Smith   PetscFunctionBegin;
469de0f6ecSBarry Smith   ierr = PetscNew(hp);CHKERRQ(ierr);
479de0f6ecSBarry Smith   (*hp)->printed = kh_init(HTPrinted);
489de0f6ecSBarry Smith   ierr = PetscSegBufferCreate(sizeof(char),10000,&(*hp)->strings);CHKERRQ(ierr);
499de0f6ecSBarry Smith   PetscFunctionReturn(0);
509de0f6ecSBarry Smith }
519de0f6ecSBarry Smith 
529de0f6ecSBarry Smith /*@C
539de0f6ecSBarry Smith       PetscOptionsHelpPrintedCheck - Checks if a particular pre, name pair has previous been entered (meaning the help message was printed)
549de0f6ecSBarry Smith 
559de0f6ecSBarry Smith      Not collective
569de0f6ecSBarry Smith 
579de0f6ecSBarry Smith     Input Parameters:
589de0f6ecSBarry Smith +     hp - the object used to manage tracking what help messages have been printed
599de0f6ecSBarry Smith .     pre - the prefix part of the string, many be NULL
609de0f6ecSBarry Smith -     name - the string to look for (cannot be NULL)
619de0f6ecSBarry Smith 
629de0f6ecSBarry Smith     Output Parameter:
639de0f6ecSBarry Smith .     found - PETSC_TRUE if the string was already set
649de0f6ecSBarry Smith 
659de0f6ecSBarry Smith     Level: intermediate
669de0f6ecSBarry Smith 
679de0f6ecSBarry Smith 
689de0f6ecSBarry Smith .seealso: PetscOptionsHelpPrintedCreate()
699de0f6ecSBarry Smith @*/
709de0f6ecSBarry Smith PetscErrorCode PetscOptionsHelpPrintedCheck(PetscOptionsHelpPrinted hp,const char *pre,const char* name,PetscBool *found)
719de0f6ecSBarry Smith {
729de0f6ecSBarry Smith   size_t          l1,l2;
73c1449d8eSBarry Smith #if !defined(PETSC_HAVE_THREADSAFETY)
749de0f6ecSBarry Smith   char            *both;
759de0f6ecSBarry Smith   khint_t         newitem;
76c1449d8eSBarry Smith #endif
779de0f6ecSBarry Smith   PetscErrorCode  ierr;
789de0f6ecSBarry Smith 
799de0f6ecSBarry Smith   PetscFunctionBegin;
809de0f6ecSBarry Smith   ierr = PetscStrlen(pre,&l1);CHKERRQ(ierr);
819de0f6ecSBarry Smith   ierr = PetscStrlen(name,&l2);CHKERRQ(ierr);
829de0f6ecSBarry Smith   if (l1+l2 == 0) {
839de0f6ecSBarry Smith     *found = PETSC_FALSE;
849de0f6ecSBarry Smith     PetscFunctionReturn(0);
859de0f6ecSBarry Smith   }
86c1449d8eSBarry Smith #if !defined(PETSC_HAVE_THREADSAFETY)
879de0f6ecSBarry Smith   ierr = PetscSegBufferGet(hp->strings,l1+l2+1,&both);CHKERRQ(ierr);
889de0f6ecSBarry Smith   ierr = PetscStrcpy(both,pre);CHKERRQ(ierr);
899de0f6ecSBarry Smith   ierr = PetscStrcat(both,name);CHKERRQ(ierr);
909de0f6ecSBarry Smith   kh_put(HTPrinted,hp->printed,both,&newitem);
919de0f6ecSBarry Smith   if (!newitem) {
929de0f6ecSBarry Smith     ierr = PetscSegBufferUnuse(hp->strings,l1+l2+1);CHKERRQ(ierr);
939de0f6ecSBarry Smith   }
949de0f6ecSBarry Smith   *found = newitem ? PETSC_FALSE : PETSC_TRUE;
95c1449d8eSBarry Smith #else
96c1449d8eSBarry Smith   *found = PETSC_FALSE;
97c1449d8eSBarry Smith #endif
989de0f6ecSBarry Smith   PetscFunctionReturn(0);
9994d6a431SBarry Smith }
10094d6a431SBarry Smith 
101eb55bdffSLawrence Mitchell static PetscBool noviewer = PETSC_FALSE;
102eb55bdffSLawrence Mitchell static PetscBool noviewers[PETSCVIEWERGETVIEWEROFFPUSHESMAX];
103eb55bdffSLawrence Mitchell static PetscInt  inoviewers = 0;
104eb55bdffSLawrence Mitchell 
105eb55bdffSLawrence Mitchell /*@
106eb55bdffSLawrence Mitchell   PetscOptionsPushGetViewerOff - control whether PetscOptionsGetViewer returns a viewer.
107eb55bdffSLawrence Mitchell 
108eb55bdffSLawrence Mitchell   Logically Collective
109eb55bdffSLawrence Mitchell 
110eb55bdffSLawrence Mitchell   Input Parameter:
111eb55bdffSLawrence Mitchell . flg - PETSC_TRUE to turn off viewer creation, PETSC_FALSE to turn it on.
112eb55bdffSLawrence Mitchell 
113eb55bdffSLawrence Mitchell   Level: developer
114eb55bdffSLawrence Mitchell 
115eb55bdffSLawrence Mitchell   Notes: Calling XXXViewFromOptions in an inner loop can be very expensive.  This can appear, for example, when using
116eb55bdffSLawrence Mitchell    many small subsolves.  Call this function to control viewer creation in PetscOptionsGetViewer, thus removing the expensive XXXViewFromOptions calls.
117eb55bdffSLawrence Mitchell 
118eb55bdffSLawrence Mitchell .seealso: PetscOptionsGetViewer(), PetscOptionsPopGetViewerOff()
119eb55bdffSLawrence Mitchell @*/
120eb55bdffSLawrence Mitchell PetscErrorCode  PetscOptionsPushGetViewerOff(PetscBool flg)
121eb55bdffSLawrence Mitchell {
122eb55bdffSLawrence Mitchell   PetscFunctionBegin;
123eb55bdffSLawrence Mitchell   if (inoviewers > PETSCVIEWERGETVIEWEROFFPUSHESMAX - 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many PetscOptionsPushGetViewerOff(), perhaps you forgot PetscOptionsPopGetViewerOff()?");
124eb55bdffSLawrence Mitchell 
125eb55bdffSLawrence Mitchell   noviewers[inoviewers++] = noviewer;
126eb55bdffSLawrence Mitchell   noviewer = flg;
127eb55bdffSLawrence Mitchell   PetscFunctionReturn(0);
128eb55bdffSLawrence Mitchell }
129eb55bdffSLawrence Mitchell 
130eb55bdffSLawrence Mitchell /*@
131eb55bdffSLawrence Mitchell   PetscOptionsPopGetViewerOff - reset whether PetscOptionsGetViewer returns a viewer.
132eb55bdffSLawrence Mitchell 
133eb55bdffSLawrence Mitchell   Logically Collective
134eb55bdffSLawrence Mitchell 
135eb55bdffSLawrence Mitchell   Level: developer
136eb55bdffSLawrence Mitchell 
137eb55bdffSLawrence Mitchell   Notes: Calling XXXViewFromOptions in an inner loop can be very expensive.  This can appear, for example, when using
138eb55bdffSLawrence Mitchell    many small subsolves.  Call this function to control viewer creation in PetscOptionsGetViewer, thus removing the expensive XXXViewFromOptions calls.
139eb55bdffSLawrence Mitchell 
140eb55bdffSLawrence Mitchell .seealso: PetscOptionsGetViewer(), PetscOptionsPushGetViewerOff()
141eb55bdffSLawrence Mitchell @*/
142*dd63322aSSatish Balay PetscErrorCode  PetscOptionsPopGetViewerOff(void)
143eb55bdffSLawrence Mitchell {
144eb55bdffSLawrence Mitchell   PetscFunctionBegin;
145eb55bdffSLawrence Mitchell   if (!inoviewers) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many PetscOptionsPopGetViewerOff(), perhaps you forgot PetscOptionsPushGetViewerOff()?");
146eb55bdffSLawrence Mitchell   noviewer = noviewers[--inoviewers];
147eb55bdffSLawrence Mitchell   PetscFunctionReturn(0);
148eb55bdffSLawrence Mitchell }
149eb55bdffSLawrence Mitchell 
150eb55bdffSLawrence Mitchell /*@
151eb55bdffSLawrence Mitchell   PetscOptionsGetViewerOff - does PetscOptionsGetViewer return a viewer?
152eb55bdffSLawrence Mitchell 
153eb55bdffSLawrence Mitchell   Logically Collective
154eb55bdffSLawrence Mitchell 
155eb55bdffSLawrence Mitchell   Output Parameter:
156eb55bdffSLawrence Mitchell . flg - whether viewers are returned.
157eb55bdffSLawrence Mitchell 
158eb55bdffSLawrence Mitchell   Level: developer
159eb55bdffSLawrence Mitchell 
160eb55bdffSLawrence Mitchell   Notes: Calling XXXViewFromOptions in an inner loop can be very expensive.  This can appear, for example, when using
161eb55bdffSLawrence Mitchell    many small subsolves.
162eb55bdffSLawrence Mitchell 
163eb55bdffSLawrence Mitchell .seealso: PetscOptionsGetViewer(), PetscOptionsPushGetViewerOff(), PetscOptionsPopGetViewerOff()
164eb55bdffSLawrence Mitchell @*/
165eb55bdffSLawrence Mitchell PetscErrorCode  PetscOptionsGetViewerOff(PetscBool *flg)
166eb55bdffSLawrence Mitchell {
167eb55bdffSLawrence Mitchell   PetscFunctionBegin;
168eb55bdffSLawrence Mitchell   PetscValidPointer(flg,0);
169eb55bdffSLawrence Mitchell   *flg = noviewer;
170eb55bdffSLawrence Mitchell   PetscFunctionReturn(0);
171eb55bdffSLawrence Mitchell }
172eb55bdffSLawrence Mitchell 
1732bf49c77SBarry Smith /*@C
1742bf49c77SBarry Smith    PetscOptionsGetViewer - Gets a viewer appropriate for the type indicated by the user
1752bf49c77SBarry Smith 
1762bf49c77SBarry Smith    Collective on MPI_Comm
1772bf49c77SBarry Smith 
1782bf49c77SBarry Smith    Input Parameters:
1792bf49c77SBarry Smith +  comm - the communicator to own the viewer
1800298fd71SBarry Smith .  pre - the string to prepend to the name or NULL
1812bf49c77SBarry Smith -  name - the option one is seeking
1822bf49c77SBarry Smith 
1832bf49c77SBarry Smith    Output Parameter:
184bb1d7374SBarry Smith +  viewer - the viewer, pass NULL if not needed
185bb1d7374SBarry Smith .  format - the PetscViewerFormat requested by the user, pass NULL if not needed
1862bf49c77SBarry Smith -  set - PETSC_TRUE if found, else PETSC_FALSE
1872bf49c77SBarry Smith 
1882bf49c77SBarry Smith    Level: intermediate
1892bf49c77SBarry Smith 
1902bf49c77SBarry Smith    Notes: If no value is provided ascii:stdout is used
191d1da0b69SBarry Smith $       ascii[:[filename][:[format][:append]]]    defaults to stdout - format can be one of ascii_info, ascii_info_detail, or ascii_matlab,
192d1da0b69SBarry Smith                                                   for example ascii::ascii_info prints just the information about the object not all details
193d1da0b69SBarry Smith                                                   unless :append is given filename opens in write mode, overwriting what was already there
194d1da0b69SBarry Smith $       binary[:[filename][:[format][:append]]]   defaults to the file binaryoutput
195acd7d2deSBarry Smith $       draw[:drawtype[:filename]]                for example, draw:tikz, draw:tikz:figure.tex  or draw:x
1962bf49c77SBarry Smith $       socket[:port]                             defaults to the standard output port
1972a359c20SBarry Smith $       saws[:communicatorname]                    publishes object to the Scientific Application Webserver (SAWs)
1982bf49c77SBarry Smith 
199cffb1e40SBarry Smith    Use PetscViewerDestroy() after using the viewer, otherwise a memory leak will occur
2002bf49c77SBarry Smith 
201eb55bdffSLawrence Mitchell    You can control whether calls to this function create a viewer (or return early with *set of PETSC_FALSE) with
202eb55bdffSLawrence Mitchell    PetscOptionsPushGetViewerOff.  This is useful if calling many small subsolves, in which case XXXViewFromOptions can take
203eb55bdffSLawrence Mitchell    an appreciable fraction of the runtime.
204eb55bdffSLawrence Mitchell 
20527b0f280SBarry Smith    If PETSc is configured with --with-viewfromoptions=0 this function always returns with *set of PETSC_FALSE
20627b0f280SBarry Smith 
2072bf49c77SBarry Smith .seealso: PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
2082bf49c77SBarry Smith           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
2092bf49c77SBarry Smith           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
2102bf49c77SBarry Smith           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
2112bf49c77SBarry Smith           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
2122bf49c77SBarry Smith           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
213eb55bdffSLawrence Mitchell           PetscOptionsFList(), PetscOptionsEList(), PetscOptionsPushGetViewerOff(), PetscOptionsPopGetViewerOff(),
214eb55bdffSLawrence Mitchell           PetscOptionsGetViewerOff()
2152bf49c77SBarry Smith @*/
216cffb1e40SBarry Smith PetscErrorCode  PetscOptionsGetViewer(MPI_Comm comm,const char pre[],const char name[],PetscViewer *viewer,PetscViewerFormat *format,PetscBool  *set)
2172bf49c77SBarry Smith {
2182bf49c77SBarry Smith   char                           *value;
2192bf49c77SBarry Smith   PetscErrorCode                 ierr;
22020610d12SBarry Smith   PetscBool                      flag,hashelp;
2212bf49c77SBarry Smith 
2222bf49c77SBarry Smith   PetscFunctionBegin;
2232bf49c77SBarry Smith   PetscValidCharPointer(name,3);
2242bf49c77SBarry Smith 
22527b0f280SBarry Smith   if (set) *set = PETSC_FALSE;
22627b0f280SBarry Smith #if defined(PETSC_SKIP_VIEWFROMOPTIONS)
22727b0f280SBarry Smith   PetscFunctionReturn(0);
22827b0f280SBarry Smith #endif
229eb55bdffSLawrence Mitchell   ierr = PetscOptionsGetViewerOff(&flag);CHKERRQ(ierr);
230eb55bdffSLawrence Mitchell   if (flag) PetscFunctionReturn(0);
23127b0f280SBarry Smith 
232c5929fdfSBarry Smith   ierr = PetscOptionsHasName(NULL,NULL,"-help",&hashelp);CHKERRQ(ierr);
23320610d12SBarry Smith   if (hashelp) {
2349de0f6ecSBarry Smith     PetscBool found;
2359af95d99SBarry Smith 
2369de0f6ecSBarry Smith     if (!PetscOptionsHelpPrintedSingleton) {
2379de0f6ecSBarry Smith       ierr = PetscOptionsHelpPrintedCreate(&PetscOptionsHelpPrintedSingleton);CHKERRQ(ierr);
2389af95d99SBarry Smith     }
2399de0f6ecSBarry Smith     ierr = PetscOptionsHelpPrintedCheck(PetscOptionsHelpPrintedSingleton,pre,name,&found);CHKERRQ(ierr);
2409de0f6ecSBarry Smith     if (!found) {
24194d6a431SBarry Smith       if (viewer) {
24294d6a431SBarry Smith         ierr = (*PetscHelpPrintf)(comm,"\n  -%s%s ascii[:[filename][:[format][:append]]]: %s (%s)\n",pre ? pre : "",name+1,"Prints object to stdout or ASCII file","PetscOptionsGetViewer");CHKERRQ(ierr);
24394d6a431SBarry Smith         ierr = (*PetscHelpPrintf)(comm,"    -%s%s binary[:[filename][:[format][:append]]]: %s (%s)\n",pre ? pre : "",name+1,"Saves object to a binary file","PetscOptionsGetViewer");CHKERRQ(ierr);
244acd7d2deSBarry Smith         ierr = (*PetscHelpPrintf)(comm,"    -%s%s draw[:drawtype[:filename]] %s (%s)\n",pre ? pre : "",name+1,"Draws object","PetscOptionsGetViewer");CHKERRQ(ierr);
24594d6a431SBarry Smith         ierr = (*PetscHelpPrintf)(comm,"    -%s%s socket[:port]: %s (%s)\n",pre ? pre : "",name+1,"Pushes object to a Unix socket","PetscOptionsGetViewer");CHKERRQ(ierr);
24694d6a431SBarry Smith         ierr = (*PetscHelpPrintf)(comm,"    -%s%s saws[:communicatorname]: %s (%s)\n\n",pre ? pre : "",name+1,"Publishes object to SAWs","PetscOptionsGetViewer");CHKERRQ(ierr);
24794d6a431SBarry Smith       } else {
24894d6a431SBarry Smith         ierr = (*PetscHelpPrintf)(comm,"    -%s%s\n",pre ? pre : "",name+1);CHKERRQ(ierr);
24994d6a431SBarry Smith       }
25094d6a431SBarry Smith     }
25120610d12SBarry Smith   }
252685405a1SBarry Smith 
253e3f3e4b6SBarry Smith   if (format) *format = PETSC_VIEWER_DEFAULT;
254c5929fdfSBarry Smith   ierr = PetscOptionsFindPair_Private(NULL,pre,name,&value,&flag);CHKERRQ(ierr);
2552bf49c77SBarry Smith   if (flag) {
2562bf49c77SBarry Smith     if (set) *set = PETSC_TRUE;
2572bf49c77SBarry Smith     if (!value) {
258bb1d7374SBarry Smith       if (viewer) {
2592bf49c77SBarry Smith         ierr = PetscViewerASCIIGetStdout(comm,viewer);CHKERRQ(ierr);
260706a11cbSBarry Smith         ierr = PetscObjectReference((PetscObject)*viewer);CHKERRQ(ierr);
261bb1d7374SBarry Smith       }
2622bf49c77SBarry Smith     } else {
26335d27ee3SJed Brown       char       *loc0_vtype,*loc1_fname,*loc2_fmt = NULL,*loc3_fmode = NULL;
2642bf49c77SBarry Smith       PetscInt   cnt;
265a75e6a4aSMatthew G. Knepley       const char *viewers[] = {PETSCVIEWERASCII,PETSCVIEWERBINARY,PETSCVIEWERDRAW,PETSCVIEWERSOCKET,PETSCVIEWERMATLAB,PETSCVIEWERSAWS,PETSCVIEWERVTK,PETSCVIEWERHDF5,0};
2662bf49c77SBarry Smith 
26735d27ee3SJed Brown       ierr = PetscStrallocpy(value,&loc0_vtype);CHKERRQ(ierr);
26835d27ee3SJed Brown       ierr = PetscStrchr(loc0_vtype,':',&loc1_fname);CHKERRQ(ierr);
26935d27ee3SJed Brown       if (loc1_fname) {
27035d27ee3SJed Brown         *loc1_fname++ = 0;
27135d27ee3SJed Brown         ierr = PetscStrchr(loc1_fname,':',&loc2_fmt);CHKERRQ(ierr);
27235d27ee3SJed Brown       }
27335d27ee3SJed Brown       if (loc2_fmt) {
27435d27ee3SJed Brown         *loc2_fmt++ = 0;
27535d27ee3SJed Brown         ierr = PetscStrchr(loc2_fmt,':',&loc3_fmode);CHKERRQ(ierr);
27635d27ee3SJed Brown       }
27735d27ee3SJed Brown       if (loc3_fmode) *loc3_fmode++ = 0;
27835d27ee3SJed Brown       ierr = PetscStrendswithwhich(*loc0_vtype ? loc0_vtype : "ascii",viewers,&cnt);CHKERRQ(ierr);
27935d27ee3SJed Brown       if (cnt > (PetscInt) sizeof(viewers)-1) SETERRQ1(comm,PETSC_ERR_ARG_OUTOFRANGE,"Unknown viewer type: %s",loc0_vtype);
280bb1d7374SBarry Smith       if (viewer) {
28135d27ee3SJed Brown         if (!loc1_fname) {
28243b63833SBarry Smith           switch (cnt) {
28343b63833SBarry Smith           case 0:
2842bf49c77SBarry Smith             ierr = PetscViewerASCIIGetStdout(comm,viewer);CHKERRQ(ierr);
28543b63833SBarry Smith             break;
28643b63833SBarry Smith           case 1:
287aa1c909bSJed Brown             if (!(*viewer = PETSC_VIEWER_BINARY_(comm))) CHKERRQ(PETSC_ERR_PLIB);
28843b63833SBarry Smith             break;
28943b63833SBarry Smith           case 2:
290aa1c909bSJed Brown             if (!(*viewer = PETSC_VIEWER_DRAW_(comm))) CHKERRQ(PETSC_ERR_PLIB);
29143b63833SBarry Smith             break;
292b58ca069SBarry Smith #if defined(PETSC_USE_SOCKET_VIEWER)
29343b63833SBarry Smith           case 3:
294aa1c909bSJed Brown             if (!(*viewer = PETSC_VIEWER_SOCKET_(comm))) CHKERRQ(PETSC_ERR_PLIB);
29543b63833SBarry Smith             break;
296b58ca069SBarry Smith #endif
29743b63833SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
29843b63833SBarry Smith           case 4:
299aa1c909bSJed Brown             if (!(*viewer = PETSC_VIEWER_MATLAB_(comm))) CHKERRQ(PETSC_ERR_PLIB);
30043b63833SBarry Smith             break;
30143b63833SBarry Smith #endif
302e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
303bfb97211SBarry Smith           case 5:
304e04113cfSBarry Smith             if (!(*viewer = PETSC_VIEWER_SAWS_(comm))) CHKERRQ(PETSC_ERR_PLIB);
305bfb97211SBarry Smith             break;
306bfb97211SBarry Smith #endif
307a75e6a4aSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
308a75e6a4aSMatthew G. Knepley           case 7:
309a75e6a4aSMatthew G. Knepley             if (!(*viewer = PETSC_VIEWER_HDF5_(comm))) CHKERRQ(PETSC_ERR_PLIB);
310a75e6a4aSMatthew G. Knepley             break;
311a75e6a4aSMatthew G. Knepley #endif
312aa1c909bSJed Brown           default: SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Unsupported viewer %s",loc0_vtype);
3137f677774SBarry Smith           }
314706a11cbSBarry Smith           ierr = PetscObjectReference((PetscObject)*viewer);CHKERRQ(ierr);
3157f677774SBarry Smith         } else {
31635d27ee3SJed Brown           if (loc2_fmt && !*loc1_fname && (cnt == 0)) { /* ASCII format without file name */
3177f677774SBarry Smith             ierr = PetscViewerASCIIGetStdout(comm,viewer);CHKERRQ(ierr);
318706a11cbSBarry Smith             ierr = PetscObjectReference((PetscObject)*viewer);CHKERRQ(ierr);
3197f677774SBarry Smith           } else {
3203550efbcSJed Brown             PetscFileMode fmode;
3212bf49c77SBarry Smith             ierr = PetscViewerCreate(comm,viewer);CHKERRQ(ierr);
32235d27ee3SJed Brown             ierr = PetscViewerSetType(*viewer,*loc0_vtype ? loc0_vtype : "ascii");CHKERRQ(ierr);
3233550efbcSJed Brown             fmode = FILE_MODE_WRITE;
3243550efbcSJed Brown             if (loc3_fmode && *loc3_fmode) { /* Has non-empty file mode ("write" or "append") */
32535d27ee3SJed Brown               ierr = PetscEnumFind(PetscFileModes,loc3_fmode,(PetscEnum*)&fmode,&flag);CHKERRQ(ierr);
3263550efbcSJed Brown               if (!flag) SETERRQ1(comm,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unknown file mode: %s",loc3_fmode);
3277f677774SBarry Smith             }
328acd7d2deSBarry Smith             if (loc2_fmt) {
329acd7d2deSBarry Smith               PetscBool tk;
330acd7d2deSBarry Smith               ierr = PetscStrcmp(loc1_fname,"tikz",&tk);CHKERRQ(ierr);
331acd7d2deSBarry Smith               if (tk) {
332acd7d2deSBarry Smith                 ierr = PetscViewerDrawSetInfo(*viewer,NULL,loc2_fmt,0,0,0,0);CHKERRQ(ierr);
333acd7d2deSBarry Smith                 *loc2_fmt = 0;
334acd7d2deSBarry Smith               }
335acd7d2deSBarry Smith             }
3363550efbcSJed Brown             ierr = PetscViewerFileSetMode(*viewer,flag?fmode:FILE_MODE_WRITE);CHKERRQ(ierr);
33735d27ee3SJed Brown             ierr = PetscViewerFileSetName(*viewer,loc1_fname);CHKERRQ(ierr);
338d1da0b69SBarry Smith             ierr = PetscViewerDrawSetDrawType(*viewer,loc1_fname);CHKERRQ(ierr);
33905315717SToby Isaac           }
34005315717SToby Isaac         }
341bb1d7374SBarry Smith       }
342bb1d7374SBarry Smith       if (viewer) {
343bb1d7374SBarry Smith         ierr = PetscViewerSetUp(*viewer);CHKERRQ(ierr);
344bb1d7374SBarry Smith       }
34535d27ee3SJed Brown       if (loc2_fmt && *loc2_fmt) {
34635d27ee3SJed Brown         ierr = PetscEnumFind(PetscViewerFormats,loc2_fmt,(PetscEnum*)format,&flag);CHKERRQ(ierr);
34735d27ee3SJed Brown         if (!flag) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Unknown viewer format %s",loc2_fmt);CHKERRQ(ierr);
3487f677774SBarry Smith       }
34935d27ee3SJed Brown       ierr = PetscFree(loc0_vtype);CHKERRQ(ierr);
3502bf49c77SBarry Smith     }
3512bf49c77SBarry Smith   }
3522bf49c77SBarry Smith   PetscFunctionReturn(0);
3532bf49c77SBarry Smith }
3542bf49c77SBarry Smith 
3555c6c1daeSBarry Smith /*@
3565c6c1daeSBarry Smith    PetscViewerCreate - Creates a viewing context
3575c6c1daeSBarry Smith 
3585c6c1daeSBarry Smith    Collective on MPI_Comm
3595c6c1daeSBarry Smith 
3605c6c1daeSBarry Smith    Input Parameter:
3615c6c1daeSBarry Smith .  comm - MPI communicator
3625c6c1daeSBarry Smith 
3635c6c1daeSBarry Smith    Output Parameter:
3645c6c1daeSBarry Smith .  inviewer - location to put the PetscViewer context
3655c6c1daeSBarry Smith 
3665c6c1daeSBarry Smith    Level: advanced
3675c6c1daeSBarry Smith 
3685c6c1daeSBarry Smith    Concepts: graphics^creating PetscViewer
3695c6c1daeSBarry Smith    Concepts: file input/output^creating PetscViewer
3705c6c1daeSBarry Smith    Concepts: sockets^creating PetscViewer
3715c6c1daeSBarry Smith 
3725c6c1daeSBarry Smith .seealso: PetscViewerDestroy(), PetscViewerSetType(), PetscViewerType
3735c6c1daeSBarry Smith 
3745c6c1daeSBarry Smith @*/
3755c6c1daeSBarry Smith PetscErrorCode  PetscViewerCreate(MPI_Comm comm,PetscViewer *inviewer)
3765c6c1daeSBarry Smith {
3775c6c1daeSBarry Smith   PetscViewer    viewer;
3785c6c1daeSBarry Smith   PetscErrorCode ierr;
3795c6c1daeSBarry Smith 
3805c6c1daeSBarry Smith   PetscFunctionBegin;
3815c6c1daeSBarry Smith   *inviewer = 0;
382607a6623SBarry Smith   ierr = PetscViewerInitializePackage();CHKERRQ(ierr);
38373107ff1SLisandro Dalcin   ierr         = PetscHeaderCreate(viewer,PETSC_VIEWER_CLASSID,"PetscViewer","PetscViewer","Viewer",comm,PetscViewerDestroy,NULL);CHKERRQ(ierr);
3845c6c1daeSBarry Smith   *inviewer    = viewer;
3855c6c1daeSBarry Smith   viewer->data = 0;
3865c6c1daeSBarry Smith   PetscFunctionReturn(0);
3875c6c1daeSBarry Smith }
3885c6c1daeSBarry Smith 
3895c6c1daeSBarry Smith /*@C
3905c6c1daeSBarry Smith    PetscViewerSetType - Builds PetscViewer for a particular implementation.
3915c6c1daeSBarry Smith 
3925c6c1daeSBarry Smith    Collective on PetscViewer
3935c6c1daeSBarry Smith 
3945c6c1daeSBarry Smith    Input Parameter:
3955c6c1daeSBarry Smith +  viewer      - the PetscViewer context
3968f6c3df8SBarry Smith -  type        - for example, PETSCVIEWERASCII
3975c6c1daeSBarry Smith 
3985c6c1daeSBarry Smith    Options Database Command:
3995c6c1daeSBarry Smith .  -draw_type  <type> - Sets the type; use -help for a list
4005c6c1daeSBarry Smith     of available methods (for instance, ascii)
4015c6c1daeSBarry Smith 
4025c6c1daeSBarry Smith    Level: advanced
4035c6c1daeSBarry Smith 
4045c6c1daeSBarry Smith    Notes:
4055c6c1daeSBarry Smith    See "include/petscviewer.h" for available methods (for instance,
4068f6c3df8SBarry Smith    PETSCVIEWERSOCKET)
4075c6c1daeSBarry Smith 
4086a9046bcSBarry Smith .seealso: PetscViewerCreate(), PetscViewerGetType(), PetscViewerType, PetscViewerPushFormat()
4095c6c1daeSBarry Smith @*/
4105c6c1daeSBarry Smith PetscErrorCode  PetscViewerSetType(PetscViewer viewer,PetscViewerType type)
4115c6c1daeSBarry Smith {
4125c6c1daeSBarry Smith   PetscErrorCode ierr,(*r)(PetscViewer);
4135c6c1daeSBarry Smith   PetscBool      match;
4145c6c1daeSBarry Smith 
4155c6c1daeSBarry Smith   PetscFunctionBegin;
4165c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
4175c6c1daeSBarry Smith   PetscValidCharPointer(type,2);
4185c6c1daeSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,type,&match);CHKERRQ(ierr);
4195c6c1daeSBarry Smith   if (match) PetscFunctionReturn(0);
4205c6c1daeSBarry Smith 
4215c6c1daeSBarry Smith   /* cleanup any old type that may be there */
4225c6c1daeSBarry Smith   if (viewer->data) {
4235c6c1daeSBarry Smith     ierr         = (*viewer->ops->destroy)(viewer);CHKERRQ(ierr);
424a297a907SKarl Rupp 
4250298fd71SBarry Smith     viewer->ops->destroy = NULL;
4265c6c1daeSBarry Smith     viewer->data         = 0;
4275c6c1daeSBarry Smith   }
4285c6c1daeSBarry Smith   ierr = PetscMemzero(viewer->ops,sizeof(struct _PetscViewerOps));CHKERRQ(ierr);
4295c6c1daeSBarry Smith 
4301c9cd337SJed Brown   ierr =  PetscFunctionListFind(PetscViewerList,type,&r);CHKERRQ(ierr);
4315c6c1daeSBarry Smith   if (!r) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_UNKNOWN_TYPE,"Unknown PetscViewer type given: %s",type);
4325c6c1daeSBarry Smith 
4335c6c1daeSBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)viewer,type);CHKERRQ(ierr);
4345c6c1daeSBarry Smith   ierr = (*r)(viewer);CHKERRQ(ierr);
4355c6c1daeSBarry Smith   PetscFunctionReturn(0);
4365c6c1daeSBarry Smith }
4375c6c1daeSBarry Smith 
4381c84c290SBarry Smith /*@C
4391c84c290SBarry Smith    PetscViewerRegister - Adds a viewer
4401c84c290SBarry Smith 
4411c84c290SBarry Smith    Not Collective
4421c84c290SBarry Smith 
4431c84c290SBarry Smith    Input Parameters:
4441c84c290SBarry Smith +  name_solver - name of a new user-defined viewer
4451c84c290SBarry Smith -  routine_create - routine to create method context
4461c84c290SBarry Smith 
4471c84c290SBarry Smith    Level: developer
4481c84c290SBarry Smith    Notes:
4491c84c290SBarry Smith    PetscViewerRegister() may be called multiple times to add several user-defined viewers.
4501c84c290SBarry Smith 
4511c84c290SBarry Smith    Sample usage:
4521c84c290SBarry Smith .vb
453bdf89e91SBarry Smith    PetscViewerRegister("my_viewer_type",MyViewerCreate);
4541c84c290SBarry Smith .ve
4551c84c290SBarry Smith 
4561c84c290SBarry Smith    Then, your solver can be chosen with the procedural interface via
4571c84c290SBarry Smith $     PetscViewerSetType(viewer,"my_viewer_type")
4581c84c290SBarry Smith    or at runtime via the option
4591c84c290SBarry Smith $     -viewer_type my_viewer_type
4601c84c290SBarry Smith 
4611c84c290SBarry Smith   Concepts: registering^Viewers
4621c84c290SBarry Smith 
4631c84c290SBarry Smith .seealso: PetscViewerRegisterAll(), PetscViewerRegisterDestroy()
4641c84c290SBarry Smith  @*/
465bdf89e91SBarry Smith PetscErrorCode  PetscViewerRegister(const char *sname,PetscErrorCode (*function)(PetscViewer))
4665c6c1daeSBarry Smith {
4675c6c1daeSBarry Smith   PetscErrorCode ierr;
4685c6c1daeSBarry Smith 
4695c6c1daeSBarry Smith   PetscFunctionBegin;
470a240a19fSJed Brown   ierr = PetscFunctionListAdd(&PetscViewerList,sname,function);CHKERRQ(ierr);
4715c6c1daeSBarry Smith   PetscFunctionReturn(0);
4725c6c1daeSBarry Smith }
4735c6c1daeSBarry Smith 
4745c6c1daeSBarry Smith /*@C
4755c6c1daeSBarry Smith    PetscViewerSetFromOptions - Sets the graphics type from the options database.
4765c6c1daeSBarry Smith       Defaults to a PETSc X windows graphics.
4775c6c1daeSBarry Smith 
4785c6c1daeSBarry Smith    Collective on PetscViewer
4795c6c1daeSBarry Smith 
4805c6c1daeSBarry Smith    Input Parameter:
4815c6c1daeSBarry Smith .     PetscViewer - the graphics context
4825c6c1daeSBarry Smith 
4835c6c1daeSBarry Smith    Level: intermediate
4845c6c1daeSBarry Smith 
4855c6c1daeSBarry Smith    Notes:
4865c6c1daeSBarry Smith     Must be called after PetscViewerCreate() before the PetscViewer is used.
4875c6c1daeSBarry Smith 
4885c6c1daeSBarry Smith   Concepts: PetscViewer^setting options
4895c6c1daeSBarry Smith 
4905c6c1daeSBarry Smith .seealso: PetscViewerCreate(), PetscViewerSetType(), PetscViewerType
4915c6c1daeSBarry Smith 
4925c6c1daeSBarry Smith @*/
4935c6c1daeSBarry Smith PetscErrorCode  PetscViewerSetFromOptions(PetscViewer viewer)
4945c6c1daeSBarry Smith {
4955c6c1daeSBarry Smith   PetscErrorCode    ierr;
4965c6c1daeSBarry Smith   char              vtype[256];
4975c6c1daeSBarry Smith   PetscBool         flg;
4985c6c1daeSBarry Smith 
4995c6c1daeSBarry Smith   PetscFunctionBegin;
5005c6c1daeSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,1);
5015c6c1daeSBarry Smith 
5025c6c1daeSBarry Smith   if (!PetscViewerList) {
503607a6623SBarry Smith     ierr = PetscViewerRegisterAll();CHKERRQ(ierr);
5045c6c1daeSBarry Smith   }
5055c6c1daeSBarry Smith   ierr = PetscObjectOptionsBegin((PetscObject)viewer);CHKERRQ(ierr);
506a264d7a6SBarry Smith   ierr = PetscOptionsFList("-viewer_type","Type of PetscViewer","None",PetscViewerList,(char*)(((PetscObject)viewer)->type_name ? ((PetscObject)viewer)->type_name : PETSCVIEWERASCII),vtype,256,&flg);CHKERRQ(ierr);
5075c6c1daeSBarry Smith   if (flg) {
5085c6c1daeSBarry Smith     ierr = PetscViewerSetType(viewer,vtype);CHKERRQ(ierr);
5095c6c1daeSBarry Smith   }
5105c6c1daeSBarry Smith   /* type has not been set? */
5115c6c1daeSBarry Smith   if (!((PetscObject)viewer)->type_name) {
5125c6c1daeSBarry Smith     ierr = PetscViewerSetType(viewer,PETSCVIEWERASCII);CHKERRQ(ierr);
5135c6c1daeSBarry Smith   }
5145c6c1daeSBarry Smith   if (viewer->ops->setfromoptions) {
515e55864a3SBarry Smith     ierr = (*viewer->ops->setfromoptions)(PetscOptionsObject,viewer);CHKERRQ(ierr);
5165c6c1daeSBarry Smith   }
5175c6c1daeSBarry Smith 
5185c6c1daeSBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
5190633abcbSJed Brown   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)viewer);CHKERRQ(ierr);
520ce1779c8SBarry Smith   ierr = PetscViewerViewFromOptions(viewer,NULL,"-viewer_view");CHKERRQ(ierr);
5215c6c1daeSBarry Smith   ierr = PetscOptionsEnd();CHKERRQ(ierr);
5225c6c1daeSBarry Smith   PetscFunctionReturn(0);
5235c6c1daeSBarry Smith }
524816f7b76SBarry Smith 
525816f7b76SBarry Smith PetscErrorCode PetscViewerFlowControlStart(PetscViewer viewer,PetscInt *mcnt,PetscInt *cnt)
526816f7b76SBarry Smith {
527816f7b76SBarry Smith   PetscErrorCode ierr;
528816f7b76SBarry Smith   PetscFunctionBegin;
529816f7b76SBarry Smith   ierr = PetscViewerBinaryGetFlowControl(viewer,mcnt);CHKERRQ(ierr);
530816f7b76SBarry Smith   ierr = PetscViewerBinaryGetFlowControl(viewer,cnt);CHKERRQ(ierr);
531816f7b76SBarry Smith   PetscFunctionReturn(0);
532816f7b76SBarry Smith }
533816f7b76SBarry Smith 
534816f7b76SBarry Smith PetscErrorCode PetscViewerFlowControlStepMaster(PetscViewer viewer,PetscInt i,PetscInt *mcnt,PetscInt cnt)
535816f7b76SBarry Smith {
536816f7b76SBarry Smith   PetscErrorCode ierr;
537816f7b76SBarry Smith   MPI_Comm       comm;
538816f7b76SBarry Smith 
539816f7b76SBarry Smith   PetscFunctionBegin;
540816f7b76SBarry Smith   ierr = PetscObjectGetComm((PetscObject)viewer,&comm);CHKERRQ(ierr);
541816f7b76SBarry Smith   if (i >= *mcnt) {
542816f7b76SBarry Smith     *mcnt += cnt;
543816f7b76SBarry Smith     ierr = MPI_Bcast(mcnt,1,MPIU_INT,0,comm);CHKERRQ(ierr);
544816f7b76SBarry Smith   }
545816f7b76SBarry Smith   PetscFunctionReturn(0);
546816f7b76SBarry Smith }
547816f7b76SBarry Smith 
548816f7b76SBarry Smith PetscErrorCode PetscViewerFlowControlEndMaster(PetscViewer viewer,PetscInt *mcnt)
549816f7b76SBarry Smith {
550816f7b76SBarry Smith   PetscErrorCode ierr;
551816f7b76SBarry Smith   MPI_Comm       comm;
552816f7b76SBarry Smith   PetscFunctionBegin;
553816f7b76SBarry Smith   ierr = PetscObjectGetComm((PetscObject)viewer,&comm);CHKERRQ(ierr);
554816f7b76SBarry Smith   *mcnt = 0;
555816f7b76SBarry Smith   ierr = MPI_Bcast(mcnt,1,MPIU_INT,0,comm);CHKERRQ(ierr);
556816f7b76SBarry Smith   PetscFunctionReturn(0);
557816f7b76SBarry Smith }
558816f7b76SBarry Smith 
559816f7b76SBarry Smith PetscErrorCode PetscViewerFlowControlStepWorker(PetscViewer viewer,PetscMPIInt rank,PetscInt *mcnt)
560816f7b76SBarry Smith {
561816f7b76SBarry Smith   PetscErrorCode ierr;
562816f7b76SBarry Smith   MPI_Comm       comm;
563816f7b76SBarry Smith   PetscFunctionBegin;
564816f7b76SBarry Smith   ierr = PetscObjectGetComm((PetscObject)viewer,&comm);CHKERRQ(ierr);
565816f7b76SBarry Smith   while (PETSC_TRUE) {
566816f7b76SBarry Smith     if (rank < *mcnt) break;
567816f7b76SBarry Smith     ierr = MPI_Bcast(mcnt,1,MPIU_INT,0,comm);CHKERRQ(ierr);
568816f7b76SBarry Smith   }
569816f7b76SBarry Smith   PetscFunctionReturn(0);
570816f7b76SBarry Smith }
571816f7b76SBarry Smith 
572816f7b76SBarry Smith PetscErrorCode PetscViewerFlowControlEndWorker(PetscViewer viewer,PetscInt *mcnt)
573816f7b76SBarry Smith {
574816f7b76SBarry Smith   PetscErrorCode ierr;
575816f7b76SBarry Smith   MPI_Comm       comm;
576816f7b76SBarry Smith   PetscFunctionBegin;
577816f7b76SBarry Smith   ierr = PetscObjectGetComm((PetscObject)viewer,&comm);CHKERRQ(ierr);
578816f7b76SBarry Smith   while (PETSC_TRUE) {
579816f7b76SBarry Smith     ierr = MPI_Bcast(mcnt,1,MPIU_INT,0,comm);CHKERRQ(ierr);
580816f7b76SBarry Smith     if (!*mcnt) break;
581816f7b76SBarry Smith   }
582816f7b76SBarry Smith   PetscFunctionReturn(0);
583816f7b76SBarry Smith }
584