आपकी फ़ाइलें किसी Cloud Storage बकेट में सेव होती हैं. इस बकेट में मौजूद फ़ाइलों को हैरारकी वाले स्ट्रक्चर में दिखाया जाता है. ठीक उसी तरह जैसे आपकी लोकल हार्ड डिस्क पर मौजूद फ़ाइल सिस्टम या Firebase Realtime Database में मौजूद डेटा को दिखाया जाता है. किसी फ़ाइल का रेफ़रंस बनाकर, आपका ऐप्लिकेशन उस फ़ाइल को ऐक्सेस कर सकता है. इसके बाद, इन रेफ़रंस का इस्तेमाल डेटा अपलोड या डाउनलोड करने, मेटाडेटा पाने या अपडेट करने या फ़ाइल मिटाने के लिए किया जा सकता है. रेफ़रंस फ़ाइल या तो किसी खास फ़ाइल या हैरारकी में बड़े लेवल की नोड हो सकती है.
अगर आपने Firebase Realtime Database का इस्तेमाल किया है, तो आपको ये पाथ बहुत अच्छे से पता होंगे. हालांकि, आपकी फ़ाइल का डेटा Realtime Database में नहीं, बल्कि Cloud Storage में सेव होता है.
रेफ़रंस बनाना
किसी फ़ाइल को अपलोड करने, डाउनलोड करने या मिटाने के लिए रेफ़रंस बनाएं. इसके अलावा, फ़ाइल का मेटाडेटा पाने या अपडेट करने के लिए भी रेफ़रंस बनाएं. रेफ़रंस फ़ाइल को क्लाउड में मौजूद फ़ाइल का पॉइंटर माना जा सकता है. पहचान फ़ाइलें हल्की होती हैं, इसलिए आप जितनी चाहे उतनी फ़ाइलें बना सकते हैं. इन्हें कई ऑपरेशन के लिए फिर से इस्तेमाल किया जा सकता है.
रेफ़रंस बनाने के लिए, FirebaseStorage
सेवा का इस्तेमाल किया जाता है और उसके reference
तरीके को कॉल किया जाता है.
Swift
// 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()
Objective-C
// 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'
का रेफ़रंस बनाया जा सकता है.
Swift
// 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)
Objective-C
// 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
सबसे ऊपर ले जाता है.
Swift
// 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()
Objective-C
// 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
है.
Swift
// 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()
Objective-C
// 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
प्रॉपर्टी का इस्तेमाल करके, रेफ़रंस की जांच करके, उनसे जुड़ी फ़ाइलों को बेहतर तरीके से समझा जा सकता है. इन प्रॉपर्टी को
फ़ाइल का पूरा पाथ, नाम, और बकेट मिलती है.
Swift
// 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
Objective-C
// 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;
रेफ़रंस से जुड़ी सीमाएं
रेफ़रंस पाथ और नामों में, यूनिकोड के मान्य वर्णों का कोई भी क्रम हो सकता है. हालांकि, इन पर कुछ पाबंदियां भी लागू होती हैं. जैसे:
- UTF-8 एन्कोड होने पर, reference.fullPath की कुल लंबाई 1 से 1024 बाइट के बीच होनी चाहिए.
- कोई नई लाइन शुरू करने का चिह्न या लाइन फ़ीड वर्ण नहीं.
#
,[
,]
,*
या?
का इस्तेमाल करने से बचें, क्योंकि ये Firebase Realtime Database या gsutil जैसे दूसरे टूल के साथ ठीक से काम नहीं करते.
पूरा उदाहरण
Swift
// 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()
Objective-C
// 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];
अब आइए, Cloud Storage पर फ़ाइलें अपलोड करने का तरीका जानें.