forked from FreeFem/FreeFem-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gggg.cpp
121 lines (85 loc) · 3.53 KB
/
gggg.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// -*- Mode : c++ -*-
//
// SUMMARY :
// USAGE :
// ORG :
// AUTHOR : Frederic Hecht
// E-MAIL : [email protected]
//
/*
This file is part of Freefem++
Freefem++ is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
Freefem++ is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Freefem++; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <iostream>
#include <cstdio>
namespace ffapi {
// void init) ();
// need #include <iostream>
// need #include <sstream>
// need using namespace std;
std::istream * (*cin)();
std::ostream *(*cout)();
std::ostream *(*cerr)();
// <<mingw32_stdout>> Cannot name these functions identically to the original file pointers under MingW32 (compile
// error). Impacts [[file:InitFunct.hpp::LOADINITIO]]. Changed from stdxxx_ptr() to ffstdxxx() according to the way FF
// itself was changed.
FILE *(*ffstdout)();
FILE *(*ffstderr)();
FILE *(*ffstdin)();
/// Initiate graphical pipe output. I need a separate function for this to warn ffcs to check the corresponding ffglut
/// magic number
size_t (*fwriteinit)(const void *ptr, size_t size, size_t nmemb,FILE *stream);
/// Indicates the begining of a new plot to avoid sending socket control data with each plot item.
void (*newplot)();
/// Redefinition of standard system calls
FILE *(*ff_popen)(const char *command, const char *type);
int (*ff_pclose)(FILE *stream);
size_t (*ff_fwrite)(const void *ptr, size_t size, size_t nmemb,FILE *stream);
int (*ff_fflush)(FILE *stream);
int (*ff_ferror)(FILE *stream);
int (*ff_feof)(FILE *stream);
// Windows file mode
// -----------------
/// Changing file mode needs to be disabled when the file is a TCP socket to FFCS. Since the treatment is different in
/// FF and in FFLANG executables, they have to be stored in a DLL that changes between these two programs.
void (*wintextmode)(FILE *f);
void (*winbinmode)(FILE *f);
// Transfer basic MPI control
// --------------------------
void (*mpi_init)(int &argc, char **& argv);
void (*mpi_finalize)();
// Permanent server control
// ------------------------
/// if true, FF is considered to be accessible from remote anonymous connections and some commands (like shell
/// commands) are not allowed.
bool (*protectedservermode)();
}
#include "config-wrapper.h"
#include <cstdio>
#include <complex>
#include <queue>
#include <error.hpp>
#include "environment.hpp"
#define FF_GRAPH_PTR_DCL
#include "rgraph.hpp"
void ShowDebugStack(){}
long verbosity = 1;
long searchMethod=0; // = 9999; //pichon //PROBABLY BUG : can't compile without it
FILE *ThePlotStream=0; // Add for new plot. FH oct 2008
int TheCurrentLine=-1; // unset: by default
long mpisize=0,mpirank=0;
bool showCPU= false;
long npichon2d=0, npichon3d=0;
long npichon2d1=0, npichon3d1=0;
// add F. Hecht
EnvironmentData ffenvironment;