2010-02-12 23:03:07 +00:00
|
|
|
# --
|
2010-02-19 22:41:36 +00:00
|
|
|
# Copyright (C) 2008-2010 10gen Inc.
|
2010-02-12 23:03:07 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
# ++
|
|
|
|
|
|
|
|
module Mongo
|
2010-02-18 21:31:25 +00:00
|
|
|
|
2010-02-23 23:03:11 +00:00
|
|
|
# Implementation of the MongoDB GridFS specification. A file store.
|
2010-02-12 23:03:07 +00:00
|
|
|
class Grid
|
2010-02-19 21:20:46 +00:00
|
|
|
DEFAULT_FS_NAME = 'fs'
|
2010-02-12 23:03:07 +00:00
|
|
|
|
2010-02-23 22:40:02 +00:00
|
|
|
# Initialize a new Grid instance, consisting of a MongoDB database
|
|
|
|
# and a filesystem prefix if not using the default.
|
|
|
|
#
|
|
|
|
# @core gridfs
|
|
|
|
# @see GridFileSystem
|
2010-02-19 21:20:46 +00:00
|
|
|
def initialize(db, fs_name=DEFAULT_FS_NAME)
|
2010-02-22 23:06:59 +00:00
|
|
|
raise MongoArgumentError, "db must be a Mongo::DB." unless db.is_a?(Mongo::DB)
|
|
|
|
|
2010-02-22 20:49:04 +00:00
|
|
|
@db = db
|
|
|
|
@files = @db["#{fs_name}.files"]
|
|
|
|
@chunks = @db["#{fs_name}.chunks"]
|
|
|
|
@fs_name = fs_name
|
2010-02-18 21:31:25 +00:00
|
|
|
|
|
|
|
@chunks.create_index([['files_id', Mongo::ASCENDING], ['n', Mongo::ASCENDING]])
|
2010-02-12 23:03:07 +00:00
|
|
|
end
|
|
|
|
|
2010-02-23 22:40:02 +00:00
|
|
|
# Store a file in the file store.
|
|
|
|
#
|
|
|
|
# @param [String, #read] data a string or io-like object to store.
|
|
|
|
# @param [String] filename a name for the file.
|
|
|
|
#
|
|
|
|
# @return [Mongo::ObjectID] the file's id.
|
2010-02-18 21:31:25 +00:00
|
|
|
def put(data, filename, opts={})
|
2010-02-22 20:49:04 +00:00
|
|
|
opts.merge!(default_grid_io_opts)
|
|
|
|
file = GridIO.new(@files, @chunks, filename, 'w', opts=opts)
|
2010-02-18 21:31:25 +00:00
|
|
|
file.write(data)
|
|
|
|
file.close
|
|
|
|
file.files_id
|
|
|
|
end
|
|
|
|
|
2010-02-23 22:40:02 +00:00
|
|
|
# Read a file from the file store.
|
|
|
|
#
|
|
|
|
# @param [] id the file's unique id.
|
|
|
|
#
|
|
|
|
# @return [Mongo::GridIO]
|
2010-02-18 21:31:25 +00:00
|
|
|
def get(id)
|
2010-02-22 20:49:04 +00:00
|
|
|
opts = {:query => {'_id' => id}}.merge!(default_grid_io_opts)
|
|
|
|
GridIO.new(@files, @chunks, nil, 'r', opts)
|
2010-02-18 21:31:25 +00:00
|
|
|
end
|
|
|
|
|
2010-02-23 22:40:02 +00:00
|
|
|
# Delete a file from the store.
|
|
|
|
#
|
|
|
|
# @param [] id
|
|
|
|
#
|
|
|
|
# @return [Boolean]
|
2010-02-18 21:31:25 +00:00
|
|
|
def delete(id)
|
|
|
|
@files.remove({"_id" => id})
|
|
|
|
@chunks.remove({"_id" => id})
|
2010-02-12 23:03:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2010-02-22 20:49:04 +00:00
|
|
|
def default_grid_io_opts
|
|
|
|
{:fs_name => @fs_name}
|
|
|
|
end
|
2010-02-12 23:03:07 +00:00
|
|
|
end
|
|
|
|
end
|