2013-03-13 18 views
6

Używam mangusta i gridfs-stream do przechowywania i odczytu plików z mongodb. Mam następujący przykład: https://github.com/aheckmann/gridfs-streamOdczytaj plik za pomocą node.js, mangusta, gridfs-stream

Zapisywanie plików w db działa dobrze, ale miałem problem z odczytaniem plików.

Co wygląd MongoDB (pokaż Collections)

fs.chunks 
fs.files 

Co wygląd indeksu pliku (db.fs.files.find())

{ "_id" : ObjectId("5140392659851df70b000001"), 
"filename" : "cover", 
"contentType" : "binary/octet-stream", 
"length" : 85734, 
"chunkSize" : 262144, 
"uploadDate" : ISODate("2013-03-13T08:30:30.299Z"), 
"aliases" : null, 
"metadata" : null, 
"md5" : "4476b26067daa0677978ba501308a35d" } 

Potem użyć tego kodu, aby uzyskać plik o nazwie "okładka"

... 
var gfs = Grid(mongoose.connection.db, mongoose.mongo) 
var readstream = gfs.createReadStream('cover') 

wystąpił błąd:

Error: cover does not exist 
at self.collection.self.fileId (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/gridfs/gridstore.js:198:26) 
at Cursor.nextObject (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/cursor.js:654:35) 
at Cursor.close (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/cursor.js:960:5) 
at Cursor.nextObject (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/cursor.js:654:17) 
at Cursor.nextObject.commandHandler (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/cursor.js:631:14) 
at Db._executeQueryCommand (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/db.js:1702:5) 
at g (events.js:185:14) 
at EventEmitter.emit (events.js:115:20) 
at Server.Base._callHandler (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/connection/base.js:130:25) 
at Server.connect.connectionPool.on.server._serverState (/mypath/node_modules/mongoose/node_modules/mongodb/lib/mongodb/connection/server.js:517:20) 

google go i znalazłem kilka możliwych Zobacz także:

https://github.com/mongodb/node-mongodb-native/issues/621

Why gridfs get isn't working on file id (ObjectId) only by filename

+1

jeśli zastąpić "nazwa_pliku" z "5140392659851df70b000001", to działa: 'var readstream = gfs.createReadStream ('5140392659851df70b000001')'. Chyba powód jest związany z ustawianiem klucza? – LKS

+0

Możesz również rzucić okiem na implementację strumienia sterownika http://mongodb.github.com/node-mongodb-native/api-generated/gridstore.html#stream – christkv

+1

Po prostu ciekawy, czy przechowujesz odniesienie do pliku w dokument stworzony przez mangusta? Zajmuję się korzystaniem z GridFS i zastanawiam się, w jaki sposób ludzie go wdrażają. – Leonidas

Odpowiedz

11

Przykładowy kod na GitHub było trochę mylące; Początkowo otrzymałem ten sam komunikat o błędzie, co Ty. W moim przypadku było to spowodowane faktem, że próbowałem odczytać plik przed zakończeniem zapisu. Postanowiłem to wykonując czytać wewnątrz obsługi zdarzeń dla "close":

var fs = require("fs"), 
    mongo = require("mongodb"), 
    Grid = require("gridfs-stream"), 
    gridfs, 
    writeStream, 
    readStream, 
    buffer = ""; 

mongo.MongoClient.connect("mongodb://localhost/gridfs_test", function (err, db) { 
    "use strict"; 
    gridfs = Grid(db, mongo); 

    // write file 
    writeStream = gridfs.createWriteStream({ filename: "test.txt" }); 
    fs.createReadStream("test.txt").pipe(writeStream); 

    // after the write is finished 
    writeStream.on("close", function() { 
     // read file, buffering data as we go 
     readStream = gridfs.createReadStream({ filename: "test.txt" }); 

     readStream.on("data", function (chunk) { 
      buffer += chunk; 
     }); 

     // dump contents to console when complete 
     readStream.on("end", function() { 
      console.log("contents of file:\n\n", buffer); 
     }); 
    }); 
});