Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Eugene Shen
jio
Commits
3dcd4338
Commit
3dcd4338
authored
11 years ago
by
Tristan Cavelier
Browse files
Options
Download
Email Patches
Plain Diff
jio updated to support recent labraries
parent
9af06b64
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
136 additions
and
139 deletions
+136
-139
jio.js
jio.js
+58
-61
src/jio/intro.js
src/jio/intro.js
+6
-2
src/jio/jioNamespace.js
src/jio/jioNamespace.js
+52
-59
src/jio/outro.js
src/jio/outro.js
+1
-1
test/jio/tests.js
test/jio/tests.js
+19
-16
No files found.
jio.js
View file @
3dcd4338
...
...
@@ -10,8 +10,12 @@
if
(
typeof
define
===
'
function
'
&&
define
.
amd
)
{
return
define
(
dependencies
,
module
);
}
window
.
jIO
=
module
({
hex_md5
:
hex_md5
});
}([
'
md5
'
],
function
(
md5
)
{
if
(
typeof
exports
===
'
object
'
)
{
return
module
(
exports
,
require
(
'
md5
'
));
}
window
.
jIO
=
{};
module
(
window
.
jIO
,
{
hex_md5
:
hex_md5
});
}([
'
exports
'
,
'
md5
'
],
function
(
exports
,
md5
)
{
"
use strict
"
;
var
localstorage
,
hex_md5
=
md5
.
hex_md5
;
...
...
@@ -2782,72 +2786,65 @@ Object.defineProperty(that, "repair", {
return
that
;
};
// End Class jio
/*jslint indent: 2, maxlen: 80, sloppy: true */
/*global jio: true, invalidStorageType: true */
/*global exports, jio, invalidStorageType */
var
storage_type_object
=
{
// -> 'key':constructorFunction
'
base
'
:
function
()
{}
// overriden by jio
'
base
'
:
function
()
{
// overriden by jio
return
undefined
;
}
};
var
jioNamespace
=
(
function
(
spec
)
{
var
that
=
{};
spec
=
spec
||
{};
// Attributes //
// Methods //
/**
* Creates a new jio instance.
* @method newJio
* @param {object} spec The storage description
* @return {object} The new Jio instance.
*/
Object
.
defineProperty
(
that
,
"
newJio
"
,
{
configurable
:
false
,
enumerable
:
false
,
writable
:
false
,
value
:
function
(
spec
)
{
var
storage
=
spec
,
instance
=
null
;
if
(
typeof
storage
===
'
string
'
)
{
/**
* Creates a new jio instance.
* @method newJio
* @param {object} spec The storage description
* @return {object} The new Jio instance.
*/
Object
.
defineProperty
(
exports
,
"
newJio
"
,
{
configurable
:
false
,
enumerable
:
true
,
writable
:
false
,
value
:
function
(
spec
)
{
var
storage
=
spec
,
instance
=
null
;
if
(
typeof
storage
===
'
string
'
)
{
storage
=
JSON
.
parse
(
storage
);
}
else
{
storage
=
JSON
.
stringify
(
storage
);
if
(
storage
!==
undefined
)
{
storage
=
JSON
.
parse
(
storage
);
}
else
{
storage
=
JSON
.
stringify
(
storage
);
if
(
storage
!==
undefined
)
{
storage
=
JSON
.
parse
(
storage
);
}
}
storage
=
storage
||
{
type
:
'
base
'
};
instance
=
jio
(
storage
);
instance
.
start
();
return
instance
;
}
});
storage
=
storage
||
{
type
:
'
base
'
};
instance
=
jio
(
storage
);
instance
.
start
();
return
instance
;
}
});
/**
* Add a storage type to jio.
* @method addStorageType
* @param {string} type The storage type
* @param {function} constructor The associated constructor
*/
Object
.
defineProperty
(
that
,
"
addStorageType
"
,
{
configurable
:
false
,
enumerable
:
false
,
writable
:
false
,
value
:
function
(
type
,
constructor
)
{
constructor
=
constructor
||
function
()
{
return
null
;
};
if
(
storage_type_object
[
type
])
{
throw
invalidStorageType
({
type
:
type
,
message
:
'
Already known.
'
});
}
storage_type_object
[
type
]
=
constructor
;
/**
* Add a storage type to jio.
* @method addStorageType
* @param {string} type The storage type
* @param {function} constructor The associated constructor
*/
Object
.
defineProperty
(
exports
,
"
addStorageType
"
,
{
configurable
:
false
,
enumerable
:
true
,
writable
:
false
,
value
:
function
(
type
,
constructor
)
{
constructor
=
constructor
||
function
()
{
return
null
;
};
if
(
storage_type_object
[
type
])
{
throw
invalidStorageType
({
type
:
type
,
message
:
'
Already known.
'
});
}
});
storage_type_object
[
type
]
=
constructor
;
}
});
return
that
;
}());
return
jioNamespace
;
}));
This diff is collapsed.
Click to expand it.
src/jio/intro.js
View file @
3dcd4338
...
...
@@ -10,8 +10,12 @@
if
(
typeof
define
===
'
function
'
&&
define
.
amd
)
{
return
define
(
dependencies
,
module
);
}
window
.
jIO
=
module
({
hex_md5
:
hex_md5
});
}([
'
md5
'
],
function
(
md5
)
{
if
(
typeof
exports
===
'
object
'
)
{
return
module
(
exports
,
require
(
'
md5
'
));
}
window
.
jIO
=
{};
module
(
window
.
jIO
,
{
hex_md5
:
hex_md5
});
}([
'
exports
'
,
'
md5
'
],
function
(
exports
,
md5
)
{
"
use strict
"
;
var
localstorage
,
hex_md5
=
md5
.
hex_md5
;
...
...
This diff is collapsed.
Click to expand it.
src/jio/jioNamespace.js
View file @
3dcd4338
/*jslint indent: 2, maxlen: 80, sloppy: true */
/*global jio: true, invalidStorageType: true */
/*global exports, jio, invalidStorageType */
var
storage_type_object
=
{
// -> 'key':constructorFunction
'
base
'
:
function
()
{}
// overriden by jio
'
base
'
:
function
()
{
// overriden by jio
return
undefined
;
}
};
var
jioNamespace
=
(
function
(
spec
)
{
var
that
=
{};
spec
=
spec
||
{};
// Attributes //
// Methods //
/**
* Creates a new jio instance.
* @method newJio
* @param {object} spec The storage description
* @return {object} The new Jio instance.
*/
Object
.
defineProperty
(
that
,
"
newJio
"
,
{
configurable
:
false
,
enumerable
:
false
,
writable
:
false
,
value
:
function
(
spec
)
{
var
storage
=
spec
,
instance
=
null
;
if
(
typeof
storage
===
'
string
'
)
{
/**
* Creates a new jio instance.
* @method newJio
* @param {object} spec The storage description
* @return {object} The new Jio instance.
*/
Object
.
defineProperty
(
exports
,
"
newJio
"
,
{
configurable
:
false
,
enumerable
:
true
,
writable
:
false
,
value
:
function
(
spec
)
{
var
storage
=
spec
,
instance
=
null
;
if
(
typeof
storage
===
'
string
'
)
{
storage
=
JSON
.
parse
(
storage
);
}
else
{
storage
=
JSON
.
stringify
(
storage
);
if
(
storage
!==
undefined
)
{
storage
=
JSON
.
parse
(
storage
);
}
else
{
storage
=
JSON
.
stringify
(
storage
);
if
(
storage
!==
undefined
)
{
storage
=
JSON
.
parse
(
storage
);
}
}
storage
=
storage
||
{
type
:
'
base
'
};
instance
=
jio
(
storage
);
instance
.
start
();
return
instance
;
}
});
storage
=
storage
||
{
type
:
'
base
'
};
instance
=
jio
(
storage
);
instance
.
start
();
return
instance
;
}
});
/**
* Add a storage type to jio.
* @method addStorageType
* @param {string} type The storage type
* @param {function} constructor The associated constructor
*/
Object
.
defineProperty
(
that
,
"
addStorageType
"
,
{
configurable
:
false
,
enumerable
:
false
,
writable
:
false
,
value
:
function
(
type
,
constructor
)
{
constructor
=
constructor
||
function
()
{
return
null
;
};
if
(
storage_type_object
[
type
])
{
throw
invalidStorageType
({
type
:
type
,
message
:
'
Already known.
'
});
}
storage_type_object
[
type
]
=
constructor
;
/**
* Add a storage type to jio.
* @method addStorageType
* @param {string} type The storage type
* @param {function} constructor The associated constructor
*/
Object
.
defineProperty
(
exports
,
"
addStorageType
"
,
{
configurable
:
false
,
enumerable
:
true
,
writable
:
false
,
value
:
function
(
type
,
constructor
)
{
constructor
=
constructor
||
function
()
{
return
null
;
};
if
(
storage_type_object
[
type
])
{
throw
invalidStorageType
({
type
:
type
,
message
:
'
Already known.
'
});
}
});
return
that
;
}());
storage_type_object
[
type
]
=
constructor
;
}
});
This diff is collapsed.
Click to expand it.
src/jio/outro.js
View file @
3dcd4338
return
jioNamespace
;
}));
This diff is collapsed.
Click to expand it.
test/jio/tests.js
View file @
3dcd4338
...
...
@@ -8,10 +8,14 @@
if
(
typeof
define
===
'
function
'
&&
define
.
amd
)
{
return
define
(
dependencies
,
module
);
}
window
.
jio_tests
=
module
(
jIO
);
}([
'
jio
'
],
function
(
jIO
)
{
if
(
typeof
exports
===
'
object
'
)
{
return
module
(
exports
,
require
(
'
jio
'
));
}
window
.
jio_tests
=
{};
module
(
window
.
jio_tests
,
jIO
);
}([
'
exports
'
,
'
jio
'
,
'
sinon_qunit
'
],
function
(
exports
,
jIO
)
{
"
use strict
"
;
var
to_export
=
{},
tmp
;
var
tmp
;
// localStorage cleanup
for
(
tmp
in
localStorage
)
{
...
...
@@ -45,7 +49,7 @@
deepEqual
(
val
,
value
,
message
);
};
}
to_
export
.
spyJioCallback
=
spyJioCallback
;
export
s
.
spyJioCallback
=
spyJioCallback
;
// XXX docstring
function
isUuid
(
uuid
)
{
...
...
@@ -58,10 +62,10 @@
x
+
"
{4}-
"
+
x
+
"
{4}-
"
+
x
+
"
{12}$
"
)
===
null
?
false
:
true
);
}
to_
export
.
isUuid
=
isUuid
;
export
s
.
isUuid
=
isUuid
;
// XXX docstring
to_
export
.
jsonlocalstorage
=
{
export
s
.
jsonlocalstorage
=
{
clear
:
function
()
{
return
localStorage
.
clear
();
},
...
...
@@ -87,13 +91,13 @@
function
closeAndcleanUpJio
(
jio
)
{
jio
.
close
();
to_
export
.
jsonlocalstorage
.
removeItem
(
"
jio/id/
"
+
jio
.
getId
());
to_
export
.
jsonlocalstorage
.
removeItem
(
"
jio/job_array/
"
+
jio
.
getId
());
export
s
.
jsonlocalstorage
.
removeItem
(
"
jio/id/
"
+
jio
.
getId
());
export
s
.
jsonlocalstorage
.
removeItem
(
"
jio/job_array/
"
+
jio
.
getId
());
}
to_
export
.
closeAndcleanUpJio
=
closeAndcleanUpJio
;
export
s
.
closeAndcleanUpJio
=
closeAndcleanUpJio
;
function
getJioLastJob
(
jio
)
{
return
(
to_
export
.
jsonlocalstorage
.
getItem
(
return
(
export
s
.
jsonlocalstorage
.
getItem
(
"
jio/job_array/
"
+
jio
.
getId
()
)
||
[
undefined
]).
pop
();
}
...
...
@@ -123,7 +127,7 @@
};
sinon
.
spy
(
o
,
function_name
);
}
to_
export
.
ospy
=
ospy
;
export
s
.
ospy
=
ospy
;
function
otick
(
o
,
a
,
b
)
{
var
tick
=
10000
,
function_name
=
'
f
'
;
...
...
@@ -143,7 +147,7 @@
}
}
}
to_
export
.
otick
=
otick
;
export
s
.
otick
=
otick
;
//////////////////////////////////////////////////////////////////////////////
// Dummy Storage
...
...
@@ -228,7 +232,7 @@
}
jIO
.
addStorageType
(
'
dummy
'
,
dummyStorage
);
to_
export
.
dummyStorage
=
dummyStorage
;
export
s
.
dummyStorage
=
dummyStorage
;
//////////////////////////////////////////////////////////////////////////////
// Tests
...
...
@@ -708,11 +712,10 @@
ok
(
getJioLastJob
(
o
.
jio
)
===
undefined
,
"
Job executed
"
);
o
.
clock
.
tick
(
1000
);
to_
export
.
jsonlocalstorage
.
removeItem
(
"
jio/id/
"
+
o
.
jio_id
);
to_
export
.
jsonlocalstorage
.
removeItem
(
"
jio/job_array/
"
+
o
.
jio_id
);
export
s
.
jsonlocalstorage
.
removeItem
(
"
jio/id/
"
+
o
.
jio_id
);
export
s
.
jsonlocalstorage
.
removeItem
(
"
jio/job_array/
"
+
o
.
jio_id
);
closeAndcleanUpJio
(
o
.
jio
);
});
return
to_export
;
}));
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment