Sha256: 3cfa5a47f3ade22409f4c4b55ad4c6baca3ecb29aed92e14e6ecb7d2a533a168

Contents?: true

Size: 1.24 KB

Versions: 17

Compression:

Stored size: 1.24 KB

Contents

#
# Copyright 2011 Red Hat, Inc.
#
# 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 Backstage
  class Pool
    include HasMBean
    include TorqueBoxManaged
    include Resource
    
    def self.filter
      "torquebox.pools:*"
    end

    def self.to_hash_attributes
      super + [:name, :app, :app_name, :pool_type, :size, :available, :borrowed, :minimum_instances, :maximum_instances]
    end

    def pool_type
      full_name =~ /type=(.*?)(,|$)/ ? $1 : ''
    end

    def size
      shared? ? 1 : mbean.size
    end
    
    %w{ available borrowed minimum_instances maximum_instances }.each do |meth|
      define_method meth do
        shared? ? 0 : mbean.__send__( meth )
      end
    end

    def shared?
      pool_type == 'shared'
    end

  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
torquebox-backstage-0.5.4 lib/pools/models/pool.rb
torquebox-backstage-0.5.3 lib/pools/models/pool.rb
torquebox-backstage-0.5.2 lib/pools/models/pool.rb
torquebox-backstage-0.5.1 lib/pools/models/pool.rb
torquebox-backstage-0.5 lib/pools/models/pool.rb
torquebox-backstage-0.4.3 lib/pools/models/pool.rb
torquebox-backstage-0.4.2 lib/pools/models/pool.rb
torquebox-backstage-0.4.1 lib/pools/models/pool.rb
torquebox-backstage-0.4.0 lib/pools/models/pool.rb
torquebox-backstage-0.3.2 lib/pools/models/pool.rb
torquebox-backstage-0.3.1 lib/pools/models/pool.rb
torquebox-backstage-0.3.0 lib/pools/models/pool.rb
torquebox-backstage-0.2.1 lib/pools/models/pool.rb
torquebox-backstage-0.2.0 lib/pools/models/pool.rb
torquebox-backstage-0.1.2 lib/pools/models/pool.rb
torquebox-backstage-0.1.1 lib/pools/models/pool.rb
torquebox-backstage-0.1.0 lib/pools/models/pool.rb