main: keyring initialization

This commit is contained in:
Mirek Kratochvil 2013-04-17 09:33:22 +02:00
parent c62c19d29d
commit cff617f8a4
2 changed files with 50 additions and 6 deletions

View file

@ -388,7 +388,10 @@ bool keyring::open()
bool keyring::close() bool keyring::close()
{ {
//close and remove the lock /*
* close and remove the lock. Because of temporary lack of proper
* reporting, we just ignore the errors now.
*/
flock (lockfd, LOCK_UN); flock (lockfd, LOCK_UN);
::close (lockfd); ::close (lockfd);
std::string fn = get_user_dir() + LOCK_FILENAME; std::string fn = get_user_dir() + LOCK_FILENAME;

View file

@ -50,7 +50,11 @@ void print_help (char*pname)
void test() void test()
{ {
//stuff gets tested here. /*
* Dear hacker,
* use this function for quicktesting your stuff.
* Other places suck for that purpose.
*/
} }
/* /*
@ -59,6 +63,8 @@ void test()
#include <getopt.h> #include <getopt.h>
#include "keyring.h"
int main (int argc, char**argv) int main (int argc, char**argv)
{ {
bool do_help = false; bool do_help = false;
@ -111,11 +117,46 @@ int main (int argc, char**argv)
return 0; return 0;
} }
if (do_test) { /*
test(); * something is happening here, therefore init everything
return 0; */
int exitflag=0;
keyring KR;
if(!KR.open()) {
err("could not open keyring!");
return 1;
} }
return 0; if(!KR.load()) {
err("could not load keyring!");
exitflag=1;
goto exit_ok;
}
/*
* check the option flags and do whatever was requested
*/
if (do_test) {
test();
goto exit_ok;
}
/*
* all done.
* keyring is _not_ automatically saved here to prevent frequent
* rewriting and due the fact that everything that modifies it _must_
* also ensure and verify that it was written back correctly.
*/
exit_ok:
if(!KR.close()) {
err("could not close keyring, something weird is going to happen.");
}
return exitflag;
} }