Add an "url_flags" field to CamelProvider. Move the CAMEL_SERVICE_URL_*
[platform/upstream/evolution-data-server.git] / camel / camel-service.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-service.h : Abstract class for an email service */
3
4 /* 
5  *
6  * Author : 
7  *  Bertrand Guiheneuf <bertrand@helixcode.com>
8  *
9  * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
10  *
11  * This program is free software; you can redistribute it and/or 
12  * modify it under the terms of the GNU General Public License as 
13  * published by the Free Software Foundation; either version 2 of the
14  * License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24  * USA
25  */
26
27
28 #ifndef CAMEL_SERVICE_H
29 #define CAMEL_SERVICE_H 1
30
31
32 #ifdef __cplusplus
33 extern "C" {
34 #pragma }
35 #endif /* __cplusplus }*/
36
37 #include <camel/camel-object.h>
38 #include <camel/camel-url.h>
39 #include <camel/camel-provider.h>
40 #include <netdb.h>
41
42 #define CAMEL_SERVICE_TYPE     (camel_service_get_type ())
43 #define CAMEL_SERVICE(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_SERVICE_TYPE, CamelService))
44 #define CAMEL_SERVICE_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_SERVICE_TYPE, CamelServiceClass))
45 #define CAMEL_IS_SERVICE(o)    (CAMEL_CHECK_TYPE((o), CAMEL_SERVICE_TYPE))
46
47
48 struct _CamelService {
49         CamelObject parent_object;
50
51         CamelSession *session;
52         CamelProvider *provider;
53         gboolean connected;
54         CamelURL *url;
55 };
56
57
58 typedef struct {
59         CamelObjectClass parent_class;
60
61         gboolean  (*connect)           (CamelService *service, 
62                                         CamelException *ex);
63         gboolean  (*disconnect)        (CamelService *service,
64                                         gboolean clean,
65                                         CamelException *ex);
66
67         /*gboolean  (*is_connected)      (CamelService *service);*/
68
69         GList *   (*query_auth_types_connected)  (CamelService *service,
70                                                   CamelException *ex);
71         GList *   (*query_auth_types_generic)  (CamelService *service,
72                                                 CamelException *ex);
73         void      (*free_auth_types)   (CamelService *service,
74                                         GList *authtypes);
75
76         char *    (*get_name)          (CamelService *service,
77                                         gboolean brief);
78         char *    (*get_path)          (CamelService *service);
79
80 } CamelServiceClass;
81
82
83 /* query_auth_types returns a GList of these */
84 typedef struct {
85         char *name, *description, *authproto;
86         gboolean need_password;
87 } CamelServiceAuthType;
88
89
90 /* public methods */
91 CamelService *      camel_service_new                (CamelType type, 
92                                                       CamelSession *session,
93                                                       CamelProvider *provider,
94                                                       CamelURL *url, 
95                                                       CamelException *ex);
96 gboolean            camel_service_connect            (CamelService *service, 
97                                                       CamelException *ex);
98 gboolean            camel_service_disconnect         (CamelService *service,
99                                                       gboolean clean,
100                                                       CamelException *ex);
101 char *              camel_service_get_url            (CamelService *service);
102 char *              camel_service_get_name           (CamelService *service,
103                                                       gboolean brief);
104 char *              camel_service_get_path           (CamelService *service);
105 CamelSession *      camel_service_get_session        (CamelService *service);
106 CamelProvider *     camel_service_get_provider       (CamelService *service);
107 GList *             camel_service_query_auth_types   (CamelService *service,
108                                                       CamelException *ex);
109 void                camel_service_free_auth_types    (CamelService *service,
110                                                       GList *authtypes);
111
112 /* convenience functions */
113 struct hostent *    camel_service_gethost            (CamelService *service,
114                                                       CamelException *ex);
115
116
117 /* Standard Camel function */
118 CamelType camel_service_get_type (void);
119
120 #ifdef __cplusplus
121 }
122 #endif /* __cplusplus */
123
124 #endif /* CAMEL_SERVICE_H */
125