cell.go 7.2 KB
Newer Older
xurime's avatar
xurime 已提交
1 2 3 4 5 6 7 8
package excelize

import (
	"encoding/xml"
	"strconv"
	"strings"
)

xurime's avatar
xurime 已提交
9 10 11
// mergeCellsParser provides function to check merged cells in worksheet by
// given axis.
func (f *File) mergeCellsParser(xlsx *xlsxWorksheet, axis string) {
12 13 14 15 16 17 18
	if xlsx.MergeCells != nil {
		for i := 0; i < len(xlsx.MergeCells.Cells); i++ {
			if checkCellInArea(axis, xlsx.MergeCells.Cells[i].Ref) {
				axis = strings.Split(xlsx.MergeCells.Cells[i].Ref, ":")[0]
			}
		}
	}
xurime's avatar
xurime 已提交
19 20 21 22 23 24 25 26 27 28
}

// GetCellValue provides function to get formatted value from cell by given
// sheet index and axis in XLSX file. If it is possible to apply a format to the
// cell value, it will do so, if not then an error will be returned, along with
// the raw value of the cell.
func (f *File) GetCellValue(sheet, axis string) string {
	xlsx := f.workSheetReader(sheet)
	axis = strings.ToUpper(axis)
	f.mergeCellsParser(xlsx, axis)
29 30
	row, _ := strconv.Atoi(strings.Map(intOnlyMapF, axis))
	xAxis := row - 1
xurime's avatar
xurime 已提交
31
	rows := len(xlsx.SheetData.Row)
xurime's avatar
xurime 已提交
32 33 34 35 36 37
	if rows > 1 {
		lastRow := xlsx.SheetData.Row[rows-1].R
		if lastRow >= rows {
			rows = lastRow
		}
	}
38
	if rows < xAxis {
39
		return ""
xurime's avatar
xurime 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53
	}
	for _, v := range xlsx.SheetData.Row {
		if v.R != row {
			continue
		}
		for _, r := range v.C {
			if axis != r.R {
				continue
			}
			switch r.T {
			case "s":
				shardStrings := xlsxSST{}
				xlsxSI := 0
				xlsxSI, _ = strconv.Atoi(r.V)
54
				xml.Unmarshal([]byte(f.readXML("xl/sharedStrings.xml")), &shardStrings)
55
				return f.formattedValue(r.S, shardStrings.SI[xlsxSI].T)
xurime's avatar
xurime 已提交
56
			case "str":
57
				return f.formattedValue(r.S, r.V)
xurime's avatar
xurime 已提交
58
			default:
59
				return f.formattedValue(r.S, r.V)
xurime's avatar
xurime 已提交
60 61 62
			}
		}
	}
63
	return ""
xurime's avatar
xurime 已提交
64 65
}

66 67 68 69 70 71 72
// formattedValue provides function to returns a value after formatted. If it is
// possible to apply a format to the cell value, it will do so, if not then an
// error will be returned, along with the raw value of the cell.
func (f *File) formattedValue(s int, v string) string {
	if s == 0 {
		return v
	}
73
	styleSheet := f.stylesReader()
74 75 76 77 78
	ok := builtInNumFmtFunc[styleSheet.CellXfs.Xf[s].NumFmtID]
	if ok != nil {
		return ok(styleSheet.CellXfs.Xf[s].NumFmtID, v)
	}
	return v
79 80
}

81 82
// GetCellFormula provides function to get formula from cell by given sheet
// index and axis in XLSX file.
83
func (f *File) GetCellFormula(sheet, axis string) string {
xurime's avatar
xurime 已提交
84
	xlsx := f.workSheetReader(sheet)
xurime's avatar
xurime 已提交
85
	axis = strings.ToUpper(axis)
xurime's avatar
xurime 已提交
86
	f.mergeCellsParser(xlsx, axis)
87 88
	row, _ := strconv.Atoi(strings.Map(intOnlyMapF, axis))
	xAxis := row - 1
xurime's avatar
xurime 已提交
89 90 91 92 93 94 95
	rows := len(xlsx.SheetData.Row)
	if rows > 1 {
		lastRow := xlsx.SheetData.Row[rows-1].R
		if lastRow >= rows {
			rows = lastRow
		}
	}
96
	if rows < xAxis {
97
		return ""
xurime's avatar
xurime 已提交
98
	}
xurime's avatar
xurime 已提交
99 100 101 102 103 104 105 106 107 108
	for _, v := range xlsx.SheetData.Row {
		if v.R != row {
			continue
		}
		for _, f := range v.C {
			if axis != f.R {
				continue
			}
			if f.F != nil {
				return f.F.Content
xurime's avatar
xurime 已提交
109 110 111
			}
		}
	}
112
	return ""
xurime's avatar
xurime 已提交
113
}
114 115 116 117

// SetCellFormula provides function to set cell formula by given string and
// sheet index.
func (f *File) SetCellFormula(sheet, axis, formula string) {
xurime's avatar
xurime 已提交
118
	xlsx := f.workSheetReader(sheet)
119
	axis = strings.ToUpper(axis)
xurime's avatar
xurime 已提交
120
	f.mergeCellsParser(xlsx, axis)
121 122 123
	col := string(strings.Map(letterOnlyMapF, axis))
	row, _ := strconv.Atoi(strings.Map(intOnlyMapF, axis))
	xAxis := row - 1
124
	yAxis := TitleToNumber(col)
125 126 127 128

	rows := xAxis + 1
	cell := yAxis + 1

xurime's avatar
xurime 已提交
129 130
	completeRow(xlsx, rows, cell)
	completeCol(xlsx, rows, cell)
131 132 133 134 135 136 137 138 139 140

	if xlsx.SheetData.Row[xAxis].C[yAxis].F != nil {
		xlsx.SheetData.Row[xAxis].C[yAxis].F.Content = formula
	} else {
		f := xlsxF{
			Content: formula,
		}
		xlsx.SheetData.Row[xAxis].C[yAxis].F = &f
	}
}
141 142 143 144

// SetCellHyperLink provides function to set cell hyperlink by given sheet index
// and link URL address. Only support external link currently.
func (f *File) SetCellHyperLink(sheet, axis, link string) {
xurime's avatar
xurime 已提交
145
	xlsx := f.workSheetReader(sheet)
146
	axis = strings.ToUpper(axis)
xurime's avatar
xurime 已提交
147
	f.mergeCellsParser(xlsx, axis)
148 149 150 151 152 153 154 155 156 157 158 159 160
	rID := f.addSheetRelationships(sheet, SourceRelationshipHyperLink, link, "External")
	hyperlink := xlsxHyperlink{
		Ref: axis,
		RID: "rId" + strconv.Itoa(rID),
	}
	if xlsx.Hyperlinks != nil {
		xlsx.Hyperlinks.Hyperlink = append(xlsx.Hyperlinks.Hyperlink, hyperlink)
	} else {
		hyperlinks := xlsxHyperlinks{}
		hyperlinks.Hyperlink = append(hyperlinks.Hyperlink, hyperlink)
		xlsx.Hyperlinks = &hyperlinks
	}
}
xurime's avatar
xurime 已提交
161

162 163
// MergeCell provides function to merge cells by given coordinate area and sheet
// name. For example create a merged cell of D3:E9 on Sheet1:
xurime's avatar
xurime 已提交
164
//
165
//    xlsx.MergeCell("sheet1", "D3", "E9")
xurime's avatar
xurime 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
//
// If you create a merged cell that overlaps with another existing merged cell,
// those merged cells that already exist will be removed.
func (f *File) MergeCell(sheet, hcell, vcell string) {
	if hcell == vcell {
		return
	}

	hcell = strings.ToUpper(hcell)
	vcell = strings.ToUpper(vcell)

	// Coordinate conversion, convert C1:B3 to 2,0,1,2.
	hcol := string(strings.Map(letterOnlyMapF, hcell))
	hrow, _ := strconv.Atoi(strings.Map(intOnlyMapF, hcell))
	hyAxis := hrow - 1
181
	hxAxis := TitleToNumber(hcol)
xurime's avatar
xurime 已提交
182 183 184 185

	vcol := string(strings.Map(letterOnlyMapF, vcell))
	vrow, _ := strconv.Atoi(strings.Map(intOnlyMapF, vcell))
	vyAxis := vrow - 1
186
	vxAxis := TitleToNumber(vcol)
xurime's avatar
xurime 已提交
187 188 189 190 191 192 193 194 195 196 197

	if vxAxis < hxAxis {
		hcell, vcell = vcell, hcell
		vxAxis, hxAxis = hxAxis, vxAxis
	}

	if vyAxis < hyAxis {
		hcell, vcell = vcell, hcell
		vyAxis, hyAxis = hyAxis, vyAxis
	}

xurime's avatar
xurime 已提交
198
	xlsx := f.workSheetReader(sheet)
xurime's avatar
xurime 已提交
199 200 201
	if xlsx.MergeCells != nil {
		mergeCell := xlsxMergeCell{}
		// Correct the coordinate area, such correct C1:B3 to B1:C3.
202
		mergeCell.Ref = ToAlphaString(hxAxis) + strconv.Itoa(hyAxis+1) + ":" + ToAlphaString(vxAxis) + strconv.Itoa(vyAxis+1)
xurime's avatar
xurime 已提交
203 204 205 206 207 208 209 210 211 212 213 214
		// Delete the merged cells of the overlapping area.
		for i := 0; i < len(xlsx.MergeCells.Cells); i++ {
			if checkCellInArea(hcell, xlsx.MergeCells.Cells[i].Ref) || checkCellInArea(strings.Split(xlsx.MergeCells.Cells[i].Ref, ":")[0], mergeCell.Ref) {
				xlsx.MergeCells.Cells = append(xlsx.MergeCells.Cells[:i], xlsx.MergeCells.Cells[i+1:]...)
			} else if checkCellInArea(vcell, xlsx.MergeCells.Cells[i].Ref) || checkCellInArea(strings.Split(xlsx.MergeCells.Cells[i].Ref, ":")[1], mergeCell.Ref) {
				xlsx.MergeCells.Cells = append(xlsx.MergeCells.Cells[:i], xlsx.MergeCells.Cells[i+1:]...)
			}
		}
		xlsx.MergeCells.Cells = append(xlsx.MergeCells.Cells, &mergeCell)
	} else {
		mergeCell := xlsxMergeCell{}
		// Correct the coordinate area, such correct C1:B3 to B1:C3.
215
		mergeCell.Ref = ToAlphaString(hxAxis) + strconv.Itoa(hyAxis+1) + ":" + ToAlphaString(vxAxis) + strconv.Itoa(vyAxis+1)
xurime's avatar
xurime 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229
		mergeCells := xlsxMergeCells{}
		mergeCells.Cells = append(mergeCells.Cells, &mergeCell)
		xlsx.MergeCells = &mergeCells
	}
}

// checkCellInArea provides function to determine if a given coordinate is
// within an area.
func checkCellInArea(cell, area string) bool {
	result := false
	cell = strings.ToUpper(cell)
	col := string(strings.Map(letterOnlyMapF, cell))
	row, _ := strconv.Atoi(strings.Map(intOnlyMapF, cell))
	xAxis := row - 1
230
	yAxis := TitleToNumber(col)
xurime's avatar
xurime 已提交
231 232 233 234 235

	ref := strings.Split(area, ":")
	hCol := string(strings.Map(letterOnlyMapF, ref[0]))
	hRow, _ := strconv.Atoi(strings.Map(intOnlyMapF, ref[0]))
	hyAxis := hRow - 1
236
	hxAxis := TitleToNumber(hCol)
xurime's avatar
xurime 已提交
237 238 239 240

	vCol := string(strings.Map(letterOnlyMapF, ref[1]))
	vRow, _ := strconv.Atoi(strings.Map(intOnlyMapF, ref[1]))
	vyAxis := vRow - 1
241
	vxAxis := TitleToNumber(vCol)
xurime's avatar
xurime 已提交
242 243 244 245 246 247 248

	if hxAxis <= yAxis && yAxis <= vxAxis && hyAxis <= xAxis && xAxis <= vyAxis {
		result = true
	}

	return result
}