summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/sysfs.c
blob: 177f3389116c2e5a2f95eaa5636517d492555a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/***************************************************************************
 *             __________               __   ___
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 * Copyright (C) 2014 by Ilia Sergachev: Initial Rockbox port to iBasso DX50
 * Copyright (C) 2014 by Mario Basister: iBasso DX90 port
 * Copyright (C) 2014 by Simon Rothen: Initial Rockbox repository submission, additional features
 * Copyright (C) 2014 by Udo Schläpfer: Code clean up, additional features
 *
 * 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; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/


#include <stdio.h>
#include <string.h>

#include "config.h"
#include "debug.h"
#include "sysfs.h"


static FILE* open_read(const char *file_name)
{
    FILE *f = fopen(file_name, "r");
    if(f == NULL)
    {
        DEBUGF("ERROR %s: Can not open %s for reading.", __func__, file_name);
    }

    return f;
}


static FILE* open_write(const char* file_name)
{
    FILE *f = fopen(file_name, "w");
    if(f == NULL)
    {
        DEBUGF("ERROR %s: Can not open %s for writing.", __func__, file_name);
    }

    return f;
}


bool sysfs_get_int(const char *path, int *value)
{
    *value = -1;

    FILE *f = open_read(path);
    if(f == NULL)
    {
        return false;
    }

    bool success = true;
    if(fscanf(f, "%d", value) == EOF)
    {
        DEBUGF("ERROR %s: Read failed for %s.", __func__, path);
        success = false;
    }

    fclose(f);
    return success;
}


bool sysfs_set_int(const char *path, int value)
{
    FILE *f = open_write(path);
    if(f == NULL)
    {
        return false;
    }

    bool success = true;
    if(fprintf(f, "%d", value) < 0)
    {
        DEBUGF("ERROR %s: Write failed for %s.", __func__, path);
        success = false;
    }

    fclose(f);
    return success;
}


bool sysfs_get_char(const char *path, char *value)
{
    int c;
    FILE *f = open_read(path);
    if(f == NULL)
    {
        return false;
    }

    bool success = true;
    c = fgetc(f);

    if(c == EOF)
    {
        DEBUGF("ERROR %s: Read failed for %s.", __func__, path);
        success = false;
    }
    else
    {
        *value = c;
    }

    fclose(f);
    return success;
}


bool sysfs_set_char(const char *path, char value)
{
    FILE *f = open_write(path);
    if(f == NULL)
    {
        return false;
    }

    bool success = true;
    if(fprintf(f, "%c", value) < 1)
    {
        DEBUGF("ERROR %s: Write failed for %s.", __func__, path);
        success = false;
    }

    fclose(f);
    return success;
}


bool sysfs_get_string(const char *path, char *value, int size)
{
    value[0] = '\0';
    FILE *f = open_read(path);
    if(f == NULL)
    {
        return false;
    }

    bool success = true;

    /* fgets returns NULL if en error occured OR
     * when EOF occurs while no characters have been read.
     *
     * Empty string is not an error for us.
     */
    if(fgets(value, size, f) == NULL && value[0] != '\0')
    {
        DEBUGF("ERROR %s: Read failed for %s.", __func__, path);
        success = false;
    }
    else
    {
        size_t length = strlen(value);
        if((length > 0) && value[length - 1] == '\n')
        {
            value[length - 1] = '\0';
        }
    }

    fclose(f);
    return success;
}


bool sysfs_set_string(const char *path, char *value)
{
    FILE *f = open_write(path);
    if(f == NULL)
    {
        return false;
    }

    bool success = true;

    /* If an output error is encountered, a negative value is returned */
    if(fprintf(f, "%s", value) < 0)
    {
        DEBUGF("ERROR %s: Write failed for %s.", __func__, path);
        success = false;
    }

    fclose(f);
    return success;
}