#總結
C# .Net Framework 3.5
Python 26或者27python
C#調用方式ajax
Process process = new Process(); ProcessStartInfo processStartInfo = new ProcessStartInfo(); processStartInfo.FileName = "python.exe"; //no create the cmd windows processStartInfo.Arguments = Command; processStartInfo.CreateNoWindow = true; processStartInfo.RedirectStandardInput = true; processStartInfo.RedirectStandardOutput = true; processStartInfo.RedirectStandardError = true; processStartInfo.UseShellExecute = false; try { Console.WriteLine("Class Execute Method exec_python Debug:process.Start"); process.Start(); Console.WriteLine("Class Execute Method exec_python Debug:read process end"); Output = process.StandardOutput.ReadToEnd(); }
##原由
在調整Tactic的外部程序,更新了一些如EXR文件讀取、色彩空間、時間碼等內容。因爲Tactic的最新穩定版本是Tactic_v4.1.0.v05,對應配置了Windows的Python環境。當EXR部分執行經過沾沾自喜的時候,Tactic Checkin上傳文件發生錯誤。詭異的是,上傳部分代碼沒有作過變動,好久以前就能夠正常使用了。隨即決定好好跟蹤下Python代碼,看下Tactic Client發送文件的原理。json
##checkin.py的調試windows
from tactic_client_lib import TacticServerStub #... try: snapshot = server.simple_checkin(search_key,context,path,description=desc,mode="upload",create_icon=True); value = "checkin:OK"; except: value = "checkin:ERROR"; print value;
##跟蹤到tactic_server_stub.pyapp
print "Class tactic_server_stub Method simple_checkin Debug:run"; mode_options = ['upload', 'uploaded', 'copy', 'move', 'local','inplace'] print "Class tactic_server_stub Method simple_checkin Debug:[mode_option]:" + mode; if mode: if mode not in mode_options: raise TacticApiException('Mode must be in %s' % mode_options) if mode == 'upload': print "Class tactic_server_stub Method simple_checkin Debug:run upload_file function [file_path]:" + file_path; my.upload_file(file_path)
跟蹤到upload_file函數函數
def upload_file(my, path): '''API Function: upload_file(path) Use http protocol to upload a file through http @param: path - the name of the file that will be uploaded ''' print "Class tactic_server_stub Method upload_file Debug:run"; from common import UploadMultipart print "Class tactic_server_stub Method upload_file Debug:import UploadMultipart from common"; upload = UploadMultipart() print "Class tactic_server_stub Method upload_file Debug:[my.transaction_ticket]:" + my.transaction_ticket; upload.set_ticket(my.transaction_ticket) if my.server_name.startswith("http://") or my.server_name.startswith("https://"): upload_server_url = "%s/tactic/default/UploadServer/" % my.server_name else: upload_server_url = "http://%s/tactic/default/UploadServer/" % my.server_name print "Class tactic_server_stub Method upload_file Debug:[upload_server_url]:" + upload_server_url; upload.set_upload_server(upload_server_url) print "Class tactic_server_stub Method upload_file Debug:[path]:" + path; upload.execute(path)
##跟蹤到UploadMultipart測試
def execute(my, path): print "Class UploadMultipart Method execute Debug:[path]:" + path; assert my.server_url f = open(path, 'rb') print "Class UploadMultipart Method execute Debug:import codecs"; import codecs #f = codecs.open(path, 'rb') print "Class UploadMultipart Method execute Debug:end codecs"; count = 0 while 1: buffer = f.read(my.chunk_size) print "Class UploadMultipart Method execute Debug:[while.f.read]"; if not buffer: break if count == 0: action = "create" else: action = "append" fields = [ ("ajax", "true"), ("action", action), ] if my.ticket: print "Class UploadMultipart Method execute Debug:[my.ticket]:" + my.ticket; fields.append( ("ticket", my.ticket) ) fields.append( ("login_ticket", my.ticket) ) basename = os.path.basename(path) print "Class UploadMultipart Method execute Debug:[basename]:" + basename; from json import dumps as jsondumps print "Class UploadMultipart Method execute Debug:import json"; basename = basename.decode(sys.stdout.encoding) print "Class UploadMultipart Method execute Debug:[basename.decode]:" + basename;
才正式跟蹤到了異常退出的語句
basename = basename.decode(sys.stdout.encoding)url
##結論 basename = basename.decode(sys.stdout.encoding)
爲Python 2所具有的函數,經過Python26 和 Python 27一樣調用該函數時,均發生C# Process異常退出的狀況。 判斷,爲Python lib庫中的BUG,肯定Python在某些狀況下的穩定性測試,並不完備調試
##吐槽 話說Python代碼上千了以後,什麼鬼!超長的if else 都不知道誰是誰。code