পরিচালনা করা সি # ডেলিতে পরিচালনা না করা ডেলকে এম্বেড করা হচ্ছে


87

আমার কাছে একটি পরিচালিত সি # ডিল রয়েছে যা ডিএলআইএলএমপোর্ট ব্যবহার করে একটি পরিচালনা করা সি ++ ডেল ব্যবহার করে। সব দুর্দান্ত কাজ করছে। তবে, সেখানে মাইক্রোসফ্ট দ্বারা ব্যাখ্যা হিসাবে আমি আমার পরিচালিত ডিএলএল এর মধ্যে সেই পরিচালনা না করা ডিএলএল এম্বেড করতে চাই:

http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute.dllimportattribute.aspx

সুতরাং আমি আমার পরিচালিত ডিএল প্রকল্পে পরিচালনা না করা ডিএলএল ফাইল যুক্ত করেছি, সম্পত্তিটিকে 'এম্বেডেড রিসোর্স' এ সেট করেছিলাম এবং ডিএলএলআইএমপোর্টকে এমন কিছুতে সংশোধন করি:

[DllImport("Unmanaged Driver.dll, Wrapper Engine, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null",
CallingConvention = CallingConvention.Winapi)]

যেখানে 'র্যাপার ইঞ্জিন' হ'ল আমার পরিচালিত ডিএলএল'র সমাবেশ নাম 'আনম্যানেজড ড্রাইভার'

আমি যখন দৌড়ে যাই, তখন আমি পাই:

অধিকার বাতিল হল. (এইচআরসিলেট থেকে ব্যতিক্রম: 0x80070005 (E_ACCESSDENIED))

আমি এমএসডিএন এবং http://blogs.msdn.com/suzcook/ থেকে দেখেছি যা সম্ভব হওয়ার কথা ...



4
আপনি আপনার কেসটির জন্য BxILMerge বিবেচনা করতে পারেন
মস্ত্যাভালনস

উত্তর:


64

আপনি যদি আরম্ভের সময় অস্থায়ী ডিরেক্টরিতে নিজেকে এটিকে নিষ্ক্রিয় করেন তবে আপনি পরিচালনা না করা ডিএলএলটিকে উত্স হিসাবে এম্বেড করতে পারেন এবং পি / ইনভোক ব্যবহারের আগে এটিকে স্পষ্টভাবে লোডলিবারি দিয়ে লোড করুন। আমি এই কৌশলটি ব্যবহার করেছি এবং এটি ভালভাবে কাজ করে। মাইকেল যেমন উল্লেখ করেছেন, আপনি কেবল এটি পৃথক ফাইল হিসাবে সমাবেশের সাথে সংযুক্ত করতে পছন্দ করতে পারেন, তবে এটি একটি ফাইলের মধ্যে থাকা এর সুবিধাগুলি রয়েছে। আমি যে পদ্ধতিটি ব্যবহার করেছি তা এখানে:

// Get a temporary directory in which we can store the unmanaged DLL, with
// this assembly's version number in the path in order to avoid version
// conflicts in case two applications are running at once with different versions
string dirName = Path.Combine(Path.GetTempPath(), "MyAssembly." +
  Assembly.GetExecutingAssembly().GetName().Version.ToString());
if (!Directory.Exists(dirName))
  Directory.CreateDirectory(dirName);
string dllPath = Path.Combine(dirName, "MyAssembly.Unmanaged.dll");

// Get the embedded resource stream that holds the Internal DLL in this assembly.
// The name looks funny because it must be the default namespace of this project
// (MyAssembly.) plus the name of the Properties subdirectory where the
// embedded resource resides (Properties.) plus the name of the file.
using (Stream stm = Assembly.GetExecutingAssembly().GetManifestResourceStream(
  "MyAssembly.Properties.MyAssembly.Unmanaged.dll"))
{
  // Copy the assembly to the temporary file
  try
  {
    using (Stream outFile = File.Create(dllPath))
    {
      const int sz = 4096;
      byte[] buf = new byte[sz];
      while (true)
      {
        int nRead = stm.Read(buf, 0, sz);
        if (nRead < 1)
          break;
        outFile.Write(buf, 0, nRead);
      }
    }
  }
  catch
  {
    // This may happen if another process has already created and loaded the file.
    // Since the directory includes the version number of this assembly we can
    // assume that it's the same bits, so we just ignore the excecption here and
    // load the DLL.
  }
}

// We must explicitly load the DLL here because the temporary directory 
// is not in the PATH.
// Once it is loaded, the DllImport directives that use the DLL will use
// the one that is already loaded into the process.
IntPtr h = LoadLibrary(dllPath);
Debug.Assert(h != IntPtr.Zero, "Unable to load library " + dllPath);

লোডলিবারি কি কেনেল 32 থেকে ডিএলএলআইপোর্ট ব্যবহার করছে? ডিবাগ.আসর্ট ডাব্লুসিএফ পরিষেবার মধ্যে একই কোড ব্যবহার করে আমার জন্য ব্যর্থ হচ্ছে।
ক্লাউজ এনজি

এটি একটি ভাল সমাধান, তবে দুটি অ্যাপ্লিকেশন একই সময়ে একই স্থানে লেখার চেষ্টা করার ক্ষেত্রে ক্ষেত্রে নির্ভরযোগ্য সমাধান পাওয়া আরও ভাল। অন্যান্য অ্যাপ্লিকেশন ডিএলএলকে আনপ্যাক করা শেষ করার আগে ব্যতিক্রম হ্যান্ডলারটি সম্পূর্ণ করে।
রবার্ট ভান

এটি নিখুঁত। শুধু অপ্রয়োজনীয় জিনিস যে directory.createdirectory ইতিমধ্যে ডিরেক্টরির হয়েছে বিদ্যমান এটা চেক ভিতরে
Gaspa79

13

এখানে আমার সমাধানটি, যা জেএমসি ক্লেলনের উত্তরের পরিবর্তিত সংস্করণ। একটি ক্লাস.এস ফাইলের নীচে ফাইলটি সংরক্ষণ করুন।

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.IO;
using System.Reflection;
using System.Diagnostics;
using System.ComponentModel;

namespace Qromodyn
{
    /// <summary>
    /// A class used by managed classes to managed unmanaged DLLs.
    /// This will extract and load DLLs from embedded binary resources.
    /// 
    /// This can be used with pinvoke, as well as manually loading DLLs your own way. If you use pinvoke, you don't need to load the DLLs, just
    /// extract them. When the DLLs are extracted, the %PATH% environment variable is updated to point to the temporary folder.
    ///
    /// To Use
    /// <list type="">
    /// <item>Add all of the DLLs as binary file resources to the project Propeties. Double click Properties/Resources.resx,
    /// Add Resource, Add Existing File. The resource name will be similar but not exactly the same as the DLL file name.</item>
    /// <item>In a static constructor of your application, call EmbeddedDllClass.ExtractEmbeddedDlls() for each DLL that is needed</item>
    /// <example>
    ///               EmbeddedDllClass.ExtractEmbeddedDlls("libFrontPanel-pinv.dll", Properties.Resources.libFrontPanel_pinv);
    /// </example>
    /// <item>Optional: In a static constructor of your application, call EmbeddedDllClass.LoadDll() to load the DLLs you have extracted. This is not necessary for pinvoke</item>
    /// <example>
    ///               EmbeddedDllClass.LoadDll("myscrewball.dll");
    /// </example>
    /// <item>Continue using standard Pinvoke methods for the desired functions in the DLL</item>
    /// </list>
    /// </summary>
    public class EmbeddedDllClass
    {
        private static string tempFolder = "";

        /// <summary>
        /// Extract DLLs from resources to temporary folder
        /// </summary>
        /// <param name="dllName">name of DLL file to create (including dll suffix)</param>
        /// <param name="resourceBytes">The resource name (fully qualified)</param>
        public static void ExtractEmbeddedDlls(string dllName, byte[] resourceBytes)
        {
            Assembly assem = Assembly.GetExecutingAssembly();
            string[] names = assem.GetManifestResourceNames();
            AssemblyName an = assem.GetName();

            // The temporary folder holds one or more of the temporary DLLs
            // It is made "unique" to avoid different versions of the DLL or architectures.
            tempFolder = String.Format("{0}.{1}.{2}", an.Name, an.ProcessorArchitecture, an.Version);

            string dirName = Path.Combine(Path.GetTempPath(), tempFolder);
            if (!Directory.Exists(dirName))
            {
                Directory.CreateDirectory(dirName);
            }

            // Add the temporary dirName to the PATH environment variable (at the head!)
            string path = Environment.GetEnvironmentVariable("PATH");
            string[] pathPieces = path.Split(';');
            bool found = false;
            foreach (string pathPiece in pathPieces)
            {
                if (pathPiece == dirName)
                {
                    found = true;
                    break;
                }
            }
            if (!found)
            {
                Environment.SetEnvironmentVariable("PATH", dirName + ";" + path);
            }

            // See if the file exists, avoid rewriting it if not necessary
            string dllPath = Path.Combine(dirName, dllName);
            bool rewrite = true;
            if (File.Exists(dllPath)) {
                byte[] existing = File.ReadAllBytes(dllPath);
                if (resourceBytes.SequenceEqual(existing))
                {
                    rewrite = false;
                }
            }
            if (rewrite)
            {
                File.WriteAllBytes(dllPath, resourceBytes);
            }
        }

        [DllImport("kernel32", SetLastError = true, CharSet = CharSet.Unicode)]
        static extern IntPtr LoadLibrary(string lpFileName);

        /// <summary>
        /// managed wrapper around LoadLibrary
        /// </summary>
        /// <param name="dllName"></param>
        static public void LoadDll(string dllName)
        {
            if (tempFolder == "")
            {
                throw new Exception("Please call ExtractEmbeddedDlls before LoadDll");
            }
            IntPtr h = LoadLibrary(dllName);
            if (h == IntPtr.Zero)
            {
                Exception e = new Win32Exception();
                throw new DllNotFoundException("Unable to load library: " + dllName + " from " + tempFolder, e);
            }
        }

    }
}

4
চিহ্নিত করুন, এটি সত্যিই দুর্দান্ত। আমার ব্যবহারের জন্য, আমি খুঁজে পেয়েছি যে আমি লোডডেল () পদ্ধতিটি সরিয়ে ফেলতে পারি এবং এক্সট্রাক্ট এম্বেডডেলস () এর শেষে লোডলিবারি () কল করতে পারি। এটি আমাকে PATH সংশোধনকারী কোড অপসারণের অনুমতিও দিয়েছিল।
ক্যামেরন

9

এটি সম্ভব কিনা আমি সচেতন ছিলাম না - আমি অনুমান করেছিলাম যে সিএলআরকে কোথাও এমবেডেড নেটিভ ডিএলএল বের করতে হবে (ডিএলএল এটি লোড করার জন্য উইন্ডোজের একটি ফাইল থাকা দরকার - এটি কাঁচা স্মৃতি থেকে কোনও চিত্র লোড করতে পারে না), এবং যেখানেই হোক এটি করার চেষ্টা করছে যে প্রক্রিয়াটির অনুমতি নেই।

সিসইন্টার্নালস থেকে প্রসেস মনিটরের মতো কিছু হতে পারে যদি সর্বনামটি হ'ল ডিএলএল ফাইল তৈরি করা ব্যর্থ হয় ...

হালনাগাদ:


আহ ... এখন যেহেতু আমি সুজান কুকের নিবন্ধটি পড়তে পেরেছি (পৃষ্ঠাটি আমার জন্য আগে আসে নি), মনে রাখবেন যে তিনি পরিচালিত ডিএলএল-এর অভ্যন্তরীণ স্থানীয় ডিএলএল এম্বেড করার বিষয়ে কথা বলছেন না, বরং লিঙ্কযুক্ত সংস্থান হিসাবে - দেশীয় ডিএলএল এখনও ফাইল সিস্টেমে নিজস্ব ফাইল হওয়া দরকার।

Http://msdn.microsoft.com/en-us/library/xawyf94k.aspx দেখুন , যেখানে এতে বলা হয়েছে:

রিসোর্স ফাইল আউটপুট ফাইলে যুক্ত হয় না। এটি / রিসোর্স বিকল্প থেকে পৃথক যা আউটপুট ফাইলে কোনও সংস্থান ফাইল এম্বেড করে।

এটি যা করছে বলে মনে হচ্ছে তা হল সমাবেশে মেটাডেটা যুক্ত করা যা দেশীয় ডিএলএলকে যৌক্তিকভাবে সমাবেশের অংশ হতে দেয় (যদিও এটি শারীরিকভাবে একটি পৃথক ফাইল)। সুতরাং পরিচালিত অ্যাসেমব্লিকে জিএসি তে রাখার মতো জিনিসগুলির মধ্যে স্বয়ংক্রিয়ভাবে দেশী ডিএলএল ইত্যাদি অন্তর্ভুক্ত থাকবে etc.


ভিজ্যুয়াল স্টুডিওতে "লিঙ্করেসোর্স" বিকল্পগুলি কীভাবে ব্যবহার করবেন? আমি কোন উদাহরণ খুঁজে পাচ্ছি না।
আলেক্সি সুব্বোটা

9

আপনি Costura.Fody চেষ্টা করতে পারেন । ডকুমেন্টেশন বলছে যে, এটি পরিচালনা না করা ফাইলগুলি পরিচালনা করতে সক্ষম। আমি এটি কেবল পরিচালিত ফাইলগুলির জন্যই ব্যবহার করেছি এবং এটি একটি কবজির মতো কাজ করে :)


4

যে কোনও ফোল্ডারে কেবলমাত্র ডিএলএলগুলি অনুলিপি করতে পারে এবং তারপরে সেই ফোল্ডারে সেটডেলডাইরেক্টরি কল করতে পারে। লোডলাইব্রিয়ায় কোনও কল করার দরকার নেই তখন।

[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool SetDllDirectory(string lpPathName);

4
দুর্দান্ত ধারণা, কেবল লক্ষ্য করুন যে এটির নিরাপত্তা রীতি থাকতে পারে, কারণ এটি
ডেল ইনজেকশনটির
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.