অ্যাপল প্ল্যাটফর্মে একটি ক্লাউড স্টোরেজ রেফারেন্স তৈরি করুন

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

আপনি যদি ফায়ারবেস রিয়েলটাইম ডেটাবেস ব্যবহার করে থাকেন তবে এই পথগুলি আপনার কাছে খুব পরিচিত বলে মনে হবে। যাইহোক, আপনার ফাইল ডেটা ক্লাউড স্টোরেজে সংরক্ষণ করা হয়, রিয়েলটাইম ডেটাবেসে নয়

একটি রেফারেন্স তৈরি করুন

একটি ফাইল আপলোড, ডাউনলোড বা মুছে ফেলার জন্য বা এর মেটাডেটা পেতে বা আপডেট করতে একটি রেফারেন্স তৈরি করুন৷ একটি রেফারেন্স ক্লাউডে একটি ফাইলের একটি পয়েন্টার হিসাবে চিন্তা করা যেতে পারে। রেফারেন্সগুলি হালকা, তাই আপনি যতগুলি প্রয়োজন ততগুলি তৈরি করতে পারেন৷ এগুলি একাধিক অপারেশনের জন্য পুনরায় ব্যবহারযোগ্য।

রেফারেন্সগুলি FirebaseStorage পরিষেবা ব্যবহার করে এবং এর reference পদ্ধতিতে কল করে তৈরি করা হয়।

সুইফট

// Get a reference to the storage service using the default Firebase App
let storage = Storage.storage()

// Create a storage reference from our storage service
let storageRef = storage.reference()
    

উদ্দেশ্য গ

// Get a reference to the storage service using the default Firebase App
FIRStorage *storage = [FIRStorage storage];

// Create a storage reference from our storage service
FIRStorageReference *storageRef = [storage reference];
    

বিদ্যমান রেফারেন্সে child মেথড ব্যবহার করে আপনি গাছের নিচের অবস্থানের জন্য একটি রেফারেন্স তৈরি করতে পারেন, বলুন 'images/space.jpg'

সুইফট

// Create a child reference
// imagesRef now points to "images"
let imagesRef = storageRef.child("images")

// Child references can also take paths delimited by '/'
// spaceRef now points to "images/space.jpg"
// imagesRef still points to "images"
var spaceRef = storageRef.child("images/space.jpg")

// This is equivalent to creating the full reference
let storagePath = "\(your_firebase_storage_bucket)/images/space.jpg"
spaceRef = storage.reference(forURL: storagePath)
    

উদ্দেশ্য গ

// Create a child reference
// imagesRef now points to "images"
FIRStorageReference *imagesRef = [storageRef child:@"images"];

// Child references can also take paths delimited by '/'
// spaceRef now points to "images/space.jpg"
// imagesRef still points to "images"
FIRStorageReference *spaceRef = [storageRef child:@"images/space.jpg"];

// This is equivalent to creating the full reference
spaceRef = [storage referenceForURL:@"gs://<your-firebase-storage-bucket>/images/space.jpg"];
     

আপনি আমাদের ফাইলের অনুক্রমে নেভিগেট করার জন্য parent এবং root পদ্ধতিগুলিও ব্যবহার করতে পারেন। parent একটি স্তরের উপরে নেভিগেট করে, যখন root শীর্ষে সমস্ত পথ নেভিগেট করে।

সুইফট

// Parent allows us to move to the parent of a reference
// imagesRef now points to 'images'
let imagesRef = spaceRef.parent()

// Root allows us to move all the way back to the top of our bucket
// rootRef now points to the root
let rootRef = spaceRef.root()
    

উদ্দেশ্য গ

// Parent allows us to move to the parent of a reference
// imagesRef now points to 'images'
imagesRef = [spaceRef parent];

// Root allows us to move all the way back to the top of our bucket
// rootRef now points to the root
FIRStorageReference *rootRef = [spaceRef root];
    

child , parent , এবং root একাধিকবার একসাথে শৃঙ্খলিত হতে পারে, কারণ প্রতিটি একটি রেফারেন্স প্রদান করে। ব্যতিক্রম হল root parent যা nil

সুইফট

// References can be chained together multiple times
// earthRef points to "images/earth.jpg"
let earthRef = spaceRef.parent()?.child("earth.jpg")

// nilRef is nil, since the parent of root is nil
let nilRef = spaceRef.root().parent()
    

উদ্দেশ্য গ

// References can be chained together multiple times
// earthRef points to "images/earth.jpg"
FIRStorageReference *earthRef = [[spaceRef parent] child:@"earth.jpg"];

// nilRef is nil, since the parent of root is nil
FIRStorageReference *nilRef = [[spaceRef root] parent];
    

রেফারেন্স বৈশিষ্ট্য

fullPath , name , এবং bucket বৈশিষ্ট্যগুলি ব্যবহার করে তারা যে ফাইলগুলি নির্দেশ করে তা আরও ভালভাবে বোঝার জন্য আপনি রেফারেন্সগুলি পরীক্ষা করতে পারেন৷ এই বৈশিষ্ট্যগুলি ফাইলের সম্পূর্ণ পথ, নাম এবং বালতি পায়।

সুইফট

// Reference's path is: "images/space.jpg"
// This is analogous to a file path on disk
spaceRef.fullPath

// Reference's name is the last segment of the full path: "space.jpg"
// This is analogous to the file name
spaceRef.name

// Reference's bucket is the name of the storage bucket where files are stored
spaceRef.bucket
    

উদ্দেশ্য গ

// Reference's path is: "images/space.jpg"
// This is analogous to a file path on disk
spaceRef.fullPath;

// Reference's name is the last segment of the full path: "space.jpg"
// This is analogous to the file name
spaceRef.name;

// Reference's bucket is the name of the storage bucket where files are stored
spaceRef.bucket;
    

রেফারেন্সের সীমাবদ্ধতা

রেফারেন্স পাথ এবং নামগুলিতে বৈধ ইউনিকোড অক্ষরের যেকোনো ক্রম থাকতে পারে, তবে কিছু বিধিনিষেধ আরোপ করা হয়েছে যার মধ্যে রয়েছে:

  1. UTF-8 এনকোড করার সময় reference.fullPath এর মোট দৈর্ঘ্য 1 থেকে 1024 বাইটের মধ্যে হতে হবে।
  2. কোনো ক্যারেজ রিটার্ন বা লাইন ফিড অক্ষর নেই।
  3. # , [ , ] , * , বা ? , কারণ এগুলো অন্যান্য টুল যেমন ফায়ারবেস রিয়েলটাইম ডেটাবেস বা gsutil- এর সাথে ভাল কাজ করে না।

সম্পূর্ণ উদাহরণ

সুইফট

// Points to the root reference
let storageRef = Storage.storage().reference()

// Points to "images"
let imagesRef = storageRef.child("images")

// Points to "images/space.jpg"
// Note that you can use variables to create child values
let fileName = "space.jpg"
let spaceRef = imagesRef.child(fileName)

// File path is "images/space.jpg"
let path = spaceRef.fullPath

// File name is "space.jpg"
let name = spaceRef.name

// Points to "images"
let images = spaceRef.parent()
    

উদ্দেশ্য গ

// Points to the root reference
FIRStorageReference *storageRef = [[FIRStorage storage] reference];

// Points to "images"
FIRStorageReference *imagesRef = [storageRef child:@"images"];

// Points to "images/space.jpg"
// Note that you can use variables to create child values
NSString *fileName = @"space.jpg";
FIRStorageReference *spaceRef = [imagesRef child:fileName];

// File path is "images/space.jpg"
NSString *path = spaceRef.fullPath;

// File name is "space.jpg"
NSString *name = spaceRef.name;

// Points to "images"
imagesRef = [spaceRef parent];
    

এর পরে, আসুন শিখি কিভাবে ক্লাউড স্টোরেজে ফাইল আপলোড করতে হয়।