Sha256: 55ee1909104144acf4f3e7f0f75f99295f0e5d73a838db28ee2317a89576ba6d

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 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 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 pool_type
      mbean_info.getClassName =~ /Shared/ ? 'shared' : 'default'
    end
    
    def shared?
      pool_type == 'shared'
    end

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
torquebox-backstage-1.1.2 lib/pools/models/pool.rb
torquebox-backstage-1.1.1 lib/pools/models/pool.rb
torquebox-backstage-1.1.0 lib/pools/models/pool.rb
torquebox-backstage-1.0.7 lib/pools/models/pool.rb
torquebox-backstage-1.0.6 lib/pools/models/pool.rb
torquebox-backstage-1.0.5 lib/pools/models/pool.rb
torquebox-backstage-1.0.4 lib/pools/models/pool.rb
torquebox-backstage-1.0.3 lib/pools/models/pool.rb
torquebox-backstage-1.0.2 lib/pools/models/pool.rb
torquebox-backstage-1.0.1 lib/pools/models/pool.rb
torquebox-backstage-1.0.0 lib/pools/models/pool.rb
torquebox-backstage-1.0.0.beta2 lib/pools/models/pool.rb
torquebox-backstage-1.0.0.beta1 lib/pools/models/pool.rb