Codebase list telepathy-ring / 8e899fda-f40d-458b-8457-c602d976c1a6/main modem / service.h
8e899fda-f40d-458b-8457-c602d976c1a6/main

Tree @8e899fda-f40d-458b-8457-c602d976c1a6/main (Download .tar.gz)

service.h @8e899fda-f40d-458b-8457-c602d976c1a6/mainraw · history · blame

/*
 * modem/service.h - Interface towards Ofono
 *
 * Copyright (C) 2009 Nokia Corporation
 *   @author Pekka Pessi <first.surname@nokia.com>
 *
 * This work 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 work 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 work; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef _MODEM_SERVICE_H_
#define _MODEM_SERVICE_H_

#include <glib-object.h>

#include <modem/oface.h>
#include <modem/modem.h>

G_BEGIN_DECLS

typedef struct _ModemService ModemService;
typedef struct _ModemServiceClass ModemServiceClass;
typedef struct _ModemServicePrivate ModemServicePrivate;

struct _ModemServiceClass {
  ModemOfaceClass parent_class;
};

struct _ModemService {
  ModemOface parent;
  ModemServicePrivate *priv;
};

GType modem_service_get_type(void);

/* TYPE MACROS */
#define MODEM_TYPE_SERVICE                      \
  (modem_service_get_type())
#define MODEM_SERVICE(obj)                                              \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), MODEM_TYPE_SERVICE, ModemService))
#define MODEM_SERVICE_CLASS(klass)                                      \
  (G_TYPE_CHECK_CLASS_CAST((klass), MODEM_TYPE_SERVICE, ModemServiceClass))
#define MODEM_IS_SERVICE(obj)                                   \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), MODEM_TYPE_SERVICE))
#define MODEM_IS_SERVICE_CLASS(klass)                           \
  (G_TYPE_CHECK_CLASS_TYPE((klass), MODEM_TYPE_SERVICE))
#define MODEM_SERVICE_GET_CLASS(obj)                                    \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), MODEM_TYPE_SERVICE, ModemServiceClass))

/*
 * Signals:
 * modem-added (modem)
 * modem-removed (modem)
 */

/* ---------------------------------------------------------------------- */

#define MODEM_OFACE_MANAGER "org.ofono.Manager"

ModemService *modem_service(void);

void modem_service_refresh (ModemService *self);

Modem *modem_service_find_by_imsi (ModemService *self, char const *imsi);
Modem *modem_service_find_by_imei (ModemService *self, char const *imei);
Modem *modem_service_find_by_path (ModemService *self, char const *path);
Modem *modem_service_find_best (ModemService *self);

Modem **modem_service_get_modems(ModemService *self);

G_END_DECLS

#endif /* #ifndef _MODEM_SERVICE_H_*/