সারসংক্ষেপ
অনেকগুলি ব্যবহারের ক্ষেত্রে পসিক্স ফাংশন 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;
}
নিম্নলিখিত বিভাগে বিভিন্ন পদ্ধতির তুলনা করা হয়েছে যা ইন্টারেক্টিভিটির বিভিন্ন ডিগ্রি পরীক্ষা করতে হলে ব্যবহার করা যেতে পারে।
বিস্তারিত পদ্ধতি Meth
কোনও প্রোগ্রাম ইন্টারেক্টিভভাবে চলছে কিনা তা সনাক্ত করার জন্য বেশ কয়েকটি পদ্ধতি রয়েছে। নিম্নলিখিত সারণী একটি ওভারভিউ দেখায়:
সেন্টিমিডি \ পদ্ধতি সিটারমিড ওপেন ইসাটি ফেস্ট্যাট
-------------------------------------------------- ----------
./est / dev / tty ঠিক আছে হ্যাঁ S_ISCHR
./test ≺ test.cc / dev / tty ঠিক নেই S_ISREG
বিড়াল test.cc ./test / dev / tty ঠিক নেই কোনও S_ISFIFO
প্রতিধ্বনি। / টেষ্ট | এখনই / ডিভ / টিটিএফএইচ কোনও নম্বর নেই_এসআরইজি
ফলাফলগুলি নিম্নলিখিত প্রোগ্রামটি ব্যবহার করে একটি উবুন্টু লিনাক্স 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()
এটি করার একটি প্রাকৃতিক পদ্ধতি।