2 * Copyright (C) 2013 Tobias Brunner
3 * Copyright (C) 2012 Christoph Buehler
4 * Copyright (C) 2012 Patrick Loetscher
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 package org.strongswan.android.logic.imc.collectors;
20 import java.util.Locale;
22 import org.strongswan.android.logic.imc.attributes.Attribute;
23 import org.strongswan.android.logic.imc.attributes.SettingsAttribute;
25 import android.content.ContentResolver;
26 import android.content.Context;
28 public class SettingsCollector implements Collector
30 private final ContentResolver mContentResolver;
31 private final String[] mSettings;
33 public SettingsCollector(Context context, String[] args)
35 mContentResolver = context.getContentResolver();
40 public Attribute getMeasurement()
42 if (mSettings == null || mSettings.length == 0)
46 SettingsAttribute attribute = new SettingsAttribute();
47 for (String name : mSettings)
49 String value = android.provider.Settings.Secure.getString(mContentResolver, name.toLowerCase(Locale.US));
52 value = android.provider.Settings.System.getString(mContentResolver, name.toLowerCase(Locale.US));
56 attribute.addSetting(name, value);