আমি প্রোগ্রামে একটি .idl ফাইল তৈরি করছি। আমি ইন্টারফেস এবং পদ্ধতিগতভাবে প্রোগ্রামের জন্য ইউআইডিগুলি কীভাবে তৈরি করব।
আমি কি প্রোগ্রামটিমেটিকভাবে ইউইউডি জেনারেট করতে পারি?
আমি প্রোগ্রামে একটি .idl ফাইল তৈরি করছি। আমি ইন্টারফেস এবং পদ্ধতিগতভাবে প্রোগ্রামের জন্য ইউআইডিগুলি কীভাবে তৈরি করব।
আমি কি প্রোগ্রামটিমেটিকভাবে ইউইউডি জেনারেট করতে পারি?
উত্তর:
আপনি সম্ভবত খুঁজছেন System.Guid.NewGuid()
।
ToString(string format)
ওভারলোডটি ব্যবহার করতে পারেন যা বেশ কয়েকটি ফর্ম্যাট স্পেসিফায়ারগুলির মধ্যে একটি গ্রহণ করে।
System.Guid.NewGuid().ToString("B").ToUpper()
কিছু করতে চান যদি আপনি কিছু এমএস বিল্ড সরঞ্জামের সাথে সামঞ্জস্য থাকতে চান যা লোয়ার কেস ইউআইডিগুলি বুঝতে পারে না। উদাহরণস্বরূপ, vdproj
সেটআপ প্রকল্পগুলির উচ্চতর ক্ষেত্রে ইউআইডি থাকে এবং এটি আপনি এটি ছোট ক্ষেত্রে দেন তবে এটি ব্যতিক্রম করে দেয়।
সতর্কতা অবলম্বন করুন: .NET গাইড এবং (আরএফসি 4122) ইউআইডি-র স্ট্রিং প্রতিনিধিত্বগুলি অভিন্ন হলেও স্টোরেজ বিন্যাসটি নয়। .NET প্রথম তিনটি Guid
অংশের জন্য লিটল এন্ডিয়ান বাইটে ট্রেড করে ।
আপনি যদি বাইটগুলি সঞ্চারিত করেন (উদাহরণস্বরূপ, বেস 64) আপনি Guid.ToByteArray()
এটিকে কেবল ব্যবহার এবং এনকোড করতে পারবেন না । আপনাকে করতে হবে Array.Reverse
প্রথম তিনটি অংশ (Data1-3)।
আমি এটি এইভাবে করি:
var rfc4122bytes = Convert.FromBase64String("aguidthatIgotonthewire==");
Array.Reverse(rfc4122bytes,0,4);
Array.Reverse(rfc4122bytes,4,2);
Array.Reverse(rfc4122bytes,6,2);
var guid = new Guid(rfc4122bytes);
নির্দিষ্ট। নেট বাস্তবায়ন বিশদের জন্য এই উত্তরটি দেখুন ।
সম্পাদনা করুন : কোড রেঞ্জার জেফ ওয়াকারকে ধন্যবাদ জানাই যে ইন্টার্নালগুলি বাইট অ্যারের বিন্যাসের সাথে প্রাসঙ্গিক নয় যা বাইট-অ্যারে নির্মাণকারী এবং এর বাইরে যায় ToByteArray()
।
Guid
(যেহেতু এটি একটি .idl এর উদ্দেশ্যে), তবে আমি কেবল এটির মধ্যে দিয়েছিলাম। সুতরাং এখানে আপনি যান, বিঞ্জারস এবং গুগলার্স।
ToByteArray
নেই; তারা সর্বদা লিল-এন্ডিয়ান। আগত সম্পাদনা করুন।
এখানে একটি ক্লায়েন্ট পক্ষের "ক্রমবর্ধমান গাইড" সমাধান রয়েছে।
http://www.pinvoke.net/default.aspx/rpcrt4.uuidcreate
using System;
using System.Runtime.InteropServices;
namespace MyCompany.MyTechnology.Framework.CrossDomain.GuidExtend
{
public static class Guid
{
/*
Original Reference for Code:
http://www.pinvoke.net/default.aspx/rpcrt4/UuidCreateSequential.html
*/
[DllImport("rpcrt4.dll", SetLastError = true)]
static extern int UuidCreateSequential(out System.Guid guid);
public static System.Guid NewGuid()
{
return CreateSequentialUuid();
}
public static System.Guid CreateSequentialUuid()
{
const int RPC_S_OK = 0;
System.Guid g;
int hr = UuidCreateSequential(out g);
if (hr != RPC_S_OK)
throw new ApplicationException("UuidCreateSequential failed: " + hr);
return g;
}
/*
Text From URL above:
UuidCreateSequential (rpcrt4)
Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than rpcrt4, prefix the name with the module name and a period.
. Summary
Creates a new UUID
C# Signature:
[DllImport("rpcrt4.dll", SetLastError=true)]
static extern int UuidCreateSequential(out Guid guid);
VB Signature:
Declare Function UuidCreateSequential Lib "rpcrt4.dll" (ByRef id As Guid) As Integer
User-Defined Types:
None.
Notes:
Microsoft changed the UuidCreate function so it no longer uses the machine's MAC address as part of the UUID. Since CoCreateGuid calls UuidCreate to get its GUID, its output also changed. If you still like the GUIDs to be generated in sequential order (helpful for keeping a related group of GUIDs together in the system registry), you can use the UuidCreateSequential function.
CoCreateGuid generates random-looking GUIDs like these:
92E60A8A-2A99-4F53-9A71-AC69BD7E4D75
BB88FD63-DAC2-4B15-8ADF-1D502E64B92F
28F8800C-C804-4F0F-B6F1-24BFC4D4EE80
EBD133A6-6CF3-4ADA-B723-A8177B70D268
B10A35C0-F012-4EC1-9D24-3CC91D2B7122
UuidCreateSequential generates sequential GUIDs like these:
19F287B4-8830-11D9-8BFC-000CF1ADC5B7
19F287B5-8830-11D9-8BFC-000CF1ADC5B7
19F287B6-8830-11D9-8BFC-000CF1ADC5B7
19F287B7-8830-11D9-8BFC-000CF1ADC5B7
19F287B8-8830-11D9-8BFC-000CF1ADC5B7
Here is a summary of the differences in the output of UuidCreateSequential:
The last six bytes reveal your MAC address
Several GUIDs generated in a row are sequential
Tips & Tricks:
Please add some!
Sample Code in C#:
static Guid UuidCreateSequential()
{
const int RPC_S_OK = 0;
Guid g;
int hr = UuidCreateSequential(out g);
if (hr != RPC_S_OK)
throw new ApplicationException
("UuidCreateSequential failed: " + hr);
return g;
}
Sample Code in VB:
Sub Main()
Dim myId As Guid
Dim code As Integer
code = UuidCreateSequential(myId)
If code <> 0 Then
Console.WriteLine("UuidCreateSequential failed: {0}", code)
Else
Console.WriteLine(myId)
End If
End Sub
*/
}
}
কীওয়ার্ডস: ক্রিয়েটসিয়ুয়েনশিয়ালউইউড সিক্যুয়েন্সিআইউইড
আমি পদ্ধতি সম্পর্কে জানি না; তবে জিইউডিতে টাইপটি এর মাধ্যমে করা যেতে পারে:
Guid iid = System.Runtime.InteropServices.Marshal.GenerateGuidForType(typeof(IFoo));
সি # তে ইউআইডি প্রয়োগকরণের মতো জাভা সহ আমার একটি গিটহাব গিস্ট রয়েছে: https://gist.github.com/rickbeerendonk/13655dd24ec574954366
ইউআইডিটি জাভা-র মতোই সর্বনিম্ন এবং সবচেয়ে গুরুত্বপূর্ণ বিট থেকে তৈরি করা যেতে পারে। এটি তাদের প্রকাশও করে। বাস্তবায়নের একটি জিইউডিতে স্পষ্ট রূপান্তর এবং একটি জিইউইডি থেকে অন্তর্ভুক্ত রূপান্তর রয়েছে has
Guid.NewGuid()
?