/readdb/readdb.go

https://bitbucket.org/wilyarti/hashtree-mobile · Go · 82 lines · 56 code · 5 blank · 21 comment · 17 complexity · 22a90bb780e92af9e26ac0078aff4db1 MD5 · raw file

  1. /* Copyright <2018> <Wilyarti Howard>
  2. *
  3. * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  4. *
  5. * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  6. *
  7. * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentatio
  8. * n and/or other materials provided with the distribution.
  9. *
  10. * 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software w
  11. * ithout specific prior written permission.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  14. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  15. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  16. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
  17. * T LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SU
  18. * CH DAMAGE.
  19. */
  20. package readdb
  21. import (
  22. "bufio"
  23. "fmt"
  24. "log"
  25. "os"
  26. "regexp"
  27. "strings"
  28. )
  29. // Load reads a simple YAML file with a map structure of:
  30. // hash -> array [ filepath, filepath ]
  31. func Load(path string) (map[string][]string, error) {
  32. var hashmap = make(map[string][]string)
  33. file, err := os.Open(path)
  34. if err != nil {
  35. return hashmap, err
  36. }
  37. defer file.Close()
  38. scanner := bufio.NewScanner(file)
  39. var hash string
  40. for scanner.Scan() {
  41. matched, err := regexp.MatchString("^--- .*", scanner.Text())
  42. if err != nil {
  43. fmt.Println("Error database not comprehensible!!")
  44. return hashmap, err
  45. }
  46. if matched == true {
  47. re := regexp.MustCompile("^--- ")
  48. s := ""
  49. hash = re.ReplaceAllString(scanner.Text(), s)
  50. continue
  51. }
  52. i := strings.Compare("---", scanner.Text())
  53. if i == 0 {
  54. continue
  55. }
  56. matched, err = regexp.MatchString("^- .*", scanner.Text())
  57. if err != nil {
  58. fmt.Println("Error database not comprehensible!!")
  59. return hashmap, err
  60. }
  61. if matched == true {
  62. re := regexp.MustCompile("^- ")
  63. s := ""
  64. filepath := re.ReplaceAllString(scanner.Text(), s)
  65. hashmap[hash] = append(hashmap[hash], filepath)
  66. continue
  67. } else {
  68. fmt.Println("Error database not comprehensible!!")
  69. return hashmap, err
  70. }
  71. }
  72. if err := scanner.Err(); err != nil {
  73. log.Fatal(err)
  74. return hashmap, err
  75. }
  76. return hashmap, nil
  77. }