我正在嘗試撰寫一個守護程式來監視 USB GPIO 設備 (Velleman VM167) 的狀態,然后將根據更改采取行動。
我找到了一個用戶空間驅動程式 ( https://github.com/rahlskog/VM167 ) 并設定了一些 /etc/udev 規則和 ldconfig 路徑,以便我可以運行測驗并按預期作業。
如果我編譯以下內容,它會按預期作業:
#include <iterator>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <iostream>
#include <stdlib.h>
#include <string>
#include <sys/stat.h>
#include <syslog.h>
#include <unistd.h>
#include <vector>
#include "VM167.h"
int test_openDevices();
void test_readWriteDigital(int card);
void test_readAnalog(int card);
void test_PWM(int card);
int main(void)
{
syslog(LOG_INFO, "Loop");
int devices;
devices = OpenDevices();
if (devices == 0)
{
syslog(LOG_ERR, "Driver error condition, exiting");
//fflush(stdout);
//return -1;
}
else if (devices == -1)
{
syslog(LOG_ERR, "No devices found on system, exiting\n");
//fflush(stdout);
//return -1;
}
int ver = VersionDLL();
syslog(LOG_INFO, "DLL Version: %d.%d.%d.%d\n", (ver>>24), (ver>>16)&0xFF, (ver>>8)&0xFF, ver&0xFF);
}
系統日志:
Nov 4 01:12:12 testserver console: Loop
Nov 4 01:12:12 testserver console: DLL Version: 0.1.0.19
但是,當我將它添加到守護程式模板時,我再也看不到 USB 卡了...
#include <dirent.h>
#include <iterator>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <iostream>
#include <stdlib.h>
#include <string>
#include <sys/stat.h>
#include <syslog.h>
#include <unistd.h>
#include <vector>
#include "VM167.h"
int test_openDevices();
void test_readWriteDigital(int card);
void test_readAnalog(int card);
void test_PWM(int card);
void do_heartbeat()
{
// TODO: implement processing code to be performed on each heartbeat
syslog(LOG_INFO, "Loop");
int devices;
devices = OpenDevices();
if (devices == 0)
{
syslog(LOG_ERR, "Driver error condition, exiting");
//fflush(stdout);
//return -1;
}
else if (devices == -1)
{
syslog(LOG_ERR, "No devices found on system, exiting\n");
//fflush(stdout);
//return -1;
}
int ver = VersionDLL();
syslog(LOG_INFO, "DLL Version: %d.%d.%d.%d\n", (ver>>24), (ver>>16)&0xFF, (ver>>8)&0xFF, ver&0xFF);
}
// For security purposes, we don't allow any arguments to be passed into the daemon
int main(void)
{
// Define variables
pid_t pid, sid;
// Fork the current process
pid = fork();
// The parent process continues with a process ID greater than 0
if(pid > 0)
{
exit(EXIT_SUCCESS);
}
// A process ID lower than 0 indicates a failure in either process
else if(pid < 0)
{
exit(EXIT_FAILURE);
}
// The parent process has now terminated, and the forked child process will continue
// (the pid of the child process was 0)
// Since the child process is a daemon, the umask needs to be set so files and logs can be written
umask(0);
// Open system logs for the child process
openlog("Daemon-GPIO", LOG_NOWAIT | LOG_PID, LOG_USER);
syslog(LOG_NOTICE, "Successfully started Daemon-GPIO");
// Generate a session ID for the child process
sid = setsid();
// Ensure a valid SID for the child process
if(sid < 0)
{
// Log failure and exit
syslog(LOG_ERR, "Could not generate session ID for child process");
// If a new session ID could not be generated, we must terminate the child process
// or it will be orphaned
exit(EXIT_FAILURE);
}
// Change the current working directory to a directory guaranteed to exist
if((chdir("/")) < 0)
{
// Log failure and exit
syslog(LOG_ERR, "Could not change working directory to /");
// If our guaranteed directory does not exist, terminate the child process to ensure
// the daemon has not been hijacked
exit(EXIT_FAILURE);
}
// A daemon cannot use the terminal, so close standard file descriptors for security reasons
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
// Daemon-specific intialization should go here
const int SLEEP_INTERVAL = 5;
// Enter daemon loop
while(1)
{
syslog(LOG_INFO, "Starting helper loop");
// Execute daemon heartbeat, where your recurring activity occurs
do_heartbeat();
// Sleep for a period of time
sleep(SLEEP_INTERVAL);
}
// Close system logs for the child process
syslog(LOG_NOTICE, "Stopping Daemon-GPIO");
closelog();
// Terminate the child process when the daemon completes
exit(EXIT_SUCCESS);
}
系統日志:
Nov 4 00:18:10 testserver Daemon-GPIO[29638]: Loop
Nov 4 00:18:10 testserver Daemon-GPIO[29638]: No devices found on system, exiting
Nov 4 00:18:10 testserver Daemon-GPIO[29638]: DLL Version: 0.1.0.19
uj5u.com熱心網友回復:
您OpenDevices()在每個回圈開始時呼叫。當然,您需要在回圈結束時關閉它們。由于您的真實(注釋掉)代碼會提前回傳,因此處理此問題的正確 C 方法是添加一個 RAII 包裝器OpenDevices()并CloseDevices()確保打開的設備也已關閉。
例子:
// A wrapper that open devices on creation and closes them on destruction,
// like when it goes out of scope.
struct DeviceCtx {
DeviceCtx() : devices(OpenDevices()) {}
~DeviceCtx() { CloseDevices(); }
operator int() const { return devices; } // implicit conversion to `int`
int devices;
};
void do_heartbeat() { //
syslog(LOG_INFO, "Loop");
DeviceCtx devices; // calls OpenDevices
if (devices == 0) {
syslog(LOG_ERR, "Driver error condition, exiting");
return; // CloseDevices() will be called
} else if (devices == -1) {
syslog(LOG_ERR, "No devices found on system, exiting\n");
return; // CloseDevices() will be called
}
int ver = VersionDLL();
syslog(LOG_INFO, "DLL Version: %d.%d.%d.%d\n", (ver >> 24),
(ver >> 16) & 0xFF, (ver >> 8) & 0xFF, ver & 0xFF);
} // `devices` goes out of scope and calls CloseDevices()
uj5u.com熱心網友回復:
小鬼,似乎我忘記在每個回圈中關閉設備。這樣就解決了。
CloseDevices();
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/350277.html
