feat(server-version): initial commit

This commit is contained in:
dancingCycle 2023-03-15 15:36:56 +01:00
parent 7fa7386a07
commit dd6a6b12e3
6 changed files with 156 additions and 1 deletions

View File

@ -1,3 +1,13 @@
# rgncycle-libpq
libpq API for regional cycle
libpq API for regional cycle
## preparation
```
sudo apt update
sudo apt install make --no-install-recommends
sudo apt install build-essential --no-install-recommends
sudo apt install libpq-dev --no-install-recommends
```

53
server-version/main.c Normal file
View File

@ -0,0 +1,53 @@
#include <stdio.h>
#include <stdlib.h>
#include <libpq-fe.h>
void do_exit(PGconn *conn) {
fprintf(stderr, "%s\n", PQerrorMessage(conn));
/*close connection and free memory*/
PQfinish(conn);
exit(EXIT_FAILURE);
}
int main(int argc, char **argv) {
/*declaration*/
const char *conninfo;
printf("main() Started...\n");
/*read command line*/
if (argc > 1){
printf("main() argv[1]: %s\n", argv[1]);
conninfo = argv[1];
}else{
printf("call ./main <connection info>\n");
return 1;
}
/*connect to database*/
PGconn *conn = PQconnectdb(conninfo);
if (PQstatus(conn) == CONNECTION_BAD) {
fprintf(stderr, "Connection to database failed: %s\n",
PQerrorMessage(conn));
do_exit(conn);
}else if(PQstatus(conn)==CONNECTION_OK){
printf("main() connected to database\n");
}else{
printf("main() connection status NOT known\n");
}
char *user = PQuser(conn);
char *db_name = PQdb(conn);
char *pswd = PQpass(conn);
printf("User: %s\n", user);
printf("Database name: %s\n", db_name);
printf("Password: %s\n", pswd);
/*return integer representing database version*/
int ver = PQserverVersion(conn);
printf("Server version: %d\n", ver);
PQfinish(conn);
return 0;
}

24
server-version/makefile Normal file
View File

@ -0,0 +1,24 @@
# Docu
#
#$@ is the name of the file to be made
#$? is the names of the changed dependents
#$< the name of the related file that caused the action
#$* the prefix shared by target and dependent files
#
# Others
RM = /bin/rm -f
#
# Source, Executable, Includes, Library Defines
EXE = main
#
# Compiler, Linker Defines
CC = /usr/bin/gcc
#
all: main.o
$(CC) main.c -I/usr/include/postgresql -L/usr/lib/x86_64-linux-gnu -lpq -std=c99 -Wall -o $(EXE)
#
main.o:
$(CC) -c main.c -I/usr/include/postgresql
# Clean Up Objects, Exectuables, Dumps out of source directory
clean:
$(RM) *.o $(EXE) *~

View File

@ -0,0 +1,21 @@
# Docu
#
#$@ is the name of the file to be made
#$? is the names of the changed dependents
#$< the name of the related file that caused the action
#$* the prefix shared by target and dependent files
#
# Others
RM = /bin/rm -f
#
# Source, Executable, Includes, Library Defines
EXE = main
#
# Compiler, Linker Defines
CC = /usr/bin/gcc
#
all:
$(CC) main.c -I/usr/include/postgresql -L/usr/lib/x86_64-linux-gnu -lpq -std=c99 -Wall -o $(EXE)
# Clean Up Objects, Exectuables, Dumps out of source directory
clean:
$(RM) *.o $(EXE) *~

View File

@ -0,0 +1,24 @@
# Docu
#
#$@ is the name of the file to be made
#$? is the names of the changed dependents
#$< the name of the related file that caused the action
#$* the prefix shared by target and dependent files
#
# Others
RM = /bin/rm -f
#
# Source, Executable, Includes, Library Defines
EXE = main
#
# Compiler, Linker Defines
CC = /usr/bin/gcc
#
all: main.o
$(CC) main.c -I/usr/include/postgresql -L/usr/lib/x86_64-linux-gnu -lpq -std=c99 -Wall -o $(EXE)
#
main.o:
$(CC) -c main.c -I/usr/include/postgresql
# Clean Up Objects, Exectuables, Dumps out of source directory
clean:
$(RM) *.o $(EXE) *~

23
server-version/readme.md Normal file
View File

@ -0,0 +1,23 @@
* build
```
make
```
* run
```
./main 'postgresql://<user>:<secret>@<hostname>:<port>/<db>'
```
* or run
```
./main 'postgresql://<user>:<secret>@<hostname>:<port>/<db>'
```
* or run
```
./main "host=<hostname> port=<port> user=<user> password=<<secret>> dbname=<db>"
```