summaryrefslogtreecommitdiff
path: root/wocky/wocky-contact-factory.h
blob: 06eba012a5cf34c4a6db4b00ad6cf00934440cb3 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 * wocky-resource-contact.h - Header for WockyContactFactory
 * Copyright (C) 2009 Collabora Ltd.
 * @author Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
#if !defined (WOCKY_H_INSIDE) && !defined (WOCKY_COMPILATION)
# error "Only <wocky/wocky.h> can be included directly."
#endif

#ifndef __WOCKY_CONTACT_FACTORY_H__
#define __WOCKY_CONTACT_FACTORY_H__

#include <glib-object.h>

#include "wocky-bare-contact.h"
#include "wocky-resource-contact.h"
#include "wocky-ll-contact.h"

G_BEGIN_DECLS

typedef struct _WockyContactFactory WockyContactFactory;

/**
 * WockyContactFactoryClass:
 *
 * The class of a #WockyContactFactory.
 */
typedef struct _WockyContactFactoryClass WockyContactFactoryClass;
typedef struct _WockyContactFactoryPrivate WockyContactFactoryPrivate;

struct _WockyContactFactoryClass {
  /*<private>*/
  GObjectClass parent_class;
};

struct _WockyContactFactory {
  /*<private>*/
  GObject parent;
  WockyContactFactoryPrivate *priv;
};

GType wocky_contact_factory_get_type (void);

#define WOCKY_TYPE_CONTACT_FACTORY \
  (wocky_contact_factory_get_type ())
#define WOCKY_CONTACT_FACTORY(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), WOCKY_TYPE_CONTACT_FACTORY, \
   WockyContactFactory))
#define WOCKY_CONTACT_FACTORY_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST((klass), WOCKY_TYPE_CONTACT_FACTORY, \
   WockyContactFactoryClass))
#define WOCKY_IS_CONTACT_FACTORY(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), WOCKY_TYPE_CONTACT_FACTORY))
#define WOCKY_IS_CONTACT_FACTORY_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass), WOCKY_TYPE_CONTACT_FACTORY))
#define WOCKY_CONTACT_FACTORY_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), WOCKY_TYPE_CONTACT_FACTORY, \
   WockyContactFactoryClass))

WockyContactFactory * wocky_contact_factory_new (void);

WockyBareContact * wocky_contact_factory_ensure_bare_contact (
    WockyContactFactory *factory,
    const gchar *bare_jid);

WockyBareContact * wocky_contact_factory_lookup_bare_contact (
    WockyContactFactory *factory,
    const gchar *bare_jid);

WockyResourceContact * wocky_contact_factory_ensure_resource_contact (
    WockyContactFactory *factory,
    const gchar *full_jid);

WockyResourceContact * wocky_contact_factory_lookup_resource_contact (
    WockyContactFactory *factory,
    const gchar *full_jid);

WockyLLContact * wocky_contact_factory_ensure_ll_contact (
    WockyContactFactory *factory,
    const gchar *jid);

WockyLLContact * wocky_contact_factory_lookup_ll_contact (
    WockyContactFactory *factory,
    const gchar *jid);

void wocky_contact_factory_add_ll_contact (WockyContactFactory *factory,
    WockyLLContact *contact);

GList * wocky_contact_factory_get_ll_contacts (WockyContactFactory *factory);

G_END_DECLS

#endif /* #ifndef __WOCKY_CONTACT_FACTORY_H__*/