Project

General

Profile

Statistics
| Branch: | Revision:

root / mainbox / tool.c @ 75cef49f

History | View | Annotate | Download (4.04 KB)

1
#include "tool.h"
2
#include "query.h"
3
#include "event.h"
4
#include "tooltron_mb.h"
5
#include <modbus.h>
6
#include <stdio.h>
7
#include <errno.h>
8

    
9
modbus_t *ctx;
10

    
11
int tool_init_mb(const char *device) {
12
  struct timeval timeout;
13

    
14
  ctx = modbus_new_rtu(device, MB_BAUD, 'N', 8, 1);
15
  if (ctx == NULL) {
16
    fprintf(stderr, "modbus_new_rtu: %s\n", modbus_strerror(errno));
17
    return 1;
18
  }
19

    
20
  if (modbus_connect(ctx) == -1) {
21
    fprintf(stderr, "modbus_connect: %s\n", modbus_strerror(errno));
22
    modbus_free(ctx);
23
    return 1;
24
  }
25

    
26
  modbus_get_response_timeout(ctx, &timeout);
27
  printf("Response timeout is %lus %luus\n", timeout.tv_sec, timeout.tv_usec);
28

    
29
  return 0;
30
}
31

    
32
void tool_close_mb() {
33
  modbus_close(ctx);
34
  modbus_free(ctx);
35
}
36

    
37
static void tool_write_coil(int addr, int bit) {
38
  if (modbus_write_bit(ctx, addr, bit) == -1) {
39
    fprintf(stderr, "modbus_write_bit: %s\n", modbus_strerror(errno));
40
  }
41
}
42

    
43
static void tool_init(struct tool_t *tool) {
44
  // TODO write current limit values
45
  tool_write_coil(MB_COIL_INIT, 1);
46
  tool->state = TS_OFF;
47
}
48

    
49
static void tool_read_user(struct tool_t *tool) {
50
  unsigned short serno[2];
51
  if (modbus_read_input_registers(ctx, MB_INP_SERNOL, 2, serno) == -1) {
52
    fprintf(stderr, "modbus_read_registers: %s\n", modbus_strerror(errno));
53
    tool->user = 0;
54
  } else {
55
    tool->user = MODBUS_GET_INT32_FROM_INT16(serno, 0);
56
  }
57
}
58

    
59
static void tool_grant_access(struct tool_t *tool) {
60
  printf("Granting access to %08x on %s (%d)\n", tool->user, tool->name,
61
      tool->address);
62
  tool_write_coil(MB_COIL_EN, 1);
63
  tool->state = TS_ON;
64
  tool->event = event_alloc();
65
  tool->event->user = tool->user;
66
  tool->event->tool_id = tool->address;
67
  tool->event->tstart = time(NULL);
68
}
69

    
70
static void tool_deny_access(struct tool_t *tool) {
71
  printf("Denying access to %08x on %s (%d)\n", tool->user, tool->name,
72
      tool->address);
73
  tool_write_coil(MB_COIL_EN, 0);
74
  tool->state = TS_OFF;
75
}
76

    
77
static void tool_off(struct tool_t *tool) {
78
  tool->state = TS_OFF;
79
  tool->event->tend = time(NULL);
80
  event_q_push(tool->event);
81
  tool->event = NULL;
82
}
83

    
84
void tool_request_disable(struct tool_t *tool) {
85
  printf("Requesting disable on %s (%d)\n", tool->name, tool->address);
86
  tool_write_coil(MB_COIL_REQ_DIS, 1);
87
  tool->state = TS_REQ_DIS;
88
}
89

    
90
void tool_poll(struct tool_t *tool) {
91
  unsigned char status[N_COILS];
92

    
93
  if (modbus_set_slave(ctx, tool->address) == -1) {
94
    fprintf(stderr, "modbus_set_slave: %s\n", modbus_strerror(errno));
95
  }
96

    
97
  /* If we can't read from the tool, we only want this error message to print
98
   * once, thus tool->connected */
99
  if (modbus_read_bits(ctx, 0, N_COILS, status) == -1) {
100
    if (tool->connected) {
101
      fprintf(stderr, "Cannot connect to %s (%d): %s\n", tool->name,
102
          tool->address, modbus_strerror(errno));
103
      tool->connected = 0;
104
    }
105
    return;
106
  } else if (!tool->connected) {
107
    fprintf(stderr, "Reconnected to %s (%d)\n", tool->name, tool->address);
108
    tool->connected = 1;
109
  }
110

    
111
  /*uint16_t current;
112
  if (modbus_read_input_registers(ctx, MB_INP_CURRENT, 1, &current) == -1) {
113
    fprintf(stderr, "modbus_read_registers: %s\n", modbus_strerror(errno));
114
  } else {
115
    printf("Current: %d\n", current);
116
  }*/
117

    
118
  /*printf("new:%d en:%d req_dis:%d init:%d\n", status[MB_COIL_NEW],
119
      status[MB_COIL_EN], status[MB_COIL_REQ_DIS], status[MB_COIL_INIT]);*/
120

    
121
  if (!status[MB_COIL_INIT]) {
122
    tool->state = TS_INIT;
123
  }
124

    
125
  switch (tool->state) {
126

    
127
    case TS_INIT:
128
      tool_init(tool);
129
      break;
130

    
131
    case TS_OFF:
132
      if (status[MB_COIL_NEW]) {
133
        tool_read_user(tool);
134
        if (query_user_permission(tool->address, tool->user)) {
135
          tool_grant_access(tool);
136
        } else {
137
          tool_deny_access(tool);
138
        }
139
      }
140
      break;
141

    
142
    case TS_ON:
143
      if (!status[MB_COIL_EN]) {
144
        printf("Tool %s (%d) is off\n", tool->name, tool->address);
145
        tool_off(tool);
146
      }
147
      break;
148

    
149
    case TS_REQ_DIS:
150
      if (!status[MB_COIL_EN]) {
151
        printf("Tool %s (%d) is off after requested disable\n", tool->name,
152
            tool->address);
153
        tool_off(tool);
154
      }
155
      break;
156

    
157
  }
158

    
159
}