cadMousePro-daemon/src/cadMousePro.cpp
author František Kučera <franta-hg@frantovo.cz>
Mon, 19 Aug 2019 17:55:50 +0200
branchv_0
changeset 10 05dbed834852
parent 8 465572518625
child 12 cf77c218b0b1
permissions -rw-r--r--
prepare daemon config
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     1
/**
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     2
 * cadMousePro
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     3
 * Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     4
 *
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     7
 * the Free Software Foundation, either version 3 of the License, or
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     8
 * (at your option) any later version.
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
     9
 *
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    13
 * GNU General Public License for more details.
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    14
 *
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    15
 * You should have received a copy of the GNU General Public License
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
975f38eb1e12 license: GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 5
diff changeset
    17
 */
0
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
#include <iostream>
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
5
6799cec5c2f8 refactoring: separate into several files
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    20
#include "CadMouseConfig.h"
7
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    21
#include "CLI.h"
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    22
#include "CLIParser.h"
5
6799cec5c2f8 refactoring: separate into several files
František Kučera <franta-hg@frantovo.cz>
parents: 4
diff changeset
    23
#include "HID.h"
4
405aa9de65d2 CadMouseConfig class, frequency, lift-off detection, smart scrolling
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    24
0
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
int main(int argc, char** argv) {
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
	try {
7
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    27
		CLI cli(argc, argv);
0
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
		std::wcout << L"cadMousePro" << std::endl;
1
29cbe171cd43 first working version: disables „free wheel“ a.k.a. „smart scrolling“ feature
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    30
7
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    31
		CLIParser cliParser;
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    32
		CLIConfiguration configuration = cliParser.parse(cli.arguments());
1
29cbe171cd43 first working version: disables „free wheel“ a.k.a. „smart scrolling“ feature
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    33
10
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    34
		if (configuration.daemon) {
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    35
			// TODO: run D-Bus service
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    36
			std::wcout << L"will start daemon" << std::endl;
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    37
		} else {
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    38
			HIDDevice mouse(0x256f, 0xc652, nullptr);
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    39
			std::wcout << L"mouse opened" << std::endl;
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    40
			std::wcout << L"manufacturer:  " << mouse.getManufacturerName() << std::endl;
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    41
			std::wcout << L"product:       " << mouse.getProductName() << std::endl;
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    42
			// std::wcout << L"serial number: " << mouse.getSerialNumber() << std::endl; // throws exception
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    43
			
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    44
			mouse.sendFeatureReport(configuration.cadMouseConfig.serialize());
05dbed834852 prepare daemon config
František Kučera <franta-hg@frantovo.cz>
parents: 8
diff changeset
    45
		}
1
29cbe171cd43 first working version: disables „free wheel“ a.k.a. „smart scrolling“ feature
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    46
7
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    47
		return CLI::EXIT_CODE_SUCCESS;
0
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
	} catch (const HIDException& e) {
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
		std::wcout << L"HIDException: " << e.getMessage() << std::endl;
7
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    50
		return CLI::EXIT_CODE_UNEXPECTED_ERROR;
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    51
	} catch (const CLIException& e) {
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    52
		std::wcout << L"CLIException: " << e.getMessge() << std::endl;
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    53
		return e.getExitCode();
0
6ff501639c23 project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    54
	}
7
148f8dd077e8 CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    55
4
405aa9de65d2 CadMouseConfig class, frequency, lift-off detection, smart scrolling
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    56
}