summaryrefslogtreecommitdiffstats
path: root/vibrator/vibrator.c
blob: 0e7d967ed2c8ca62b34671642be94c2560bf420b (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
/*
 * Copyright (C) 2014 Paul Kocialkowski <contact@paulk.fr>
 *
 * 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 3 of the License, or
 * (at your option) any later version.
 *
 * 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <dirent.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <linux/input.h>

#define LOG_TAG "gta04_vibrator"
#include <cutils/log.h>

/*
 * Globals
 */

const char rumble_input[] = "twl4030:vibrator";

int rumble_fd = -1;
int rumble_id = -1;

/*
 * Input
 */

void input_event_set(struct input_event *event, int type, int code, int value)
{
	if (event == NULL)
		return;

	memset(event, 0, sizeof(struct input_event));

	event->type = type,
	event->code = code;
	event->value = value;

	gettimeofday(&event->time, NULL);
}

int input_open(const char *name)
{
	DIR *d;
	struct dirent *di;

	char input_name[80] = { 0 };
	char path[PATH_MAX];
	char *c;
	int fd;
	int rc;

	if (name == NULL)
		return -EINVAL;

	d = opendir("/dev/input");
	if (d == NULL)
		return -1;

	while ((di = readdir(d))) {
		if (di == NULL || strcmp(di->d_name, ".") == 0 || strcmp(di->d_name, "..") == 0)
			continue;

		snprintf(path, PATH_MAX, "/dev/input/%s", di->d_name);
		fd = open(path, O_RDWR | O_NONBLOCK);
		if (fd < 0)
			continue;

		rc = ioctl(fd, EVIOCGNAME(sizeof(input_name) - 1), &input_name);
		if (rc < 0)
			continue;

		c = strstr((char *) &input_name, "\n");
		if (c != NULL)
			*c = '\0';

		if (strcmp(input_name, name) == 0)
			return fd;
		else
			close(fd);
	}

	return -1;
}

/*
 * Vibrator
 */

int vibrator_exists(void)
{
	int fd;

	fd = input_open(rumble_input);
	if (fd < 0)
		return 0;

	close(fd);

	return 1;
}

int sendit(int duration)
{
	struct input_event event;
	struct ff_effect effect;
	int rc;

	if (rumble_fd < 0)
		rumble_fd = input_open(rumble_input);

	if (rumble_fd < 0)
		goto error;

	if (rumble_id >= 0) {
		input_event_set(&event, EV_FF, rumble_id, 0);

		rc = write(rumble_fd, &event, sizeof(event));
		if (rc < (int) sizeof(event))
			goto error;

		ioctl(rumble_fd, EVIOCRMFF, &rumble_id);

		rumble_id = -1;
	}

	// Previous code should have removed the effect already
	if (duration == 0) {
		rc = 0;
		goto complete;
	}

	memset(&effect, 0, sizeof(effect));
	effect.type = FF_RUMBLE;
	effect.id = -1;
	effect.replay.length = duration;
	effect.replay.delay = 0;
	effect.u.rumble.strong_magnitude = 0xffff;

	rc = ioctl(rumble_fd, EVIOCSFF, &effect);
	if (rc < 0)
		goto error;

	rumble_id = effect.id;

	input_event_set(&event, EV_FF, rumble_id, 1);

	rc = write(rumble_fd, &event, sizeof(event));
	if (rc < (int) sizeof(event))
		goto error;

	rc = 0;
	goto complete;

error:
	if (rumble_fd >= 0) {
		if (rumble_id >= 0) {
			input_event_set(&event, EV_FF, rumble_id, 0);
			write(rumble_fd, &event, sizeof(event));

			ioctl(rumble_fd, EVIOCRMFF, &rumble_id);
			rumble_id = -1;
		}

		close(rumble_fd);
		rumble_fd = -1;
	}

	rc = -1;

complete:
	return rc;
}