Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[libmce-glib] Added MceCharger object. JB#46836
  • Loading branch information
monich committed Aug 22, 2019
1 parent 10dc2bd commit ce5fef5
Show file tree
Hide file tree
Showing 6 changed files with 441 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -39,6 +39,7 @@ LIB = $(LIB_SONAME).$(VERSION_MINOR).$(VERSION_RELEASE)

SRC = \
mce_battery.c \
mce_charger.c \
mce_display.c \
mce_proxy.c \
mce_tklock.c
Expand Down
2 changes: 2 additions & 0 deletions include/mce_battery.h
Expand Up @@ -35,6 +35,8 @@

#include "mce_types.h"

/* Since 1.0.6 */

G_BEGIN_DECLS

typedef enum mce_battery_status {
Expand Down
110 changes: 110 additions & 0 deletions include/mce_charger.h
@@ -0,0 +1,110 @@
/*
* Copyright (C) 2019 Jolla Ltd.
* Copyright (C) 2019 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the names of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef MCE_CHARGER_H
#define MCE_CHARGER_H

#include "mce_types.h"

/* Since 1.0.6 */

G_BEGIN_DECLS

typedef enum mce_charger_state {
MCE_CHARGER_UNKNOWN,
MCE_CHARGER_ON,
MCE_CHARGER_OFF
} MCE_CHARGER_STATE;

typedef struct mce_charger_priv MceChargerPriv;

typedef struct mce_charger {
GObject object;
MceChargerPriv* priv;
gboolean valid;
MCE_CHARGER_STATE state;
} MceCharger;

typedef void
(*MceChargerFunc)(
MceCharger* charger,
void* arg);

MceCharger*
mce_charger_new(
void);

MceCharger*
mce_charger_ref(
MceCharger* charger);

void
mce_charger_unref(
MceCharger* charger);

gulong
mce_charger_add_valid_changed_handler(
MceCharger* charger,
MceChargerFunc fn,
void* arg);

gulong
mce_charger_add_state_changed_handler(
MceCharger* charger,
MceChargerFunc fn,
void* arg);

void
mce_charger_remove_handler(
MceCharger* charger,
gulong id);

void
mce_charger_remove_handlers(
MceCharger* charger,
gulong *ids,
guint count);

#define mce_charger_remove_all_handlers(d, ids) \
mce_charger_remove_handlers(d, ids, G_N_ELEMENTS(ids))

G_END_DECLS

#endif /* MCE_CHARGER_H */

/*
* Local Variables:
* mode: C
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/
3 changes: 3 additions & 0 deletions spec/com.nokia.mce.request.xml
Expand Up @@ -16,5 +16,8 @@
<method name="get_battery_status">
<arg direction="out" name="battery_status" type="s"/>
</method>
<method name="get_charger_state">
<arg direction="out" name="charger_state" type="s"/>
</method>
</interface>
</node>
3 changes: 3 additions & 0 deletions spec/com.nokia.mce.signal.xml
Expand Up @@ -16,5 +16,8 @@
<signal name="battery_status_ind">
<arg name="battery_status" type="s"/>
</signal>
<signal name="charger_state_ind">
<arg name="charger_state" type="s"/>
</signal>
</interface>
</node>

0 comments on commit ce5fef5

Please sign in to comment.