]> git.sesse.net Git - ccbs/blobdiff - bigscreen/ccbs_bigscreen.cpp
Fix the transactor so it actually works.
[ccbs] / bigscreen / ccbs_bigscreen.cpp
index 3b9d6ae506ca8e11ebc4df62a7b8334dbb02948e..09aa59cdedc504eeaddc30806e283f31a0f06789 100644 (file)
@@ -30,6 +30,47 @@ public:
        }
 };
 
+class Tournament {
+public:
+       int id;
+       std::string name;
+};
+
+/* A transactor that fetches the current tournament and some information about it. */
+class FetchCurrentTournament : public pqxx::transactor<> {
+private:
+       Tournament *tourn;
+
+public:
+       FetchCurrentTournament(Tournament *tourn) : tourn(tourn) {}
+       void operator() (pqxx::transaction<> &t)
+       {
+               pqxx::result res( t.exec("SELECT * FROM bigscreen.active_tournament NATURAL JOIN tournaments") );
+               try {
+                       pqxx::result::tuple tournament = res.at(0);
+
+                       tourn->id = tournament["tournament"].as(tourn->id);
+                       tourn->name = tournament["tournamentname"].as(tourn->name);
+               } catch (PGSTD::out_of_range &e) {
+                       tourn->id = -1;
+                       tourn->name = "";
+               }
+       }
+};
+
+void init(pqxx::connection &conn)
+{
+       Tournament tourn;
+       conn.perform(FetchCurrentTournament(&tourn));
+
+       if (tourn.id == -1) {
+               std::fprintf(stderr, "No active tournament\n");
+       } else {
+               std::fprintf(stderr, "Current tournament is %d (name: '%s')\n",
+                       tourn.id, tourn.name.c_str());
+       }
+}
+
 void main_loop(pqxx::connection &conn)
 {
        pqxx::work t(conn, "trx");
@@ -54,6 +95,7 @@ int main(int argc, char **argv)
                // when active_tournament is changed, we destroy everything and start from scratch
                for ( ;; ) {
                        tournament_changed.reset_flag();
+                       init(conn);
                        do {
                                main_loop(conn);
                                conn.get_notifs();