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

57 lines
1.5 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
# WARNING: This class is part of a new, experimental GridFS API. Subject to change.
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-19 21:20:46 +00:00
def initialize(db, fs_name=DEFAULT_FS_NAME)
2010-02-12 23:03:07 +00:00
check_params(db)
@db = db
2010-02-19 21:20:46 +00:00
@files = @db["#{fs_name}.files"]
@chunks = @db["#{fs_name}.chunks"]
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-18 21:31:25 +00:00
def put(data, filename, opts={})
file = GridIO.new(@files, @chunks, filename, 'w', false, opts=opts)
file.write(data)
file.close
file.files_id
end
def get(id)
GridIO.new(@files, @chunks, nil, 'r', false, :_id => id)
end
def delete(id)
@files.remove({"_id" => id})
@chunks.remove({"_id" => id})
2010-02-12 23:03:07 +00:00
end
private
def check_params(db)
if !db.is_a?(Mongo::DB)
raise MongoArgumentError, "db must be an instance of Mongo::DB."
end
end
end
end