aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2013-08-05 19:42:55 -0500
committerCharles Kerr <charles.kerr@canonical.com>2013-08-05 19:42:55 -0500
commitbae23fbcec140cecb5d69047bc5262dc4620cafb (patch)
treea140b703bd5ef1cb8e9e295a4cb0a0eae31a4025 /src
parent6492053ff654afbac9a078b7b67cca4a6dabecec (diff)
downloadayatana-indicator-bluetooth-bae23fbcec140cecb5d69047bc5262dc4620cafb.tar.gz
ayatana-indicator-bluetooth-bae23fbcec140cecb5d69047bc5262dc4620cafb.tar.bz2
ayatana-indicator-bluetooth-bae23fbcec140cecb5d69047bc5262dc4620cafb.zip
copyediting: fix indentation in Service, fix copyright & author comments in bluez, service, main
Diffstat (limited to 'src')
-rw-r--r--src/bluez.vala2
-rw-r--r--src/main.vala21
-rw-r--r--src/service.vala122
3 files changed, 87 insertions, 58 deletions
diff --git a/src/bluez.vala b/src/bluez.vala
index 046362b..d84d869 100644
--- a/src/bluez.vala
+++ b/src/bluez.vala
@@ -15,8 +15,10 @@
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Ancell <robert.ancell@canonical.com>
*/
+
/**
* Bluetooth implementaion which uses org.bluez on DBus
*/
diff --git a/src/main.vala b/src/main.vala
index 824e1d5..fdd08e8 100644
--- a/src/main.vala
+++ b/src/main.vala
@@ -1,6 +1,23 @@
+/*
+ * Copyright 2013 Canonical Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 3.
+ *
+ * This program 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 program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Charles Kerr <charles.kerr@canonical.com>
+ */
-public static int
-main (string[] args)
+public static int main (string[] args)
{
// set up i18n
Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8");
diff --git a/src/service.vala b/src/service.vala
index 69f57a6..767343f 100644
--- a/src/service.vala
+++ b/src/service.vala
@@ -1,72 +1,82 @@
/*
- * Copyright (C) 2012-2013 Canonical Ltd.
- * Author: Robert Ancell <robert.ancell@canonical.com>
+ * Copyright 2013 Canonical Ltd.
*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, version 3 of the License.
- * See http://www.gnu.org/copyleft/gpl.html the full text of the license.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 3.
+ *
+ * This program 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 program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Charles Kerr <charles.kerr@canonical.com>
+ * Robert Ancell <robert.ancell@canonical.com>
*/
public class Service: Object
{
- private MainLoop loop;
- private SimpleActionGroup actions;
- private HashTable<string,Profile> profiles;
+ private MainLoop loop;
+ private SimpleActionGroup actions;
+ private HashTable<string,Profile> profiles;
- public Service (Bluetooth bluetooth)
- {
- actions = new SimpleActionGroup ();
+ public Service (Bluetooth bluetooth)
+ {
+ actions = new SimpleActionGroup ();
- profiles = new HashTable<string,Profile> (str_hash, str_equal);
- profiles.insert ("phone", new Phone (bluetooth, actions));
- profiles.insert ("desktop", new Desktop (bluetooth, actions));
- }
+ profiles = new HashTable<string,Profile> (str_hash, str_equal);
+ profiles.insert ("phone", new Phone (bluetooth, actions));
+ profiles.insert ("desktop", new Desktop (bluetooth, actions));
+ }
- public int run ()
- {
- if (this.loop != null)
- {
- warning ("service is already running");
- return 1;
- }
+ public int run ()
+ {
+ if (this.loop != null)
+ {
+ warning ("service is already running");
+ return Posix.EXIT_FAILURE;
+ }
- Bus.own_name (BusType.SESSION,
- "com.canonical.indicator.bluetooth",
- BusNameOwnerFlags.NONE,
- this.on_bus_acquired,
- null,
- this.on_name_lost);
+ Bus.own_name (BusType.SESSION,
+ "com.canonical.indicator.bluetooth",
+ BusNameOwnerFlags.NONE,
+ this.on_bus_acquired,
+ null,
+ this.on_name_lost);
- this.loop = new MainLoop (null, false);
- this.loop.run ();
- return 0;
- }
+ this.loop = new MainLoop (null, false);
+ this.loop.run ();
+ return Posix.EXIT_SUCCESS;
+ }
- void on_bus_acquired (DBusConnection connection, string name)
- {
- debug (@"bus acquired: $name");
+ void on_bus_acquired (DBusConnection connection, string name)
+ {
+ debug (@"bus acquired: $name");
- var object_path = "/com/canonical/indicator/bluetooth";
- try
- {
- connection.export_action_group (object_path, this.actions);
- }
- catch (Error e)
- {
- critical (@"Unable to export actions on $object_path: $(e.message)");
- }
+ var object_path = "/com/canonical/indicator/bluetooth";
+ try
+ {
+ connection.export_action_group (object_path, this.actions);
+ }
+ catch (Error e)
+ {
+ critical (@"Unable to export actions on $object_path: $(e.message)");
+ }
- this.profiles.for_each ((name,profile) => {
- var path = @"/com/canonical/indicator/bluetooth/$name";
- debug (@"exporting menu '$path'");
- profile.export_menu (connection, path);
- });
- }
+ this.profiles.for_each ((name,profile) => {
+ var path = @"$object_path/$name";
+ debug (@"exporting menu '$path'");
+ profile.export_menu (connection, path);
+ });
+ }
- void on_name_lost (DBusConnection connection, string name)
- {
- debug (@"name lost: $name");
- this.loop.quit ();
- }
+ void on_name_lost (DBusConnection connection, string name)
+ {
+ debug (@"name lost: $name");
+ this.loop.quit ();
+ }
}