• A Sample of communication between two processes


    Some times, we like to talk about multi thread. But here today, I`d like to show a sample to explain the relationship of different process.

    To simplify the sample, we assume that each process include one thread process in itself.

    1. First show the main method

    As the following source Code, the main thread went to into  fModeDisp.ShowDialog() after it start a process. So there another thread was used to treat the process with FileName of sPrgName.

    1. Before start the p(new process), we  set  fModeDisp  into p.SynchronizingObject, so that we call make a connection between p and main thread.

    2. Then set fModeDisp.P_Exited into p.Exited, so that when the p process was exited, it will call into the fModeDisp.  

    public void DoProcess()

            {

                try
                {
                    this.Visible = false;
                    fModeDisp = new frmModeDisp();
                    System.Diagnostics.Process p = new System.Diagnostics.Process();
                    p.StartInfo.FileName = sPrgName;
                    p.SynchronizingObject = this;
                    p.SynchronizingObject = fModeDisp;
                    p.Exited += fModeDisp.P_Exited;
                    p.EnableRaisingEvents = true;
                    p.Start();
                    
                    fModeDisp.ShowDialog();
                    this.Close();
                }
                catch (Exception ex)
                { }
            }

    Now, let`s the P_Exited method in frmModeDisp class. Here this method will try to kill the fModeDisp class. 

    1. When the p thread callback into  frmModeDisp, the sender itself is the process in the main.  

    2. As  the process in DoProcess has subscribed before, "p.SynchronizingObject = fModeDisp;" have create a connection between p process and 

    the  frmModeDisp main thread. So at the end of P_Exited. We call this.Close(), so p process has the authority to utilize the resource in frmModeDisp .  Here is the key point. 

    public void P_Exited(object sender, EventArgs e)

            {
                try
                {
                    Process pr = (Process)sender;
                    bool proExisted = false;
                    foreach (var process in Process.GetProcesses())
                    {
                        if (process.Id == pr.Id || process.ProcessName == Process.GetCurrentProcess().ProcessName)
                             continue;
                        else if (filenames.Contains(process.ProcessName))
                            proExisted = true;
                    }
                    //When there is no refered exe in process, there is meaning to remain this Display Form.
                    //so kill it. 
                    if (!proExisted)
                        this.Close();
                }
                catch
                {
                }
            }
    Love it, and you live without it
  • 相关阅读:
    SQL Server-基础-经典SQL语句
    《程序是给自己看的还是给别人看的》
    中文写程序,何陋之有?
    ASP.NET 使用Ajax
    验证码帮助类
    js函数的四种调用方式以及对应的this指向
    C#相等性比较(转)
    HashTable、HashSet和Dictionary的区别
    MD5加密方法
    VS2015 & ReSharper 快捷键设置
  • 原文地址:https://www.cnblogs.com/tomclock/p/7478876.html
Copyright © 2020-2023  润新知