Skip to content

Commit c56a415

Browse files
committed
Use lodash.create instead of underscore.clone
1 parent 0d9bce7 commit c56a415

15 files changed

+80
-45
lines changed

src/XMLAttribute.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ module.exports = class XMLAttribute
2121
@value = @stringify.attValue value
2222

2323

24+
# Creates and returns a deep clone of `this`
25+
clone: () ->
26+
_.create XMLAttribute.prototype, @
27+
28+
2429
# Converts the XML fragment to string
2530
#
2631
# `options.pretty` pretty prints the result

src/XMLCData.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ module.exports = class XMLCData extends XMLNode
1818
@text = @stringify.cdata text
1919

2020

21+
# Creates and returns a deep clone of `this`
22+
clone: () ->
23+
_.create XMLCData.prototype, @
24+
25+
2126
# Converts the XML fragment to string
2227
#
2328
# `options.pretty` pretty prints the result

src/XMLComment.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ module.exports = class XMLComment extends XMLNode
1818
@text = @stringify.comment text
1919

2020

21+
# Creates and returns a deep clone of `this`
22+
clone: () ->
23+
_.create XMLComment.prototype, @
24+
25+
2126
# Converts the XML fragment to string
2227
#
2328
# `options.pretty` pretty prints the result

src/XMLDTDAttList.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ module.exports = class XMLDTDAttList
3939
@defaultValueType = defaultValueType
4040

4141

42+
# Creates and returns a deep clone of `this`
43+
clone: () ->
44+
_.create XMLDTDAttList.prototype, @
45+
46+
4247
# Converts the XML fragment to string
4348
#
4449
# `options.pretty` pretty prints the result

src/XMLDTDElement.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ module.exports = class XMLDTDElement
2323
@value = @stringify.dtdElementValue value
2424

2525

26+
# Creates and returns a deep clone of `this`
27+
clone: () ->
28+
_.create XMLDTDElement.prototype, @
29+
30+
2631
# Converts the XML fragment to string
2732
#
2833
# `options.pretty` pretty prints the result

src/XMLDTDEntity.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ module.exports = class XMLDTDEntity
4141
throw new Error "Notation declaration is not allowed in a parameter entity"
4242

4343

44+
# Creates and returns a deep clone of `this`
45+
clone: () ->
46+
_.create XMLDTDEntity.prototype, @
47+
48+
4449
# Converts the XML fragment to string
4550
#
4651
# `options.pretty` pretty prints the result

src/XMLDTDNotation.coffee

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ module.exports = class XMLDTDNotation
2323
@pubID = @stringify.dtdPubID value.pubID if value.pubID?
2424
@sysID = @stringify.dtdSysID value.sysID if value.sysID?
2525

26+
27+
# Creates and returns a deep clone of `this`
28+
clone: () ->
29+
_.create XMLDTDNotation.prototype, @
30+
31+
2632
# Converts the XML fragment to string
2733
#
2834
# `options.pretty` pretty prints the result

src/XMLDeclaration.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ module.exports = class XMLDeclaration extends XMLNode
3232
@standalone = @stringify.xmlStandalone standalone
3333

3434

35+
# Creates and returns a deep clone of `this`
36+
clone: () ->
37+
_.create XMLDeclaration.prototype, @
38+
39+
3540
# Converts to string
3641
#
3742
# `options.pretty` pretty prints the result

src/XMLDocType.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ module.exports = class XMLDocType
2727
@sysID = @stringify.dtdSysID sysID if sysID?
2828

2929

30+
# Creates and returns a deep clone of `this`
31+
clone: () ->
32+
_.create XMLDocType.prototype, @
33+
34+
3035
# Creates an element type declaration
3136
#
3237
# `name` element name

src/XMLElement.coffee

+10-13
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,27 @@ module.exports = class XMLElement extends XMLNode
2727
@attribute attributes if attributes?
2828

2929

30-
# Clones self
30+
# Creates and returns a deep clone of `this`
3131
#
32-
# `deep` true to clone child nodes as well
33-
clone: (deep) ->
34-
# shallow copy
35-
clonedSelf = _.clone @
32+
clone: () ->
33+
clonedSelf = _.create XMLElement.prototype, @
3634

3735
# clone attributes
3836
clonedSelf.attributes = {}
3937
for own attName, att of @attributes
40-
clonedSelf.attributes[attName] = _.clone att
38+
clonedSelf.attributes[attName] = att.clone()
4139

4240
# clone processing instructions
4341
clonedSelf.instructions = []
4442
for pi in @instructions
45-
clonedSelf.instructions.push _.clone pi
43+
clonedSelf.instructions.push pi.clone()
4644

47-
clonedSelf.children = []
4845
# clone child nodes
49-
if deep
50-
@children.forEach (child) ->
51-
clonedChild = child.clone(deep)
52-
clonedChild.parent = clonedSelf
53-
clonedSelf.children.push clonedChild
46+
clonedSelf.children = []
47+
@children.forEach (child) ->
48+
clonedChild = child.clone()
49+
clonedChild.parent = clonedSelf
50+
clonedSelf.children.push clonedChild
5451

5552
return clonedSelf
5653

src/XMLNode.coffee

+7-9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ module.exports = class XMLNode
1212
@stringify = @parent.stringify
1313

1414

15+
# Creates and returns a deep clone of `this`
16+
clone: () ->
17+
throw new Error "Cannot clone generic XMLNode"
18+
19+
1520
# Creates a child element node
1621
#
1722
# `name` node name or an object describing the XML tree
@@ -277,20 +282,13 @@ module.exports = class XMLNode
277282
#
278283
# `xmlbuilder` the instance of XMLBuilder to insert nodes from
279284
importXMLBuilder: (xmlbuilder) ->
280-
clonedRoot = xmlbuilder.root().clone(true)
285+
clonedRoot = xmlbuilder.root().clone()
281286
clonedRoot.parent = @
282-
@children.push clonedRoot
283287
clonedRoot.isRoot = false
288+
@children.push clonedRoot
284289
return @
285290

286291

287-
# Clones self
288-
#
289-
# `deep` true to clone child nodes as well
290-
clone: (deep) ->
291-
_.clone @
292-
293-
294292
# Aliases
295293
ele: (name, attributes, text) -> @element name, attributes, text
296294
nod: (name, attributes, text) -> @node name, attributes, text

src/XMLProcessingInstruction.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ module.exports = class XMLProcessingInstruction
1919
@value = @stringify.insValue value if value
2020

2121

22+
# Creates and returns a deep clone of `this`
23+
clone: () ->
24+
_.create XMLProcessingInstruction.prototype, @
25+
26+
2227
# Converts the XML fragment to string
2328
#
2429
# `options.pretty` pretty prints the result

src/XMLRaw.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ module.exports = class XMLRaw extends XMLNode
1818
@value = @stringify.raw text
1919

2020

21+
# Creates and returns a deep clone of `this`
22+
clone: () ->
23+
_.create XMLRaw.prototype, @
24+
25+
2126
# Converts the XML fragment to string
2227
#
2328
# `options.pretty` pretty prints the result

src/XMLText.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ module.exports = class XMLText extends XMLNode
1818
@value = @stringify.eleText text
1919

2020

21+
# Creates and returns a deep clone of `this`
22+
clone: () ->
23+
_.create XMLText.prototype, @
24+
25+
2126
# Converts the XML fragment to string
2227
#
2328
# `options.pretty` pretty prints the result

test/clone.coffee

+2-23
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,7 @@ xmlbuilder = require '../src/index.coffee'
66
vows
77
.describe('Clone')
88
.addBatch
9-
'Test the clone() method (not deep clone)':
10-
topic: () ->
11-
test = xmlbuilder.create('test11', {}, {}, { headless: true})
12-
.att('att', 'val')
13-
.ele('nodes')
14-
.ele('node', '1')
15-
.root()
16-
17-
testcloned = test.root().clone()
18-
testcloned.ele('added', '3')
19-
20-
{ original: test, cloned: testcloned }
21-
22-
'resulting XML':
23-
'original should remain unchanged': (topic) ->
24-
xml = '<test11 att="val"><nodes><node>1</node></nodes></test11>'
25-
assert.strictEqual topic.original.doc().toString(), xml
26-
'cloned should contain added node only': (topic) ->
27-
xml = '<test11 att="val"><added>3</added></test11>'
28-
assert.strictEqual topic.cloned.toString(), xml
29-
30-
'Test the clone() method (deep clone)':
9+
'Test the clone() method':
3110
topic: () ->
3211
test = xmlbuilder.create('test11', {}, {}, { headless: true})
3312
.att('att', 'val')
@@ -37,7 +16,7 @@ vows
3716
.att('att2', 'val2')
3817
.root()
3918

40-
testcloned = test.root().clone(true)
19+
testcloned = test.root().clone()
4120
testcloned.ele('added', '3')
4221

4322
{ original: test, cloned: testcloned }

0 commit comments

Comments
 (0)