Sha256: 477cc29f9606b109de0d569cbe8a0789e8e1b0f61b87cc50db2cd74a717871e3

Contents?: true

Size: 1.39 KB

Versions: 15

Compression:

Stored size: 1.39 KB

Contents

module HealthDataStandards
  module Util
    # General helpers for working with codes and code systems
    class HQMFTemplateHelper

      def self.definition_for_template_id(template_id, version="r1")
        template_id_map(version)[template_id]
      end

      def self.template_id_map(version)
        if @id_map.blank?
          @id_map = {
            'r1' => JSON.parse(File.read(File.expand_path('../hqmf_template_oid_map.json', __FILE__))),
            'r2' => JSON.parse(File.read(File.expand_path('../hqmfr2_template_oid_map.json', __FILE__))),
            'r2cql' => JSON.parse(File.read(File.expand_path('../hqmfr2cql_template_oid_map.json', __FILE__)))
          }
        end
        @id_map[version]
      end

      def self.template_id_by_definition_and_status(definition, status, negation=false, version="r1")
        case version
        when "r1"
          kv_pair = template_id_map(version).find {|k, v| v['definition'] == definition &&
                                                 v['status'] == status &&
                                                 v['negation'] == negation}
        when "r2", "r2cql"
          kv_pair = template_id_map(version).find {|k, v| v['definition'] == definition &&
                                                 v['status'] == status}
        end
        if kv_pair
          kv_pair.first
        else
          nil
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
health-data-standards-4.3.5 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.3.4 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.3.3 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.3.2 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.3.1 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.3.0 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.2.0 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.1.0 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.6 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.5 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.4 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.3 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.2 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.1 lib/health-data-standards/util/hqmf_template_helper.rb
health-data-standards-4.0.0 lib/health-data-standards/util/hqmf_template_helper.rb