mongo-ruby-driver/lib/mongo/gridfs/grid.rb

101 lines
3.4 KiB
Ruby
Raw Normal View History

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
include GridExt::InstanceMethods
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
2010-03-01 15:39:50 +00:00
#
2010-02-23 22:40:02 +00:00
# @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]], :unique => true)
2010-02-12 23:03:07 +00:00
end
2010-02-23 22:40:02 +00:00
# Store a file in the file store.
#
2010-04-28 19:20:39 +00:00
# Note that arbitary metadata attributes can be saved to the file by passing
# them is as options.
#
2010-02-23 22:40:02 +00:00
# @param [String, #read] data a string or io-like object to store.
#
# @option opts [String] :filename (nil) a name for the file.
# @option opts [Hash] :metadata ({}) any additional data to store with the file.
# @option opts [ObjectID] :_id (ObjectID) a unique id for
2010-03-01 15:39:50 +00:00
# the file to be use in lieu of an automatically generated one.
# @option opts [String] :content_type ('binary/octet-stream') If no content type is specified,
2010-03-01 15:39:50 +00:00
# the content type will may be inferred from the filename extension if the mime-types gem can be
# loaded. Otherwise, the content type 'binary/octet-stream' will be used.
# @option opts [Integer] (262144) :chunk_size size of file chunks in bytes.
# @option opts [Boolean] :safe (false) When safe mode is enabled, the chunks sent to the server
2010-03-01 15:39:50 +00:00
# will be validated using an md5 hash. If validation fails, an exception will be raised.
#
2010-02-23 22:40:02 +00:00
# @return [Mongo::ObjectID] the file's id.
def put(data, opts={})
filename = opts[:filename]
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.
#
2010-04-07 19:58:02 +00:00
# Note that deleting a GridFS file can result in read errors if another process
# is attempting to read a file while it's being deleted. While the odds for this
# kind of race condition are small, it's important to be aware of.
#
2010-02-23 22:40:02 +00:00
# @param [] id
#
# @return [Boolean]
2010-02-18 21:31:25 +00:00
def delete(id)
@files.remove({"_id" => id})
2010-03-23 21:00:31 +00:00
@chunks.remove({"files_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