Class: ODDB::Import::PharmNet::FiParser

Inherits:
TermedRtf show all
Defined in:
lib/oddb/import/pharmnet.rb

Constant Summary

Constants inherited from Rtf

Rtf::SYMBOLS

Instance Method Summary collapse

Methods inherited from TermedRtf

#initialize

Methods inherited from Rtf

#_import_text, #_next_paragraph, #align, #current_chapter, #current_group, #current_table, #ignore?, #import, #import_control, #import_group, #import_text, #import_token, #init, #next_paragraph, #parent_group, #set_font_size

Constructor Details

This class inherits a constructor from ODDB::Import::PharmNet::TermedRtf

Instance Method Details

#_sanitize_text(value) ⇒ Object



148
149
150
151
152
# File 'lib/oddb/import/pharmnet.rb', line 148

def _sanitize_text(value)
  if @buffer.empty? && @buffer.is_a?(Text::Paragraph)
    value.gsub! /^([BF][A-Z0-9]{1,2})?\s*/, ''
  end
end

#identify_chapter(buffer) ⇒ Object



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/oddb/import/pharmnet.rb', line 65

def identify_chapter buffer
  name = case buffer 
         when /^1[08]\.?\s*Stand/i 
           'date'
         when /^14\.?\s*Sonstige\s+Hinweise/i 
           'other_advice'
         when /^(2|11)\.?\s*(Verschreibung|Verkauf)/i 
           'sale_limitation'
         when /^1\.?\s*Bezeichnung/i 
           'name'
         when /^[23]\.?\s*(Qualitative|Zusammensetzung)/i  
           'composition'
         when /^3\.?\s*Darreichung/i  
           'galenic_form'
         when /^3\.1\.?\s*Stoff/i  
           'substance_group'
         when /^3\.2\.?\s*(Arzneilich|Bestandteile)/i  
           'active_agents'
         when /^4(\.1)?\.?\s*Anwendung/i 
           'indications'
         when /^(10|4\.2)\.?\s*Dosierung/i 
           'dosage'
         when /^11\.?\s*Art\s+und\s+Dauer/i 
           'application'
         when /^(5|4\.3)\.?\s*Gegenanzeigen/i 
           'counterindications'
         when /^(8|4\.4)\.?\s*(Besondere\s+)?Warnhinweise/i 
           'precautions'
         when /^(7|4\.5)\.?\s*Wechselwirkungen/i 
           'interactions'
         when /^4\.6\.?\s*(Anwendung|Schwangerschaft)/i 
           'pregnancy'
         when /^4\.7\.?\s*Auswirkung/i 
           'driving_ability'
         when /^(6|4\.8)\.?\s*Nebenwirkungen/i 
           'unwanted_effects'
         when /^(12|4\.9)\.?\s*(Notfall|Überdosierung)/i 
           'overdose'
         when /^4\.?\s*Klinisch/i 
           'clinical'
         when /^5\.1\.?\s*Pharmakodynamisch/i 
           'pharmacodynamics'
         when /^13\.2\.?\s*Toxikologisch/i 
           'toxicology'
         when /^(13\.3|5\.2)\.?\s*Pharmakokineti(sch|k)/i 
           'pharmacokinetics'
         when /^13\.4\.?\s*Bioverfügbarkeit/i 
           'bioavailability'
         when /^5\.3\.?\s*Präklinisch/i 
           'preclinicals'
         when /^(13|5)\.?\s*Pharmakologisch/i 
           'pharmacology'
         when /^(3\.3|6\.1)\.?\s*(Liste|Hilfsstoffe?|Sonstige\s+Bestandteile)/i 
           'excipients'
         when /^(9|6\.2)\.?\s*(Wichtigste\s+)?Inkompatibilitäten/i 
           'incompatibilities'
         when /^(15|6\.3)\.?\s*(Dauer|Haltbarkeit)/i 
           'shelf_life'
         when /^(16|6\.4)\.?\s*(Besondere|Lagerung|Aufbewahrung)/i 
           'storage'
         when /^6\.5\.?\s*(Art|Behältnis)/i, 
              /^17\.?\s*Darreichungsformen\s+und\sPackung/
           'packaging'
         when /^6\.6\.?\s*(Besondere|Hinweis|Entsorgung)/i 
           'disposal'
         when /^6\.?\sPharmazeutisch/i 
           'pharmaceutic'
         when /^(19|7)\.?\s*(Name|Pharmazeutischer|Inhaber)/i  
           'company'
         when /^20\.?\s*(Name|Hersteller)/i  
           'producer'
         when /^8\.?\s*Zulassung/i 
           'registration'
         when /^9\.?\s*Datum/i 
           'registration_date'
         when /^zusätzliche Angaben/i
           'additional_information'
         end
  if(name && !@document.chapter(name))
    @document.add_chapter Text::Chapter.new(name)
  end
  super
end