Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
7e20c35e
Commit
7e20c35e
authored
23 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Add ecpg --help and --version. Renumber the exit status codes, which were
documented wrong.
parent
9cf701f3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/src/sgml/ref/ecpg-ref.sgml
+2
-2
2 additions, 2 deletions
doc/src/sgml/ref/ecpg-ref.sgml
src/interfaces/ecpg/preproc/ecpg.c
+60
-16
60 additions, 16 deletions
src/interfaces/ecpg/preproc/ecpg.c
src/interfaces/ecpg/preproc/extern.h
+5
-7
5 additions, 7 deletions
src/interfaces/ecpg/preproc/extern.h
with
67 additions
and
25 deletions
doc/src/sgml/ref/ecpg-ref.sgml
+
2
−
2
View file @
7e20c35e
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/ecpg-ref.sgml,v 1.
8
2001/0
7/11 03:43:52 momjian
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/ecpg-ref.sgml,v 1.
9
2001/0
8/24 22:37:36 petere
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -116,7 +116,7 @@ ecpg [ -v ] [ -t ] [ -I include-path ] [ -o outfile ] file1 [ file2 ] [ ... ]
...
@@ -116,7 +116,7 @@ ecpg [ -v ] [ -t ] [ -I include-path ] [ -o outfile ] file1 [ file2 ] [ ... ]
<term><replaceable>return value</replaceable></term>
<term><replaceable>return value</replaceable></term>
<listitem>
<listitem>
<para>
<para>
<application>ecpg</application> returns 0 to the shell on successful completion,
-1
<application>ecpg</application> returns 0 to the shell on successful completion,
non-zero
for errors.
for errors.
</para>
</para>
</listitem>
</listitem>
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/preproc/ecpg.c
+
60
−
16
View file @
7e20c35e
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.47 2001/08/24 22:37:36 petere Exp $ */
/* New main for ecpg, the PostgreSQL embedded SQL precompiler. */
/* New main for ecpg, the PostgreSQL embedded SQL precompiler. */
/* (C) Michael Meskes <meskes@postgresql.org> Feb 5th, 1998 */
/* (C) Michael Meskes <meskes@postgresql.org> Feb 5th, 1998 */
/* Placed under the same
copyright
as PostgresSQL */
/* Placed under the same
license
as PostgresSQL */
#include
"postgres_fe.h"
#include
"postgres_fe.h"
...
@@ -10,9 +12,12 @@
...
@@ -10,9 +12,12 @@
#include
"getopt.h"
#include
"getopt.h"
#endif
#endif
extern
int
optind
;
extern
char
*
optarg
;
#include
"extern.h"
#include
"extern.h"
int
ret_value
=
OK
,
int
ret_value
=
0
,
autocommit
=
0
;
autocommit
=
0
;
struct
_include_path
*
include_paths
=
NULL
;
struct
_include_path
*
include_paths
=
NULL
;
struct
cursor
*
cur
=
NULL
;
struct
cursor
*
cur
=
NULL
;
...
@@ -20,14 +25,29 @@ struct typedefs *types = NULL;
...
@@ -20,14 +25,29 @@ struct typedefs *types = NULL;
struct
_defines
*
defines
=
NULL
;
struct
_defines
*
defines
=
NULL
;
static
void
static
void
usage
(
char
*
progname
)
help
(
const
char
*
progname
)
{
{
fprintf
(
stderr
,
"ecpg - the postgresql preprocessor, version: %d.%d.%d
\n
"
,
MAJOR_VERSION
,
MINOR_VERSION
,
PATCHLEVEL
);
printf
(
"%s is the PostgreSQL embedded SQL preprocessor for C programs.
\n\n
"
,
fprintf
(
stderr
,
"Usage: %s: "
progname
);
printf
(
"Usage:
\n
"
" %s %s[-I DIRECTORY] [-o OUTFILE] [-t] file1 [file2...]
\n\n
"
,
progname
,
#ifdef YYDEBUG
"[-d] "
#else
""
#endif
);
printf
(
"Options:
\n
"
);
#ifdef YYDEBUG
#ifdef YYDEBUG
"[-d]"
printf
(
" -d generate parser debug output
\n
"
);
#endif
#endif
" [-v] [-t] [-I include path] [ -o output file name] [-D define name] file1 [file2] ...
\n
"
,
progname
);
printf
(
" -I DIRECTORY search DIRECTORY for include files
\n
"
);
printf
(
" -o OUTFILE write result to OUTFILE
\n
"
);
printf
(
" -t turn on autocommit of transactions
\n
"
);
printf
(
"
\n
If no output file is specified, the name is formed by adding .c
\n
"
"to the input file name, after stripping off .pgc if present.
\n
"
);
printf
(
"
\n
Report bugs to <pgsql-bugs@postgresql.org>.
\n
"
);
}
}
static
void
static
void
...
@@ -60,9 +80,27 @@ main(int argc, char *const argv[])
...
@@ -60,9 +80,27 @@ main(int argc, char *const argv[])
verbose
=
false
,
verbose
=
false
,
out_option
=
0
;
out_option
=
0
;
struct
_include_path
*
ip
;
struct
_include_path
*
ip
;
char
*
progname
;
extern
int
optind
;
if
(
!
strrchr
(
argv
[
0
],
'/'
))
extern
char
*
optarg
;
progname
=
argv
[
0
];
else
progname
=
strrchr
(
argv
[
0
],
'/'
)
+
1
;
if
(
argc
>
1
)
{
if
(
strcmp
(
argv
[
1
],
"--help"
)
==
0
||
strcmp
(
argv
[
1
],
"-?"
)
==
0
)
{
help
(
progname
);
exit
(
0
);
}
else
if
(
strcmp
(
argv
[
1
],
"--version"
)
==
0
)
{
printf
(
"ecpg (PostgreSQL %s) %d.%d.%d
\n
"
,
PG_VERSION
,
MAJOR_VERSION
,
MINOR_VERSION
,
PATCHLEVEL
);
exit
(
0
);
}
}
add_include_path
(
"/usr/include"
);
add_include_path
(
"/usr/include"
);
add_include_path
(
INCLUDE_PATH
);
add_include_path
(
INCLUDE_PATH
);
...
@@ -90,32 +128,38 @@ main(int argc, char *const argv[])
...
@@ -90,32 +128,38 @@ main(int argc, char *const argv[])
verbose
=
true
;
verbose
=
true
;
break
;
break
;
case
'D'
:
case
'D'
:
/* XXX not documented */
add_preprocessor_define
(
optarg
);
add_preprocessor_define
(
optarg
);
break
;
break
;
#ifdef YYDEBUG
case
'd'
:
case
'd'
:
#ifdef YYDEBUG
yydebug
=
1
;
yydebug
=
1
;
break
;
#else
fprintf
(
stderr
,
"%s: parser debug support (-d) not available
\n
"
,
progname
);
#endif
#endif
break
;
default:
default:
usage
(
argv
[
0
]);
fprintf
(
stderr
,
"Try '%s --help' for more information.
\n
"
,
argv
[
0
]);
return
ILLEGAL_OPTION
;
return
ILLEGAL_OPTION
;
}
}
}
}
if
(
verbose
)
if
(
verbose
)
{
{
fprintf
(
stderr
,
"ecpg - the postgresql preprocessor, version: %d.%d.%d
\n
"
,
MAJOR_VERSION
,
MINOR_VERSION
,
PATCHLEVEL
);
fprintf
(
stderr
,
"%s, the PostgreSQL embedded C preprocessor, version %d.%d.%d
\n
"
,
progname
,
MAJOR_VERSION
,
MINOR_VERSION
,
PATCHLEVEL
);
fprintf
(
stderr
,
"exec sql include ... search starts here:
\n
"
);
fprintf
(
stderr
,
"exec sql include ... search starts here:
\n
"
);
for
(
ip
=
include_paths
;
ip
!=
NULL
;
ip
=
ip
->
next
)
for
(
ip
=
include_paths
;
ip
!=
NULL
;
ip
=
ip
->
next
)
fprintf
(
stderr
,
" %s
\n
"
,
ip
->
path
);
fprintf
(
stderr
,
" %s
\n
"
,
ip
->
path
);
fprintf
(
stderr
,
"
E
nd of search list
.
\n
"
);
fprintf
(
stderr
,
"
e
nd of search list
\n
"
);
return
OK
;
return
0
;
}
}
if
(
optind
>=
argc
)
/* no files specified */
if
(
optind
>=
argc
)
/* no files specified */
{
{
usage
(
argv
[
0
]);
fprintf
(
stderr
,
"%s: no input files specified
\n
"
,
progname
);
fprintf
(
stderr
,
"Try '%s --help' for more information.
\n
"
,
argv
[
0
]);
return
(
ILLEGAL_OPTION
);
return
(
ILLEGAL_OPTION
);
}
}
else
else
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/preproc/extern.h
+
5
−
7
View file @
7e20c35e
...
@@ -80,10 +80,8 @@ extern ScanKeyword *ScanKeywordLookup(char *text);
...
@@ -80,10 +80,8 @@ extern ScanKeyword *ScanKeywordLookup(char *text);
/* return codes */
/* return codes */
#define OK 0
#define ILLEGAL_OPTION 1
#define PARSE_ERROR -1
#define NO_INCLUDE_FILE 2
#define ILLEGAL_OPTION -2
#define PARSE_ERROR 3
#define INDICATOR_NOT_ARRAY -3
#define INDICATOR_NOT_ARRAY 4
#define OUT_OF_MEMORY 5
#define NO_INCLUDE_FILE ENOENT
#define OUT_OF_MEMORY ENOMEM
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment