summaryrefslogtreecommitdiffstats
path: root/src/presence/presence_state.cpp
diff options
context:
space:
mode:
authorMichal Kubecek <mkubecek@suse.cz>2015-04-13 09:21:39 +0200
committerMichal Kubecek <mkubecek@suse.cz>2015-04-13 09:21:39 +0200
commite2bc6f4153813cc570ae814c8ddb74628009b488 (patch)
treea40b171be1d859c2232ccc94f758010f9ae54d3c /src/presence/presence_state.cpp
downloadtwinkle-e2bc6f4153813cc570ae814c8ddb74628009b488.tar
twinkle-e2bc6f4153813cc570ae814c8ddb74628009b488.tar.gz
twinkle-e2bc6f4153813cc570ae814c8ddb74628009b488.tar.lz
twinkle-e2bc6f4153813cc570ae814c8ddb74628009b488.tar.xz
twinkle-e2bc6f4153813cc570ae814c8ddb74628009b488.zip
initial checkin
Check in contents of upstream 1.4.2 tarball, exclude generated files.
Diffstat (limited to 'src/presence/presence_state.cpp')
-rw-r--r--src/presence/presence_state.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/presence/presence_state.cpp b/src/presence/presence_state.cpp
new file mode 100644
index 0000000..91c9ba8
--- /dev/null
+++ b/src/presence/presence_state.cpp
@@ -0,0 +1,100 @@
+/*
+ Copyright (C) 2005-2009 Michel de Boer <michel@twinklephone.com>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#include "presence_state.h"
+
+#include <cassert>
+#include "buddy.h"
+#include "pidf_body.h"
+#include "log.h"
+
+string t_presence_state::basic_state2str(t_presence_state::t_basic_state state) {
+ switch (state) {
+ case ST_BASIC_UNKNOWN:
+ return "unknown";
+ case ST_BASIC_CLOSED:
+ return "closed";
+ case ST_BASIC_OPEN:
+ return "open";
+ case ST_BASIC_FAILED:
+ return "failed";
+ case ST_BASIC_REJECTED:
+ return "rejeceted";
+ default:
+ return "UNKNOWN";
+ }
+}
+
+string t_presence_state::basic_state2pidf_str(t_presence_state::t_basic_state state) {
+ if (state == ST_BASIC_OPEN) {
+ return PIDF_STATUS_BASIC_OPEN;
+ }
+
+ // Convert all other states to "closed".
+ return PIDF_STATUS_BASIC_CLOSED;
+}
+
+t_presence_state::t_presence_state() {
+ assert(false);
+}
+
+t_presence_state::t_presence_state(t_buddy *_buddy) :
+ buddy(_buddy),
+ basic_state(ST_BASIC_UNKNOWN)
+{
+}
+
+t_presence_state::t_basic_state t_presence_state::get_basic_state(void) const {
+ t_basic_state result;
+ mtx_state.lock();
+ result = basic_state;
+ mtx_state.unlock();
+ return result;
+}
+
+string t_presence_state::get_failure_msg(void) const {
+ string result;
+ mtx_state.lock();
+ result = failure_msg;
+ mtx_state.unlock();
+ return result;
+}
+
+void t_presence_state::set_basic_state(t_presence_state::t_basic_state state) {
+ mtx_state.lock();
+ basic_state = state;
+
+ log_file->write_header("t_presence_state::set_basic_state", LOG_NORMAL, LOG_DEBUG);
+ log_file->write_raw("Presence state changed to: ");
+ log_file->write_raw(basic_state2str(basic_state));
+ log_file->write_endl();
+ log_file->write_raw(buddy->get_sip_address());
+ log_file->write_endl();
+ log_file->write_footer();
+
+ mtx_state.unlock();
+
+ // Notify the stat change to all observers of the buddy.
+ buddy->notify();
+}
+
+void t_presence_state::set_failure_msg(const string &msg) {
+ mtx_state.lock();
+ failure_msg = msg;
+ mtx_state.unlock();
+}