सारांश
कई उपयोग के मामलों के लिए POSIX फ़ंक्शन isatty()
सभी है जो यह पता लगाने के लिए आवश्यक है कि क्या स्टडिन एक टर्मिनल से जुड़ा हुआ है। एक न्यूनतम उदाहरण:
#include <unistd.h>
#include <stdio.h>
int main(int argc, char **argv)
{
if (isatty(fileno(stdin)))
puts("stdin is connected to a terminal");
else
puts("stdin is NOT connected to a terminal");
return 0;
}
निम्नलिखित अनुभाग विभिन्न तरीकों की तुलना करता है जिनका उपयोग किया जा सकता है यदि अन्तरक्रियाशीलता के विभिन्न डिग्री का परीक्षण किया जाना है।
विस्तार से तरीके
यह पता लगाने के लिए कई तरीके हैं कि क्या कोई कार्यक्रम अंतःक्रियात्मक रूप से चल रहा है। निम्नलिखित तालिका एक अवलोकन दिखाती है:
cmd \ पद्धति ctermid खुले इस् ट्टी फ़ासत
-------------------------------------------------- ----------
.test / dev / tty ठीक है हाँ S_ISCHR
.test est test.cc / dev / tty ओके नो S_ISREG
cat test.cc | .test / dev / tty ओके नो S_ISFIFO
इको ./test | अभी / dev / tty FAIL NO S_ISREG पर
निम्नलिखित प्रोग्राम का उपयोग करके परिणाम उबंटू लिनक्स 11.04 सिस्टम से हैं:
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>
#include <unistd.h>
#include <iostream>
using namespace std;
int main() {
char tty[L_ctermid+1] = {0};
ctermid(tty);
cout << "ID: " << tty << '\n';
int fd = ::open(tty, O_RDONLY);
if (fd < 0) perror("Could not open terminal");
else {
cout << "Opened terminal\n";
struct termios term;
int r = tcgetattr(fd, &term);
if (r < 0) perror("Could not get attributes");
else cout << "Got attributes\n";
}
if (isatty(fileno(stdin))) cout << "Is a terminal\n";
else cout << "Is not a terminal\n";
struct stat stats;
int r = fstat(fileno(stdin), &stats);
if (r < 0) perror("fstat failed");
else {
if (S_ISCHR(stats.st_mode)) cout << "S_ISCHR\n";
else if (S_ISFIFO(stats.st_mode)) cout << "S_ISFIFO\n";
else if (S_ISREG(stats.st_mode)) cout << "S_ISREG\n";
else cout << "unknown stat mode\n";
}
return 0;
}
पारिभाषिक उपकरण
यदि इंटरएक्टिव सत्र को कुछ क्षमताओं की आवश्यकता होती है, तो आप टर्मिनल डिवाइस को खोल सकते हैं और (अस्थायी रूप से) सेट टर्मिनल विशेषताओं को आप की आवश्यकता होती है tcsetattr()
।
पायथन उदाहरण
अजगर कोड है कि फैसला करता दुभाषिया सहभागी चलाती है या का उपयोग करता है isatty()
। कार्यक्रमPyRun_AnyFileExFlags()
/* Parse input from a file and execute it */
int
PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit,
PyCompilerFlags *flags)
{
if (filename == NULL)
filename = "???";
if (Py_FdIsInteractive(fp, filename)) {
int err = PyRun_InteractiveLoopFlags(fp, filename, flags);
कॉल Py_FdIsInteractive()
/*
* The file descriptor fd is considered ``interactive'' if either
* a) isatty(fd) is TRUE, or
* b) the -i flag was given, and the filename associated with
* the descriptor is NULL or "<stdin>" or "???".
*/
int
Py_FdIsInteractive(FILE *fp, const char *filename)
{
if (isatty((int)fileno(fp)))
return 1;
जो कहता है isatty()
।
निष्कर्ष
अन्तरक्रियाशीलता के विभिन्न अंश हैं। यह जांचने के लिए कि stdin
क्या पाइप / फाइल से जुड़ा है या असली टर्मिनल isatty()
ऐसा करने का एक प्राकृतिक तरीका है।