C # डेस्कटॉप एप्लिकेशन में एम्बेड करने के लिए सबसे अच्छी स्क्रिप्टिंग भाषा क्या है? [बन्द है]


98

हम एक जटिल समृद्ध डेस्कटॉप एप्लिकेशन लिख रहे हैं और रिपोर्टिंग प्रारूपों में लचीलापन प्रदान करने की आवश्यकता है ताकि हमें लगा कि हम अपने ऑब्जेक्ट मॉडल को स्क्रिप्टिंग लैंगगेज में उजागर करेंगे। समय तब था जब VBA का अर्थ था (जो अभी भी एक विकल्प है), लेकिन प्रबंधित कोड व्युत्पन्न VSTA (मुझे लगता है) बेल पर सूख गया है।

Windows .NET पर एम्बेडेड स्क्रिप्टिंग भाषा के लिए अब सबसे अच्छा विकल्प क्या है?


FWIW, मैंने @ GrantPeter के उत्तर में दृष्टिकोण के साथ शुरू किया, अनलोडिंग की अनुमति देने के लिए एक AppDomain का उपयोग किया, क्रॉस-डोमेन ऑब्जेक्ट लीज नवीनीकरण को संभाला, और सैंडबॉक्स सुरक्षा उपायों से भरा। संकलित स्क्रिप्ट मुख्य कार्यक्रम में AppDomain सीमा के पार वापस बुला सकती है। प्रयोग यहाँ पाया जा सकता है: github.com/fadden/DynamicScriptSandbox
fadden

जवाबों:


24

मैंने आश्चर्यजनक परिणामों के साथ CSScript का उपयोग किया है । यह वास्तव में मेरे स्क्रिप्ट योग्य ऐप्स में बाइंडिंग और अन्य निम्न स्तर के सामान करने के लिए कट गया।


1
मैं एक वर्ष से अधिक समय से उत्पादन में CS-Script का उपयोग कर रहा हूं और इसने वास्तव में अच्छा प्रदर्शन किया है।
डेविड रॉबिंस

Btw - C # स्क्रिप्ट समर्थन को सक्षम करने के लिए आप या तो C # स्क्रिप्ट लाइब्रेरी को एकीकृत कर सकते हैं, या अपने आप C # स्क्रिप्ट संकलन बना सकते हैं। मैंने अपने प्रोजेक्ट में इसी तरह के हल्के C # स्क्रिप्ट कंपाइलर को यहाँ किया है: sourceforge.net/p/syncproj/code/HEAD/tree/CsScript.cs C # स्क्रिप्ट संकलन स्वयं थोड़ा धीमा है (उदाहरण के लिए .Lua की तुलना में), बनाता है। यदि आवश्यक न हो तो अतिरिक्त संकलन कदम से बचने के लिए समझदारी।
तारामपोइकारो

114

व्यक्तिगत रूप से, मैं C # का उपयोग स्क्रिप्टिंग भाषा के रूप में करूँगा। .NET फ्रेमवर्क (और मोनो, धन्यवाद मैथ्यू शार्ले) वास्तव में फ्रेमवर्क में ही .NET भाषाओं में से प्रत्येक के लिए कंपाइलर शामिल करता है।

असल में, इस प्रणाली के कार्यान्वयन के 2 भाग हैं।

  1. उपयोगकर्ता को कोड संकलित करने की अनुमति दें यह अपेक्षाकृत आसान है, और कोड की केवल कुछ पंक्तियों में ही किया जा सकता है (हालांकि आप एक त्रुटि संवाद जोड़ना चाह सकते हैं, जो संभवत: कोड के आधार पर एक दर्जन से अधिक कोड की पंक्तियां होगी, जो उपयोग करने योग्य है आप इसे चाहते हैं)।

  2. संकलित असेंबली के भीतर मौजूद कक्षाएं बनाएं और उनका उपयोग करें यह पिछले चरण की तुलना में थोड़ा अधिक कठिन है (थोड़ा सा प्रतिबिंब की आवश्यकता है)। मूल रूप से, आपको बस संकलित असेंबली को प्रोग्राम के लिए "प्लग-इन" के रूप में व्यवहार करना चाहिए। विभिन्न तरीकों पर काफी कुछ ट्यूटोरियल हैं जिनसे आप C # में प्लग-इन सिस्टम बना सकते हैं (Google आपका मित्र है)।

मैंने यह प्रदर्शित करने के लिए "त्वरित" एप्लिकेशन लागू किया है कि आप इस प्रणाली को कैसे लागू कर सकते हैं (जिसमें 2 कामकाजी स्क्रिप्ट शामिल हैं!)। यह एप्लिकेशन के लिए पूर्ण कोड है, बस एक नया बनाएं और "program.cs" फ़ाइल में कोड पेस्ट करें। इस बिंदु पर मुझे कोड के बड़े हिस्से के बारे में माफी मांगनी चाहिए, जो मैं पेस्ट करने वाला हूं (मैंने इसे इतने बड़े होने का इरादा नहीं किया था, लेकिन मेरी टिप्पणी के साथ थोड़ा दूर चला गया)


using System;
using System.Windows.Forms;
using System.Reflection;
using System.CodeDom.Compiler;

namespace ScriptingInterface
{
    public interface IScriptType1
    {
        string RunScript(int value);
    }
}

namespace ScriptingExample
{
    static class Program
    {
        /// 
        /// The main entry point for the application.
        /// 
        [STAThread]
        static void Main()
        {

            // Lets compile some code (I'm lazy, so I'll just hardcode it all, i'm sure you can work out how to read from a file/text box instead
            Assembly compiledScript = CompileCode(
                "namespace SimpleScripts" +
                "{" +
                "    public class MyScriptMul5 : ScriptingInterface.IScriptType1" +
                "    {" +
                "        public string RunScript(int value)" +
                "        {" +
                "            return this.ToString() + \" just ran! Result: \" + (value*5).ToString();" +
                "        }" +
                "    }" +
                "    public class MyScriptNegate : ScriptingInterface.IScriptType1" +
                "    {" +
                "        public string RunScript(int value)" +
                "        {" +
                "            return this.ToString() + \" just ran! Result: \" + (-value).ToString();" +
                "        }" +
                "    }" +
                "}");

            if (compiledScript != null)
            {
                RunScript(compiledScript);
            }
        }

        static Assembly CompileCode(string code)
        {
            // Create a code provider
            // This class implements the 'CodeDomProvider' class as its base. All of the current .Net languages (at least Microsoft ones)
            // come with thier own implemtation, thus you can allow the user to use the language of thier choice (though i recommend that
            // you don't allow the use of c++, which is too volatile for scripting use - memory leaks anyone?)
            Microsoft.CSharp.CSharpCodeProvider csProvider = new Microsoft.CSharp.CSharpCodeProvider();

            // Setup our options
            CompilerParameters options = new CompilerParameters();
            options.GenerateExecutable = false; // we want a Dll (or "Class Library" as its called in .Net)
            options.GenerateInMemory = true; // Saves us from deleting the Dll when we are done with it, though you could set this to false and save start-up time by next time by not having to re-compile
            // And set any others you want, there a quite a few, take some time to look through them all and decide which fit your application best!

            // Add any references you want the users to be able to access, be warned that giving them access to some classes can allow
            // harmful code to be written and executed. I recommend that you write your own Class library that is the only reference it allows
            // thus they can only do the things you want them to.
            // (though things like "System.Xml.dll" can be useful, just need to provide a way users can read a file to pass in to it)
            // Just to avoid bloatin this example to much, we will just add THIS program to its references, that way we don't need another
            // project to store the interfaces that both this class and the other uses. Just remember, this will expose ALL public classes to
            // the "script"
            options.ReferencedAssemblies.Add(Assembly.GetExecutingAssembly().Location);

            // Compile our code
            CompilerResults result;
            result = csProvider.CompileAssemblyFromSource(options, code);

            if (result.Errors.HasErrors)
            {
                // TODO: report back to the user that the script has errored
                return null;
            }

            if (result.Errors.HasWarnings)
            {
                // TODO: tell the user about the warnings, might want to prompt them if they want to continue
                // runnning the "script"
            }

            return result.CompiledAssembly;
        }

        static void RunScript(Assembly script)
        {
            // Now that we have a compiled script, lets run them
            foreach (Type type in script.GetExportedTypes())
            {
                foreach (Type iface in type.GetInterfaces())
                {
                    if (iface == typeof(ScriptingInterface.IScriptType1))
                    {
                        // yay, we found a script interface, lets create it and run it!

                        // Get the constructor for the current type
                        // you can also specify what creation parameter types you want to pass to it,
                        // so you could possibly pass in data it might need, or a class that it can use to query the host application
                        ConstructorInfo constructor = type.GetConstructor(System.Type.EmptyTypes);
                        if (constructor != null && constructor.IsPublic)
                        {
                            // lets be friendly and only do things legitimitely by only using valid constructors

                            // we specified that we wanted a constructor that doesn't take parameters, so don't pass parameters
                            ScriptingInterface.IScriptType1 scriptObject = constructor.Invoke(null) as ScriptingInterface.IScriptType1;
                            if (scriptObject != null)
                            {
                                //Lets run our script and display its results
                                MessageBox.Show(scriptObject.RunScript(50));
                            }
                            else
                            {
                                // hmmm, for some reason it didn't create the object
                                // this shouldn't happen, as we have been doing checks all along, but we should
                                // inform the user something bad has happened, and possibly request them to send
                                // you the script so you can debug this problem
                            }
                        }
                        else
                        {
                            // and even more friendly and explain that there was no valid constructor
                            // found and thats why this script object wasn't run
                        }
                    }
                }
            }
        }
    }
}


2
क्या आपको पता है कि यह मोनो में भी काम करेगा, या क्या यह केवल .NET पर उपलब्ध है?
मैथ्यू शारले

4
FYI करें, और किसी और के लिए यह उत्सुक है, हाँ, यह संकलन करता है और मोनो पर ठीक चलता है। केवल संकलन भागों के लिए सिस्टम संदर्भ की आवश्यकता है।
मैथ्यू शारले

3
ऐसा करने से AppDomain
डैनियल लिटिल

4
@Lavinski यदि आप नहीं चाहते हैं कि यह आपके AppDomain को प्रदूषित करे, तो बस एक नया बनाएं (जो कि वैसे भी एक अच्छा विचार है, ताकि आप "स्क्रिप्ट्स" पर और अधिक कड़ी सुरक्षा प्रदान कर सकें)
Grant Peters

3
@ लेन्डर - यह बेहद हल्का है। उपरोक्त कोड एक संपूर्ण कार्यक्रम है जो "स्क्रिप्टिंग" का समर्थन करता है। csscript.netऐसा लगता है कि यह इस पर किसी प्रकार का आवरण है। यह मूल रूप से एक नंगे हड्डियों का कार्यान्वयन है। मुझे लगता है कि एक बेहतर सवाल "csscript.net मेरे लिए क्या करता है जो यह नहीं करता है"। मुझे नहीं पता है कि csscript क्या कर रही है, लेकिन वे निश्चित रूप से जानते हैं कि उपरोक्त कोड यहाँ क्या करता है, उनके पास उनकी लाइब्रेरी में यह (या कुछ ऐसा ही) है।
ग्रांट पीटर्स


19

PowerShell इंजन को आसानी से स्क्रिप्ट करने योग्य बनाने के लिए एक अनुप्रयोग में एम्बेड किया गया था। वास्तव में, PowerShell CLI इंजन के लिए केवल एक पाठ आधारित इंटरफ़ेस है।

संपादित करें: देखें https://devblogs.microsoft.com/powershell/making-applications-scriptable-via-powershell/


मुझे लगता है कि यह सबसे अच्छा समाधान है क्योंकि यह AppDomain में वस्तुओं को नहीं जोड़ता है। .Net में आप असेंबलियों या कक्षाओं को कभी भी अनलोड नहीं कर सकते।
डैनियल लिटिल

12

बू भाषा।


1
अगर यह github.com/boo-lang/boo
kristianp

@kristianp अब तक, प्रोजेक्ट पर हर महीने कुछ कमिट होते हैं (हाल ही में एक महीने पहले तक)। तो शायद यह थोड़ा कर्षण खो दिया है, लेकिन यह अभी भी जीवित लगता है।
तमसे सजेलेई

8

मेरी पसंद की स्क्रिप्टिंग भाषा इन दिनों लुआ होगी । यह छोटा, तेज, स्वच्छ, पूरी तरह से प्रलेखित, अच्छी तरह से समर्थित है, एक महान समुदाय है , इसका उपयोग उद्योग की कई बड़ी कंपनियों (Adobe, Blizzard, EA Games) द्वारा किया जाता है, निश्चित रूप से एक कोशिश के लायक है।

.NET भाषाओं के साथ इसका उपयोग करने के लिए LuaInterface प्रोजेक्ट आपको सभी की आवश्यकता प्रदान करेगा।


1
लुआ का उपयोग गैरी के मॉड में स्क्रिप्टिंग के लिए भी किया जाता है, जो कि एक महान खेल है :)
अनाम कायर



2

आयरनपाइथन के लिए एक और वोट। यह सरल है, .Net कक्षाओं के साथ अंतर्संबंध सरल है, और, ठीक है, यह पायथन है।


1

मैं S # का सुझाव दे सकता हूं जिसे मैं वर्तमान में बनाए रखता हूं। यह एक ओपन सोर्स प्रोजेक्ट है, जिसे C # में लिखा गया है और इसे .NET एप्लिकेशन के लिए डिज़ाइन किया गया है।

प्रारंभ में (2007-2009) इसे http://www.codeplex.com/scriptdotnet पर होस्ट किया गया था , लेकिन हाल ही में इसे गिटहब में स्थानांतरित कर दिया गया।


अपना उत्तर पोस्ट करने के लिए धन्यवाद! कृपया सेल्फ-प्रमोशन पर अक्सर पूछे जाने वाले प्रश्नों को ध्यान से पढ़ें । यह भी ध्यान दें कि यह आवश्यक है कि आप अपनी साइट / उत्पाद से लिंक करने पर हर बार एक अस्वीकरण पोस्ट करें।
एंड्रयू बार्बर

सलाह के लिए धन्यवाद एंड्रयू। पिछले उत्तरों में से एक में इस स्क्रिप्टिंग भाषा का एक पुराना लिंक है। किसी कारण से मैं मूल उत्तर में टिप्पणी नहीं जोड़ सकता, इस प्रकार मैंने सही लिंक प्रदान करने के लिए एक नया पोस्ट किया है।
पीटर

1

इला की कोशिश करो । यह हास्केल के समान एक कार्यात्मक भाषा है और इसे किसी भी .Net अनुप्रयोग में एम्बेड किया जा सकता है । यहां तक ​​कि इसमें सरल लेकिन उपयोगी आईडीई है।



0

मैंने सिर्फ एक क्लाइंट के लिए एक प्लगइन बनाया है, जिससे उन्हें मॉड्यूल में C # कोड लिखने की अनुमति मिलती है जो VBA की तरह कार्य करता है।



0

मुझे C # के साथ ही स्क्रिप्ट करना पसंद है । अब, 2013 में, C # पटकथा के लिए काफी अच्छा समर्थन है, इसके लिए अधिक से अधिक पुस्तकालय उपलब्ध हो रहे हैं।

मोनो को स्क्रिप्ट सी # कोड का एक बड़ा समर्थन है , और आप इसे Mono.CSharp.dllअपने एप्लिकेशन में शामिल करके .NET के साथ उपयोग कर सकते हैं । C # स्क्रिप्टिंग एप्लिकेशन के लिए जो मैंने CShell की जांच की है

इसके अलावा बाहर की जाँच में `ScriptEngine ' रोसलिन जो Microsoft से है, लेकिन यह केवल सीटीपी है।

जैसा कि कुछ लोगों ने पहले ही उल्लेख किया है, CS-Script काफी समय से आसपास ही है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.