~jan-kneschke/mysql-proxy/packet-tracking-assertions

« back to all changes in this revision

Viewing changes to tags/mysql-proxy-0.6.0/examples/tutorial-query-time.lua

  • Committer: Kay Roepke
  • Author(s): Jan Kneschke
  • Date: 2008-01-23 22:00:28 UTC
  • Revision ID: kay@mysql.com-20080123220028-hq2xqb69apa75fnx
first round on mysql-shell based on the proxy code

this is mostly a verification if the proxy-code is flexible enough to handle 
all three scenarios of: client, server and forwarding (proxy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--[[
 
2
 
 
3
   Copyright (C) 2007 MySQL AB
 
4
 
 
5
   This program is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by
 
7
   the Free Software Foundation; version 2 of the License.
 
8
 
 
9
   This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program; if not, write to the Free Software
 
16
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
--]]
 
19
 
 
20
---
 
21
-- getting the query time 
 
22
--
 
23
-- each injected query we send to the server has a start and end-time
 
24
-- 
 
25
-- * start-time: when we call proxy.queries:append()
 
26
-- * end-time:   when we received the full result-set 
 
27
--
 
28
-- @param packet the mysql-packet sent by the client
 
29
--
 
30
-- @return 
 
31
--   * proxy.PROXY_SEND_QUERY to send the queries from the proxy.queries queue
 
32
--
 
33
function read_query( packet )
 
34
        if packet:byte() == proxy.COM_QUERY then
 
35
                print("we got a normal query: " .. packet:sub(2))
 
36
 
 
37
                proxy.queries:append(1, packet )
 
38
 
 
39
                return proxy.PROXY_SEND_QUERY
 
40
        end
 
41
end
 
42
 
 
43
---
 
44
-- read_query_result() is called when we receive a query result 
 
45
-- from the server
 
46
--
 
47
-- inj.query_time is the query-time in micro-seconds
 
48
-- 
 
49
-- @return 
 
50
--   * nothing or proxy.PROXY_SEND_RESULT to pass the result-set to the client
 
51
-- 
 
52
function read_query_result(inj)
 
53
        print("query-time: " .. (inj.query_time / 1000) .. "ms")
 
54
        print("response-time: " .. (inj.response_time / 1000) .. "ms")
 
55
end