
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.
dm-is-reflective
Advanced tools

by Lin Jen-Shin (godfat)
DataMapper plugin that helps you manipulate an existing database. It creates mappings between existing columns and model's properties.
gem install dm-is-reflective
gem 'dm-is-reflective',
:git => 'git://github.com/godfat/dm-is-reflective.git',
:submodules => true
We also have an executable to generate sources for you.
Usage: dm-is-reflective DATABASE_URI
-s, --scope SCOPE SCOPE where the models should go (default: Object)
-o, --output DIRECTORY DIRECTORY where the output goes (default: dm-is-reflective)
-h, --help Print this message
-v, --version Print the version
require 'dm-is-reflective' # this would require 'dm-core'
dm = DataMapper.setup :default, 'sqlite::memory:'
class User
include DataMapper::Resource
is :reflective
# map all, returning an array of properties indicating fields it mapped
reflect /.*/ # e.g. => [#<Property:#<Class:0x18f89b8>:id>,
# #<Property:#<Class:0x18f89b8>:title>,
# #<Property:#<Class:0x18f89b8>:body>,
# #<Property:#<Class:0x18f89b8>:user_id>]
# map all (with no argument at all)
reflect
# mapping for field name ended with _at, and started with salt_
reflect /_at$/, /^salt_/
# mapping id and email
reflect :id, :email
# mapping all fields with type String, and id
reflect String, :id
# mapping login, and all fields with type Integer
reflect :login, Integer
end
# there's no guarantee of the order in storages array
dm.storages
# => ['users']
# show all indices
dm.indices('users') # [:id, {:unique_index => :users_pkey}]
# there's no guarantee of the order in fields array
User.fields
# => [[:created_at, DateTime, {:required => false}],
[:email, String, {:required => false, :length => 255,
:default => 'nospam@nospam.tw'}],
[:id, Serial, {:required => true, :serial => true,
:key => true}],
[:salt_first, String, {:required => false, :length => 50}],
[:salt_second, String, {:required => false, :length => 50}]]
dm.fields('users').sort_by{ |field| field.first.to_s } ==
User.fields.sort_by{ |field| field.first.to_s }
# => true
dm.storages_and_fields
# => {'users' => [[:id, Serial, {:required => true,
:serial => true,
:key => true}],
[:email, String, {:required => false,
:default =>
'nospam@nospam.tw'}],
[:created_at, DateTime, {:required => false}],
[:salt_first, String, {:required => false,
:length => 50}],
[:salt_second, String, {:required => false,
:length => 50}]]}
# there's no guarantee of the order in returned array
dm.auto_genclass!
# => [DataMapper::Is::Reflective::User,
DataMapper::Is::Reflective::SchemaInfo,
DataMapper::Is::Reflective::Session]
# you can change the scope of generated models:
dm.auto_genclass! :scope => Object
# => [User, SchemaInfo, Session]
# you can generate classes for tables you specified only:
dm.auto_genclass! :scope => Object, :storages => /^phpbb_/
# => [PhpbbUser, PhpbbPost, PhpbbConfig]
# you can generate classes with String too:
dm.auto_genclass! :storages => ['users', 'config'], :scope => Object
# => [User, Config]
# you can generate a class only:
dm.auto_genclass! :storages => 'users'
# => [DataMapper::Is::Reflective::User]
# you can also generate the source from models:
puts User.to_source
Apache License 2.0
Copyright (c) 2008-2017, Lin Jen-Shin (godfat)
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.
FAQs
Unknown package
We found that dm-is-reflective demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.