1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
// Copyright 2012 Jonas mg
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package file
import (
"bufio"
"bytes"
"io"
"io/ioutil"
"os"
"regexp"
)
// editDefault represents the vaues by default to set in type edit.
type editDefault struct {
CommentChar string // character used in comments
//DoBackup bool // do backup before of edit?
}
// Values by default for type edit.
var _editDefault = editDefault{"#"}
// edit represents the file to edit.
type edit struct {
editDefault
file *os.File
buf *bufio.ReadWriter
}
type Replacer struct {
Search, Replace string
}
type ReplacerAtLine struct {
Line, Search, Replace string
}
// NewEdit opens a file to edit; it is created a backup.
func NewEdit(filename string) (*edit, error) {
if err := Backup(filename); err != nil {
return nil, err
}
file, err := os.OpenFile(filename, os.O_RDWR, 0666)
if err != nil {
return nil, err
}
return &edit{
_editDefault,
file,
bufio.NewReadWriter(bufio.NewReader(file), bufio.NewWriter(file)),
}, nil
}
// Append writes len(b) bytes at the end of the File. It returns an error, if any.
func (e *edit) Append(b []byte) error {
_, err := e.file.Seek(0, io.SeekEnd)
if err != nil {
return err
}
_, err = e.file.Write(b)
return err
}
// AppendString is like Append, but writes the contents of string s rather than
// an array of bytes.
func (e *edit) AppendString(s string) error {
return e.Append([]byte(s))
}
// Close closes the file.
func (e *edit) Close() error {
return e.file.Close()
}
// Comment inserts the comment character in lines that mach any regular expression
// in reLine.
func (e *edit) Comment(reLine []string) error {
allReSearch := make([]*regexp.Regexp, len(reLine))
for i, v := range reLine {
if re, err := regexp.Compile(v); err != nil {
return err
} else {
allReSearch[i] = re
}
}
if _, err := e.file.Seek(0, io.SeekStart); err != nil {
return err
}
char := []byte(e.CommentChar + " ")
isNew := false
buf := new(bytes.Buffer)
// Check every line.
for {
line, err := e.buf.ReadBytes('\n')
if err == io.EOF {
break
}
for _, v := range allReSearch {
if v.Match(line) {
line = append(char, line...)
if !isNew {
isNew = true
}
break
}
}
if _, err = buf.Write(line); err != nil {
return err
}
}
if isNew {
return e.rewrite(buf.Bytes())
}
return nil
}
// CommentOut removes the comment character of lines that mach any regular expression
// in reLine.
func (e *edit) CommentOut(reLine []string) error {
allSearch := make([]ReplacerAtLine, len(reLine))
for i, v := range reLine {
allSearch[i] = ReplacerAtLine{
v,
"[[:space:]]*" + e.CommentChar + "[[:space:]]*",
"",
}
}
return e.ReplaceAtLineN(allSearch, 1)
}
/*// Insert writes len(b) bytes at the start of the File. It returns an error, if any.
func (e *edit) Insert(b []byte) error {
return e.rewrite(b)
}
// InsertString is like Insert, but writes the contents of string s rather than
// an array of bytes.
func (e *edit) InsertString(s string) error {
return e.rewrite([]byte(s))
}*/
// Replace replaces all regular expressions mathed in r.
func (e *edit) Replace(r []Replacer) error {
return e.genReplace(r, -1)
}
// ReplaceN replaces regular expressions mathed in r. The count determines the
// number to match:
// n > 0: at most n matches
// n == 0: the result is none
// n < 0: all matches
func (e *edit) ReplaceN(r []Replacer, n int) error {
return e.genReplace(r, n)
}
// ReplaceAtLine replaces all regular expressions mathed in r, if the line is
// matched at the first.
func (e *edit) ReplaceAtLine(r []ReplacerAtLine) error {
return e.genReplaceAtLine(r, -1)
}
// ReplaceAtLine replaces regular expressions mathed in r, if the line is
// matched at the first. The count determines the
// number to match:
// n > 0: at most n matches
// n == 0: the result is none
// n < 0: all matches
func (e *edit) ReplaceAtLineN(r []ReplacerAtLine, n int) error {
return e.genReplaceAtLine(r, n)
}
// Generic Replace: replaces a number of regular expressions matched in r.
func (e *edit) genReplace(r []Replacer, n int) error {
if n == 0 {
return nil
}
if _, err := e.file.Seek(0, io.SeekStart); err != nil {
return err
}
content, err := ioutil.ReadAll(e.buf)
if err != nil {
return err
}
isNew := false
for _, v := range r {
reSearch, err := regexp.Compile(v.Search)
if err != nil {
return err
}
i := n
repl := []byte(v.Replace)
content = reSearch.ReplaceAllFunc(content, func(s []byte) []byte {
if !isNew {
isNew = true
}
if i != 0 {
i--
return repl
}
return s
})
}
if isNew {
return e.rewrite(content)
}
return nil
}
// Generic ReplaceAtLine: replaces a number of regular expressions matched in r,
// if the line is matched at the first.
func (e *edit) genReplaceAtLine(r []ReplacerAtLine, n int) error {
if n == 0 {
return nil
}
if _, err := e.file.Seek(0, io.SeekStart); err != nil {
return err
}
// == Cache the regular expressions
allReLine := make([]*regexp.Regexp, len(r))
allReSearch := make([]*regexp.Regexp, len(r))
allRepl := make([][]byte, len(r))
for i, v := range r {
if reLine, err := regexp.Compile(v.Line); err != nil {
return err
} else {
allReLine[i] = reLine
}
if reSearch, err := regexp.Compile(v.Search); err != nil {
return err
} else {
allReSearch[i] = reSearch
}
allRepl[i] = []byte(v.Replace)
}
buf := new(bytes.Buffer)
isNew := false
// Replace every line, if it maches
for {
line, err := e.buf.ReadBytes('\n')
if err == io.EOF {
break
}
for i, _ := range r {
if allReLine[i].Match(line) {
j := n
line = allReSearch[i].ReplaceAllFunc(line, func(s []byte) []byte {
if !isNew {
isNew = true
}
if j != 0 {
j--
return allRepl[i]
}
return s
})
}
}
if _, err = buf.Write(line); err != nil {
return err
}
}
if isNew {
return e.rewrite(buf.Bytes())
}
return nil
}
func (e *edit) rewrite(b []byte) error {
if _, err := e.file.Seek(0, io.SeekStart); err != nil {
return err
}
n, err := e.file.Write(b)
if err != nil {
return err
}
if err = e.file.Truncate(int64(n)); err != nil {
return err
}
return nil // e.file.Sync()
}
// * * *
// Append writes len(b) bytes at the end of the named file. It returns an
// error, if any. The file is backed up.
func Append(filename string, b []byte) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.Append(b)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
// AppendString is like Append, but writes the contents of string s rather than
// an array of bytes.
func AppendString(filename, s string) error {
return Append(filename, []byte(s))
}
// Comment inserts the comment character in lines that mach the regular expression
// in reLine, in the named file.
func Comment(filename, reLine string) error {
return CommentM(filename, []string{reLine})
}
// CommentM inserts the comment character in lines that mach any regular expression
// in reLine, in the named file.
func CommentM(filename string, reLine []string) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.Comment(reLine)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
// CommentOut removes the comment character of lines that mach the regular expression
// in reLine, in the named file.
func CommentOut(filename, reLine string) error {
return CommentOutM(filename, []string{reLine})
}
// CommentOutM removes the comment character of lines that mach any regular expression
// in reLine, in the named file.
func CommentOutM(filename string, reLine []string) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.CommentOut(reLine)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
/*// Insert writes len(b) bytes at the start of the named file. It returns an
// error, if any. The file is backed up.
func Insert(filename string, b []byte) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.Insert(b)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
// InsertString is like Insert, but writes the contents of string s rather than
// an array of bytes.
func InsertString(filename, s string) error {
return Insert(filename, []byte(s))
}*/
// Replace replaces all regular expressions mathed in r for the named file.
func Replace(filename string, r []Replacer) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.genReplace(r, -1)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
// ReplaceN replaces a number of regular expressions mathed in r for the named
// file.
func ReplaceN(filename string, r []Replacer, n int) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.genReplace(r, n)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
// ReplaceAtLine replaces all regular expressions mathed in r for the named
// file, if the line is matched at the first.
func ReplaceAtLine(filename string, r []ReplacerAtLine) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.genReplaceAtLine(r, -1)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
// ReplaceAtLineN replaces a number of regular expressions mathed in r for the
// named file, if the line is matched at the first.
func ReplaceAtLineN(filename string, r []ReplacerAtLine, n int) error {
e, err := NewEdit(filename)
if err != nil {
return err
}
err = e.genReplaceAtLine(r, n)
err2 := e.Close()
if err != nil {
return err
}
return err2
}
|