{"id":1469,"date":"2024-06-27T21:56:19","date_gmt":"2024-06-27T13:56:19","guid":{"rendered":"http:\/\/www.liujh168.com\/?p=1469"},"modified":"2025-04-30T08:08:50","modified_gmt":"2025-04-30T00:08:50","slug":"uci","status":"publish","type":"post","link":"https:\/\/www.liujh168.com\/index.php\/2024\/06\/27\/uci\/","title":{"rendered":"\u5e7b\u5f69\u8c61\u68cb\u4e4b\uff08\u4e00\uff09\u5f15\u64ce\u642d\u5efa"},"content":{"rendered":"<p><!--more--><br \/>\n[codesyntax lang=&#8221;python&#8221;]<\/p>\n<pre>import subprocess\n\ndef uci():\n    # \u5f15\u64ce\n    command = ['.\/uci']\n\n    # \u4f7f\u7528Popen\u542f\u52a8\u63a7\u5236\u53f0\u7a0b\u5e8f\uff0c\u540c\u65f6\u5c06stdin, stdout, stderr\u8bbe\u7f6e\u4e3aPIPE\n    process = subprocess.Popen(command, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)\n\n    try:\n        # \u521d\u59cb\u5316\u8f93\u51fa\u4fe1\u606f\n        all_output = \"\"\n\n        # \u53d1\u9001\u521d\u59cb\u8f93\u5165\u7ed9\u63a7\u5236\u53f0\u7a0b\u5e8f\n        initial_input = \"some initial input\\n\"\n        process.stdin.write(initial_input)\n        process.stdin.flush()\n\n        # \u6301\u7eed\u8bfb\u53d6\u8f93\u51fa\u76f4\u5230\u6ca1\u6709\u66f4\u591a\u8f93\u51fa\n        while True:\n            output = process.stdout.readline()\n            if output == '' and process.poll() is not None:\n                break\n            if output:\n                all_output += output\n\n        # \u53ef\u4ee5\u7ee7\u7eed\u53d1\u9001\u66f4\u591a\u8f93\u5165\uff0c\u4f8b\u5982\uff1a\n        more_input = \"more input\\n\"\n        process.stdin.write(more_input)\n        process.stdin.flush()\n\n        # \u518d\u6b21\u6301\u7eed\u8bfb\u53d6\u8f93\u51fa\n        while True:\n            more_output = process.stdout.readline()\n            if more_output == '' and process.poll() is not None:\n                break\n            if more_output:\n                all_output += more_output\n\n    finally:\n        # \u5b8c\u6210\u4ea4\u4e92\u540e\uff0c\u5173\u95edstdin\uff0c\u4ee5\u901a\u77e5\u63a7\u5236\u53f0\u7a0b\u5e8f\u8f93\u5165\u7ed3\u675f\n        process.stdin.close()\n        # \u7b49\u5f85\u63a7\u5236\u53f0\u7a0b\u5e8f\u7ed3\u675f\n        process.wait()\n\n    # \u8fd4\u56de\u6240\u6709\u8f93\u51fa\u4fe1\u606f\n    return all_output\n\n# \u8c03\u7528\u5f15\u64ce\u51fd\u6570\u5e76\u6253\u5370\u8fd4\u56de\u7684\u8f93\u51fa\u4fe1\u606f\noutput = uci()\nprint(\"\u5f15\u64ce\u5168\u90e8\u8f93\u51fa\u4fe1\u606f\uff1a\")\nprint(output)<\/pre>\n<p>[\/codesyntax]<\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[38,4,41,9,1],"tags":[],"class_list":["post-1469","post","type-post","status-publish","format-standard","hentry","category-machine_learning","category-education","category-uncategorized","category-chess","category-unknown"],"_links":{"self":[{"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/posts\/1469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/comments?post=1469"}],"version-history":[{"count":11,"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/posts\/1469\/revisions"}],"predecessor-version":[{"id":1567,"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/posts\/1469\/revisions\/1567"}],"wp:attachment":[{"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/media?parent=1469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/categories?post=1469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.liujh168.com\/index.php\/wp-json\/wp\/v2\/tags?post=1469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}