스케쥴러 시작/정기 기능 추가

This commit is contained in:
RubyOn 2025-04-17 06:42:51 +09:00
parent 4b9c59b6e0
commit f9cdd77e7a
7 changed files with 47 additions and 14 deletions

View File

@ -1,6 +1,17 @@
class ModbusController < ApplicationController class ModbusController < ApplicationController
def index def index
@schedule = Schedule.all @schedule = Schedule.all
@modbus_running = Modbus::PollingService.running?
end
def start
Modbus::PollingService.start
redirect_to modbus_index_path
end
def stop
Modbus::PollingService.stop
redirect_to modbus_index_path
end end
def schedule_edit def schedule_edit

View File

@ -2,9 +2,9 @@ module Modbus
class PollingService class PollingService
class << self class << self
def start def start
return if @thread&.alive? return if $modbus_polling_threads.any?(&:alive?)
@thread = Thread.new do thread = Thread.new do
puts "[#{Time.current}] Modbus polling service 시작됨" puts "[#{Time.current}] Modbus polling service 시작됨"
last_logged_hour = nil last_logged_hour = nil
loop do loop do
@ -32,14 +32,17 @@ module Modbus
end end
end end
end end
$modbus_polling_threads << thread
end end
def stop def stop
if @thread $modbus_polling_threads.each { |t| t.kill if t.alive? }
@thread.exit $modbus_polling_threads.clear
@thread = nil
puts "[#{Time.now}] Modbus polling service 중지됨" puts "[#{Time.now}] Modbus polling service 중지됨"
end end
def running?
$modbus_polling_threads.any?(&:alive?)
end end
end end
end end

View File

@ -1,3 +1,5 @@
<meta http-equiv="refresh" content="5">
<% if flash[:notice] %> <% if flash[:notice] %>
<div class="mb-4 rounded bg-green-100 px-4 py-2 text-green-800 border border-green-300"> <div class="mb-4 rounded bg-green-100 px-4 py-2 text-green-800 border border-green-300">
<%= flash[:notice] %> <%= flash[:notice] %>
@ -15,4 +17,20 @@
</div> </div>
<% end %> <% end %>
<%= link_to "수정", "/modbus/schedule_edit", class: "btn btn-primary" %> <div class="py-4">
<%= button_to "수정", schedule_edit_modbus_index_path, method: :get, class: "btn bg-primary" %>
</div>
<div class="flex gap-x-2">
<%= button_to "스케쥴러 시작", start_modbus_index_path, method: :post, class: "btn bg-accept" %>
<%= button_to "스케쥴러 정지", stop_modbus_index_path, method: :post, class: "btn bg-danger" %>
</div>
<div class="py-4">
<span class="font-semibold">스케쥴러 상태:</span>
<% if @modbus_running %>
<span class="text-accept font-bold">실행 중</span>
<% else %>
<span class="text-danger font-bold">정지됨</span>
<% end %>
</div>

View File

@ -1,4 +1,4 @@
<%= form_with url: "/modbus/schedule_edit_update", method: :post do %> <%= form_with url: schedule_edit_update_modbus_index_path, method: :post do %>
<% @schedule.each do |s| %> <% @schedule.each do |s| %>
<div class="flex justify-items-center gap-x-2 pb-2"> <div class="flex justify-items-center gap-x-2 pb-2">
<div><%= s.hour %>시</div> <div><%= s.hour %>시</div>

View File

@ -1,3 +1,5 @@
$modbus_polling_threads ||= []
Rails.application.config.after_initialize do Rails.application.config.after_initialize do
Modbus::PollingService.start Modbus::PollingService.start
end end

View File

@ -14,9 +14,8 @@ Rails.application.routes.draw do
resources :modbus do resources :modbus do
collection do collection do
get "start" post "start"
get "stop" post "stop"
get "status"
get "schedule_edit" get "schedule_edit"
post "schedule_edit_update" post "schedule_edit_update"
end end

View File

@ -8,6 +8,6 @@
# MovieGenre.find_or_create_by!(name: genre_name) # MovieGenre.find_or_create_by!(name: genre_name)
# end # end
(0..23).each_with_index do |h, index| (0..23).each do | h |
Schedule.create!(hour: h, temperature: index) Schedule.create!(hour: h, temperature: 15.0)
end end