If you think the Android project camp-food-manager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2010 Sergej Shafarenka, beworx.com
*//www.java2s.com
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/package com.V4Creations.FSMK.campfoodmanager.flash;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import android.content.Context;
import android.util.Log;
publicclass HtcLedFlashlight implements Flashlight {
privatestaticfinal String TAG = "qs.htcled";
privatestaticfinal String PATH = "/sys/devices/platform/flashlight.0/leds/flashlight/brightness";
privatestaticfinal String ON = "126";
privatestaticfinal String OFF = "0";
privateFile mFile;
public HtcLedFlashlight() {
mFile = newFile(PATH);
}
publicboolean isOn(Context context) {
String value = readValue();
if (value != null && value.length() > 0) {
return !OFF.equals(value);
} else {
return false;
}
}
publicvoid setOn(boolean on, Context context) {
writeValue(on ? ON : OFF);
}
private String readValue() {
BufferedReader br = null;
try {
br = new BufferedReader(new FileReader(mFile));
String value = br.readLine();
return value.trim();
} catch (Exception e) {
return null;
} finally {
if (br != null) {
try {
br.close();
} catch (Exception e2) {
// ignore
}
}
}
}
privateboolean writeValue(String value) {
FileWriter fw = null;
try {
fw = new FileWriter(mFile);
fw.write(value);
if (Constants.DEBUG) {
Log.d(TAG, "set brightness: " + value);
}
return true;
} catch (Exception e) {
return false;
} finally {
if (fw != null) {
try {
fw.close();
} catch (Exception e2) {
// ignore
}
}
}
}
publicboolean isSupported(Context context) {
boolean supported = mFile.exists();
if (supported) {
setOn(true, context);
supported = isOn(context);
setOn(false, context);
}
Log.d(TAG, "isSupported: " + supported);
return supported;
}
publicint getType() {
return TYPE_HTC;
}
}