summaryrefslogtreecommitdiffstats
path: root/src/connection-pool.h
blob: 7a14f57d8c5c11056d872e7b22a238793a02eabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#ifndef CONNECTION_POOL_H
#define CONNECTION_POOL_H

#include <glib-object.h>
#include <gtkmm.h>
#include <sigc++/sigc++.h>

namespace Inkscape
{
class ConnectionPool
{
  public:

    enum Exception
    {
      NAME_EXISTS,
      NAME_DOES_NOT_EXIST
    };

    typedef std::map<std::string, sigc::connection*> ConnectionMap;

    ~ConnectionPool ()
    {
      for (ConnectionMap::iterator iter = map.begin (), end = map.end (); iter != end; ++iter)
      {
	sigc::connection* connection = (*iter).second;
	connection->disconnect ();
	delete connection;
      }
    }

    void
    add_connection (std::string name, sigc::connection* connection)
    {
      if (map.find (name) != map.end ()) throw NAME_EXISTS;
      map.insert (std::make_pair (name, connection)); 
    }

    void
    del_connection (std::string name)
    {
      ConnectionMap::iterator iter = map.find (name); 
      if (iter == map.end ()) throw NAME_DOES_NOT_EXIST;
      sigc::connection* connection = (*iter).second;
      connection->disconnect ();
      delete connection;
    }


    static Inkscape::ConnectionPool*
    new_connection_pool (std::string name)
    {
       return new ConnectionPool (name); 
    }

    static void
    del_connection_pool (Inkscape::ConnectionPool* pool)
    {
      delete pool;
    }

    static void
    connect_destroy (GObject *obj, Inkscape::ConnectionPool *pool)
    {
      g_object_connect (obj, "swapped-signal::destroy", G_CALLBACK (del_connection_pool), pool, NULL);
    }

    operator std::string ()
    {
      return name;
    }

  private:

    ConnectionPool (std::string name) : name (name)
    {}

    ConnectionMap map;
    std::string   name;
};
}

#endif