~chasedouglas/frame/ubuntu-upstream-xi

« back to all changes in this revision

Viewing changes to test/device.cpp

  • Committer: Chase Douglas
  • Date: 2011-12-09 01:36:45 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: chase.douglas@ubuntu.com-20111209013645-n24l4myiumblzsfu
* New upstream release.
  - Version 2 adds a new API built on top of XInput multitouch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 *
 
3
 * utouch-frame - Touch Frame Library
 
4
 *
 
5
 * Copyright (C) 2011 Canonical Ltd.
 
6
 *
 
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 3 of the License, or (at your
 
10
 * option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License along
 
18
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *
 
20
 ****************************************************************************/
 
21
 
 
22
#include "device.h"
 
23
 
 
24
#include <fcntl.h>
 
25
 
 
26
#include <stdexcept>
 
27
 
 
28
#include <gtest/gtest.h>
 
29
 
 
30
utouch::evemu::Device::Device(const char* path) {
 
31
  static const char UINPUT_NODE[] = "/dev/uinput";
 
32
 
 
33
  device_ = evemu_new(NULL);
 
34
  if (!device_)
 
35
    throw std::runtime_error("Failed to create evemu record");
 
36
 
 
37
  FILE* fp = fopen(path, "r");
 
38
  if (fp == NULL)
 
39
    throw std::runtime_error("Failed to open device file");
 
40
 
 
41
  if (evemu_read(device_, fp) <= 0) {
 
42
    fclose(fp);
 
43
    throw std::runtime_error("Failed to read device file");
 
44
  }
 
45
 
 
46
  fclose(fp);
 
47
 
 
48
  fd_ = open(UINPUT_NODE, O_WRONLY);
 
49
  if (fd_ < 0) {
 
50
    evemu_delete(device_);
 
51
    throw std::runtime_error("Failed to open uinput node");
 
52
  }
 
53
 
 
54
  if (evemu_create(device_, fd_) < 0) {
 
55
    close(fd_);
 
56
    evemu_delete(device_);
 
57
    throw std::runtime_error("Failed to create evemu device");
 
58
  }
 
59
}
 
60
 
 
61
utouch::evemu::Device::~Device() {
 
62
  close(fd_);
 
63
  evemu_delete(device_);
 
64
}