Esempio n. 1
0
        public void Execute(object Application,
                            int hwndOwner,
                            ref object[] contextParams,
                            ref object[] customParams,
                            ref EnvDTE.wizardResult retval)
        {
            try
            {
                _applicationObject = Application as DTE2;

                if (null == template_file_name_src)
                {
                    RegistryKey vs2010 = Registry.CurrentUser.OpenSubKey("software\\jstructtool");

                    app_folder = vs2010.GetValue("AppFolder").ToString();

                    template_file_name_src = app_folder + "\\inc\\template.jst";

                    vs2010.Close();
                }

                foreach (SelectedItem si in _applicationObject.SelectedItems)
                {
                    VCFilter  filter = si.ProjectItem.Object as VCFilter;
                    VCProject proj   = filter.project as VCProject;

                    template_file_name_dst = contextParams[4] as string;

                    template_file_name_dst += ".jst";

                    File.Copy(template_file_name_src, template_file_name_dst);

                    if (filter.CanAddFile(template_file_name_dst))
                    {
                        string text = null;

                        using (StreamReader sr = new StreamReader(template_file_name_dst))
                        {
                            text = sr.ReadToEnd();

                            text = text.Replace("%ns%", Path.GetFileNameWithoutExtension(template_file_name_dst));
                        }

                        using (StreamWriter sw = new StreamWriter(template_file_name_dst))
                        {
                            sw.Write(text);
                        }

                        filter.AddFile(template_file_name_dst);

                        if (null == add_output_file)
                        {
                            XmlDocument doc = new XmlDocument();

                            doc.Load(app_folder + "\\debugconf.xml");

                            XmlNode add_o_file = doc.SelectSingleNode("/debug/add_output_file");

                            add_output_file = add_o_file.InnerText;
                        }

                        if ("true" == add_output_file)
                        {
                            filter.AddFile(proj.ProjectDirectory + "\\mjst\\" + Path.GetFileNameWithoutExtension(template_file_name_dst) + ".h");
                        }

                        // open added file
                        _applicationObject.ItemOperations.OpenFile(template_file_name_dst);
                    }
                }
            }
            catch (Exception e)
            {
                MessageBox.Show(e.ToString());
            }
        }
Esempio n. 2
0
        public void Execute(object Application,
                            int hwndOwner,
                            ref object[] contextParams,
                            ref object[] customParams,
                            ref EnvDTE.wizardResult retval)
        {
            try
            {
                _applicationObject = Application as DTE2;

                if (null == template_file_name_src_jst || null == template_file_name_src_json)
                {
                    RegistryKey vs2010 = Registry.CurrentUser.OpenSubKey("software\\jstructtool");

                    template_file_name_src_jst  = vs2010.GetValue("AppFolder").ToString() + "\\inc\\template.jst";
                    template_file_name_src_json = vs2010.GetValue("AppFolder").ToString() + "\\inc\\template.json";

                    vs2010.Close();
                }

                foreach (SelectedItem si in _applicationObject.SelectedItems)
                {
                    VCFilter  filter = si.ProjectItem.Object as VCFilter;
                    VCProject proj   = filter.project as VCProject;

                    template_file_name_dst = contextParams[4] as string;

                    if (!template_file_name_dst.EndsWith(".json"))
                    {
                        template_file_name_dst += ".jst";

                        File.Copy(template_file_name_src_jst, template_file_name_dst);
                    }
                    else
                    {
                        File.Copy(template_file_name_src_json, template_file_name_dst);
                    }

                    if (filter.CanAddFile(template_file_name_dst))
                    {
                        if (template_file_name_dst.EndsWith(".jst"))
                        {
                            string text = null;

                            using (StreamReader sr = new StreamReader(template_file_name_dst))
                            {
                                text = sr.ReadToEnd();

                                text = text.Replace("%struct_name%", Path.GetFileNameWithoutExtension(template_file_name_dst));
                            }

                            using (StreamWriter sw = new StreamWriter(template_file_name_dst))
                            {
                                sw.Write(text);
                            }
                        }

                        filter.AddFile(template_file_name_dst);

                        // open added file
                        _applicationObject.ItemOperations.OpenFile(template_file_name_dst);

                        if (template_file_name_dst.EndsWith(".json"))
                        {
                            template_file_name_dst = template_file_name_dst.Remove(template_file_name_dst.LastIndexOf(".json")) + ".jst";

                            filter.AddFile(template_file_name_dst);
                        }
                    }
                }
            }
            catch (Exception e)
            {
                MessageBox.Show(e.ToString());
            }
        }