Skip to content

Commit 56d456b

Browse files
committed
Initial 0.6 compat
1 parent b9ef4a3 commit 56d456b

File tree

6 files changed

+43
-58
lines changed

6 files changed

+43
-58
lines changed

src/MySQL.jl

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
__precompile__()
2-
1+
__precompile__(true)
32
module MySQL
43
using Compat
54
using DataFrames
5+
using Missings
6+
using DataStreams
7+
using Compat.Dates
68

79
include("config.jl")
810
include("consts.jl")

src/config.jl

+11-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@
55
#
66
# TODO: Need to update lib_choices for Mac OS X and Windows.
77

8+
@static if !isdefined(Base, Symbol("@isdefined"))
9+
macro isdefined(x)
10+
esc(:(isdefined($x)))
11+
end
12+
end
13+
814
let
915
global mysql_lib
1016
succeeded = false
11-
if !isdefined(:mysql_lib)
12-
@static is_linux() ? (lib_choices = ["libmysql.so", "libmysqlclient.so",
17+
if !@isdefined(:mysql_lib)
18+
@static Compat.Sys.islinux() ? (lib_choices = ["libmysql.so", "libmysqlclient.so",
1319
"libmysqlclient_r.so", "libmariadb.so",
1420
"libmysqlclient_r.so.16"]) : nothing
15-
@static is_apple() ? (lib_choices = ["libmysqlclient.dylib", "libperconaserverclient.dylib"]) : nothing
16-
@static is_windows() ? (lib_choices = ["libmysql.dll", "libmariadb.dll"]) : nothing
21+
@static Compat.Sys.isapple() ? (lib_choices = ["libmysqlclient.dylib", "libperconaserverclient.dylib"]) : nothing
22+
@static Compat.Sys.iswindows() ? (lib_choices = ["libmysql.dll", "libmariadb.dll"]) : nothing
1723
local lib
1824
for lib in lib_choices
1925
try
@@ -22,7 +28,7 @@ let
2228
break
2329
end
2430
end
25-
succeeded || error("MYSQL library not found")
31+
succeeded || error("MySQL library not found")
2632
@eval const mysql_lib = $lib
2733
end
2834
end

src/consts.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const MYSQL_NO_DATA = 100
152152

153153
const MYSQL_DEFAULT_PORT = 3306
154154

155-
if is_windows()
155+
if Compat.Sys.iswindows()
156156
MYSQL_DEFAULT_SOCKET = "MySQL"
157157
else
158158
MYSQL_DEFAULT_SOCKET = "/tmp/mysql.sock"

src/datetime.jl

-11
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,6 @@ import Base.==
55
const MYSQL_DATE_FORMAT = Dates.DateFormat("yyyy-mm-dd")
66
const MYSQL_DATETIME_FORMAT = Dates.DateFormat("yyyy-mm-dd HH:MM:SS")
77

8-
function Base.convert(::Type{Date}, datestr::String)
9-
Date(datestr, MYSQL_DATE_FORMAT)
10-
end
11-
12-
function Base.convert(::Type{DateTime}, dtimestr::String)
13-
if !contains(dtimestr, " ")
14-
dtimestr = "1970-01-01 " * dtimestr
15-
end
16-
DateTime(dtimestr, MYSQL_DATETIME_FORMAT)
17-
end
18-
198
function Base.convert(::Type{DateTime}, mtime::MYSQL_TIME)
209
if mtime.year == 0 || mtime.month == 0 || mtime.day == 0
2110
DateTime(1970, 1, 1,

src/results.jl

+10-22
Original file line numberDiff line numberDiff line change
@@ -67,33 +67,30 @@ end
6767
"""
6868
Get the C type that would be needed when using prepared statement.
6969
"""
70-
function mysql_get_ctype(jtype::DataType)
71-
if (jtype == Date || jtype == DateTime)
72-
return MYSQL_TIME
73-
end
74-
75-
return jtype
76-
end
70+
function mysql_get_ctype end
71+
mysql_get_ctype(::Type{<:Dates.TimeType}) = MYSQL_TIME
72+
mysql_get_ctype(x) = x
7773

7874
mysql_get_ctype(mysqltype::MYSQL_TYPE) =
7975
mysql_get_ctype(mysql_get_julia_type(mysqltype))
8076

8177
"""
8278
Interpret a string as a julia datatype.
8379
"""
80+
function mysql_interpret_field end
8481
mysql_interpret_field(strval::String, ::Type{Cuchar}) = UInt8(strval[1])
8582

86-
mysql_interpret_field{T<:Number}(strval::String, ::Type{T}) =
83+
mysql_interpret_field(strval::String, ::Type{T}) where {T<:Number} =
8784
parse(T, strval)
8885

89-
mysql_interpret_field{T<:String}(strval::String, ::Type{T}) =
86+
mysql_interpret_field(strval::String, ::Type{<:AbstractString}) =
9087
strval
9188

9289
mysql_interpret_field(strval::String, ::Type{Date}) =
93-
convert(Date, strval)
90+
Dates.Date(datestr, MYSQL_DATE_FORMAT)
9491

95-
mysql_interpret_field(strval::String, ::Type{DateTime}) =
96-
convert(DateTime, strval)
92+
functionmysql_interpret_field(strval::String, ::Type{DateTime}) =
93+
Dates.DateTime(contains(strval, " ") ? strval : "1970-01-01 " * strval, MYSQL_DATETIME_FORMAT)
9794

9895
"""
9996
Load a bytestring from `result` pointer given the field index `idx`.
@@ -125,16 +122,7 @@ Returns an array of MYSQL_TYPE's corresponding to each field in the table.
125122
"""
126123
function mysql_get_field_types(result::MYSQL_RES)
127124
mysqlfields = mysql_metadata(result)
128-
return mysql_get_field_types(mysqlfields)
129-
end
130-
131-
function mysql_get_field_types(mysqlfields::Array{MYSQL_FIELD})
132-
nfields = length(mysqlfields)
133-
mysqlfield_types = Array{MYSQL_TYPE}(nfields)
134-
for i = 1:nfields
135-
mysqlfield_types[i] = mysqlfields[i].field_type
136-
end
137-
return mysqlfield_types
125+
return map(x->x.field_type, mysqlfields)
138126
end
139127

140128
"""

src/types.jl

+17-17
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const MYSQL_TYPE = UInt32
99
The field object that contains the metadata of the table.
1010
Returned by mysql_fetch_fields API.
1111
"""
12-
immutable MYSQL_FIELD
12+
struct MYSQL_FIELD
1313
name :: Ptr{Cchar} ## Name of column
1414
org_name :: Ptr{Cchar} ## Original column name, if an alias
1515
table :: Ptr{Cchar} ## Table of column if column was a field
@@ -36,7 +36,7 @@ end
3636
"""
3737
Type mirroring MYSQL_TIME C struct.
3838
"""
39-
immutable MYSQL_TIME
39+
struct MYSQL_TIME
4040
year::Cuint
4141
month::Cuint
4242
day::Cuint
@@ -51,7 +51,7 @@ end
5151
"""
5252
Mirror to MYSQL_BIND struct in mysql_bind.h
5353
"""
54-
immutable MYSQL_BIND
54+
struct MYSQL_BIND
5555
length::Ptr{Culong}
5656
is_null::Ptr{Cchar}
5757
buffer::Ptr{Void}
@@ -89,7 +89,7 @@ end
8989
"""
9090
Mirror to MYSQL_ROWS struct in mysql.h
9191
"""
92-
immutable MYSQL_ROWS
92+
struct MYSQL_ROWS
9393
next::Ptr{MYSQL_ROWS}
9494
data::MYSQL_ROW
9595
length::Culong
@@ -98,7 +98,7 @@ end
9898
"""
9999
Mirror to MYSQL_STMT struct in mysql.h
100100
"""
101-
immutable MYSQL_STMT # This is different in mariadb header file.
101+
struct MYSQL_STMT # This is different in mariadb header file.
102102
mem_root::MEM_ROOT
103103
list::LIST
104104
mysql::Ptr{Void}
@@ -132,7 +132,7 @@ end
132132
"""
133133
The MySQL handle.
134134
"""
135-
type MySQLHandle
135+
mutable struct MySQLHandle
136136
mysqlptr::Ptr{Void}
137137
host::String
138138
user::String
@@ -153,41 +153,41 @@ DB: $(hndl.db)
153153
end
154154
end
155155

156-
type MySQLResult
156+
mutable struct MySQLResult
157157
con::MySQLHandle
158158
resptr::MYSQL_RES
159159
function MySQLResult(hndl, resptr)
160160
res = new(hndl, C_NULL)
161161
res.resptr = resptr
162-
finalizer(res, x -> mysql_free_result(x.resptr))
162+
finalizer(x -> mysql_free_result(x.resptr), res)
163163
return res
164164
end
165165
end
166166

167167
"""
168168
Iterator for the mysql result.
169169
"""
170-
type MySQLRowIterator
170+
mutable struct MySQLRowIterator{T}
171171
result::MySQLResult
172-
jtypes::Vector{Type}
173-
is_nullables::Vector{Bool}
172+
# jtypes::Vector{Type}
173+
# is_nullables::Vector{Bool}
174174
rowsleft::Int64
175175
end
176176

177177
"""
178178
Iterator for prepared statement results.
179179
"""
180-
type MySQLStatementIterator
180+
mutable struct MySQLStatementIterator
181181
hndl::MySQLHandle
182182
jtypes::Vector{Type}
183183
is_nullables::Vector{Bool}
184184
binding::Vector{MYSQL_BIND}
185185
end
186186

187-
@compat abstract type MySQLError end
187+
abstract type MySQLError end
188188

189189
# For errors that happen in the MySQL C connector
190-
type MySQLInternalError <: MySQLError
190+
mutable struct MySQLInternalError <: MySQLError
191191
con::Ptr{Void}
192192

193193
function MySQLInternalError(con::MySQLHandle)
@@ -202,7 +202,7 @@ end
202202
Base.showerror(io::IO, e::MySQLInternalError) = print(io, unsafe_string(mysql_error(e.con)))
203203

204204
# Internal errors that happen when using prepared statements
205-
type MySQLStatementError <: MySQLError
205+
mutable struct MySQLStatementError <: MySQLError
206206
stmt::Ptr{MYSQL_STMT}
207207

208208
function MySQLStatementError(hndl::MySQLHandle)
@@ -218,13 +218,13 @@ Base.showerror(io::IO, e::MySQLStatementError) =
218218
print(io, unsafe_string(mysql_stmt_error(e.stmt)))
219219

220220
# For errors that happen in MySQL.jl
221-
type MySQLInterfaceError <: MySQLError
221+
mutable struct MySQLInterfaceError <: MySQLError
222222
msg::String
223223
end
224224

225225
Base.showerror(io::IO, e::MySQLInterfaceError) = print(io, e.msg)
226226

227-
type MySQLMetadata
227+
mutable struct MySQLMetadata
228228
names::Vector{String}
229229
mtypes::Vector{MYSQL_TYPE}
230230
jtypes::Vector{Type}

0 commit comments

Comments
 (0)