Sha256: 1990f5402eed36ca09f27821b83cd3f2215284408d5894e38d2b3c2113efb59c
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 KB
Contents
# -*- coding: utf-8 -*- # codin_rep - Gem para acesso de REPs da Telebyte # Copyright (C) 2016 O.S. Systems Softwares Ltda. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # Rua Clóvis Gularte Candiota 132, Pelotas-RS, Brasil. # e-mail: contato@ossystems.com.br require "codin_rep/command" require 'codin_rep/time_util' module CodinRep class GetTime < Command COMMAND_CODE = "009b".freeze EXPECTED_HEADER = 'REP008b'.freeze def generate_command_payload "" end def get_expected_response_size 14 end def check_response_header unless @response.match(/^#{EXPECTED_HEADER}/) raise UnknownHeader.new @response[0..6], 'get time', EXPECTED_HEADER end end def get_response_payload @response_payload = @response[7..-1] end def get_data_from_response_payload @time = nil begin @time = CodinRep::TimeUtil.unpack @response_payload rescue ArgumentError raise MalformedResponsePayload.new 'get time' end return [@time, Date.civil(1970,1,1), Date.civil(1970,1,1)] end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
codin_rep-0.3.0 | lib/codin_rep/get_time.rb |
codin_rep-0.2.6 | lib/codin_rep/get_time.rb |
codin_rep-0.2.5 | lib/codin_rep/get_time.rb |
codin_rep-0.2.4 | lib/codin_rep/get_time.rb |