struct.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. // Copyright 2014 Unknwon
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License"): you may
  4. // not use this file except in compliance with the License. You may obtain
  5. // a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  11. // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  12. // License for the specific language governing permissions and limitations
  13. // under the License.
  14. package ini
  15. import (
  16. "bytes"
  17. "errors"
  18. "fmt"
  19. "reflect"
  20. "strings"
  21. "time"
  22. "unicode"
  23. )
  24. // NameMapper represents a ini tag name mapper.
  25. type NameMapper func(string) string
  26. // Built-in name getters.
  27. var (
  28. // SnackCase converts to format SNACK_CASE.
  29. SnackCase NameMapper = func(raw string) string {
  30. newstr := make([]rune, 0, len(raw))
  31. for i, chr := range raw {
  32. if isUpper := 'A' <= chr && chr <= 'Z'; isUpper {
  33. if i > 0 {
  34. newstr = append(newstr, '_')
  35. }
  36. }
  37. newstr = append(newstr, unicode.ToUpper(chr))
  38. }
  39. return string(newstr)
  40. }
  41. // TitleUnderscore converts to format title_underscore.
  42. TitleUnderscore NameMapper = func(raw string) string {
  43. newstr := make([]rune, 0, len(raw))
  44. for i, chr := range raw {
  45. if isUpper := 'A' <= chr && chr <= 'Z'; isUpper {
  46. if i > 0 {
  47. newstr = append(newstr, '_')
  48. }
  49. chr -= 'A' - 'a'
  50. }
  51. newstr = append(newstr, chr)
  52. }
  53. return string(newstr)
  54. }
  55. )
  56. func (s *Section) parseFieldName(raw, actual string) string {
  57. if len(actual) > 0 {
  58. return actual
  59. }
  60. if s.f.NameMapper != nil {
  61. return s.f.NameMapper(raw)
  62. }
  63. return raw
  64. }
  65. func parseDelim(actual string) string {
  66. if len(actual) > 0 {
  67. return actual
  68. }
  69. return ","
  70. }
  71. var reflectTime = reflect.TypeOf(time.Now()).Kind()
  72. // setSliceWithProperType sets proper values to slice based on its type.
  73. func setSliceWithProperType(key *Key, field reflect.Value, delim string, allowShadow, isStrict bool) error {
  74. var strs []string
  75. if allowShadow {
  76. strs = key.StringsWithShadows(delim)
  77. } else {
  78. strs = key.Strings(delim)
  79. }
  80. numVals := len(strs)
  81. if numVals == 0 {
  82. return nil
  83. }
  84. var vals interface{}
  85. var err error
  86. sliceOf := field.Type().Elem().Kind()
  87. switch sliceOf {
  88. case reflect.String:
  89. vals = strs
  90. case reflect.Int:
  91. vals, err = key.parseInts(strs, true, false)
  92. case reflect.Int64:
  93. vals, err = key.parseInt64s(strs, true, false)
  94. case reflect.Uint:
  95. vals, err = key.parseUints(strs, true, false)
  96. case reflect.Uint64:
  97. vals, err = key.parseUint64s(strs, true, false)
  98. case reflect.Float64:
  99. vals, err = key.parseFloat64s(strs, true, false)
  100. case reflect.Bool:
  101. vals, err = key.parseBools(strs, true, false)
  102. case reflectTime:
  103. vals, err = key.parseTimesFormat(time.RFC3339, strs, true, false)
  104. default:
  105. return fmt.Errorf("unsupported type '[]%s'", sliceOf)
  106. }
  107. if err != nil && isStrict {
  108. return err
  109. }
  110. slice := reflect.MakeSlice(field.Type(), numVals, numVals)
  111. for i := 0; i < numVals; i++ {
  112. switch sliceOf {
  113. case reflect.String:
  114. slice.Index(i).Set(reflect.ValueOf(vals.([]string)[i]))
  115. case reflect.Int:
  116. slice.Index(i).Set(reflect.ValueOf(vals.([]int)[i]))
  117. case reflect.Int64:
  118. slice.Index(i).Set(reflect.ValueOf(vals.([]int64)[i]))
  119. case reflect.Uint:
  120. slice.Index(i).Set(reflect.ValueOf(vals.([]uint)[i]))
  121. case reflect.Uint64:
  122. slice.Index(i).Set(reflect.ValueOf(vals.([]uint64)[i]))
  123. case reflect.Float64:
  124. slice.Index(i).Set(reflect.ValueOf(vals.([]float64)[i]))
  125. case reflect.Bool:
  126. slice.Index(i).Set(reflect.ValueOf(vals.([]bool)[i]))
  127. case reflectTime:
  128. slice.Index(i).Set(reflect.ValueOf(vals.([]time.Time)[i]))
  129. }
  130. }
  131. field.Set(slice)
  132. return nil
  133. }
  134. func wrapStrictError(err error, isStrict bool) error {
  135. if isStrict {
  136. return err
  137. }
  138. return nil
  139. }
  140. // setWithProperType sets proper value to field based on its type,
  141. // but it does not return error for failing parsing,
  142. // because we want to use default value that is already assigned to struct.
  143. func setWithProperType(t reflect.Type, key *Key, field reflect.Value, delim string, allowShadow, isStrict bool) error {
  144. vt := t
  145. isPtr := t.Kind() == reflect.Ptr
  146. if isPtr {
  147. vt = t.Elem()
  148. }
  149. switch vt.Kind() {
  150. case reflect.String:
  151. stringVal := key.String()
  152. if isPtr {
  153. field.Set(reflect.ValueOf(&stringVal))
  154. } else if len(stringVal) > 0 {
  155. field.SetString(key.String())
  156. }
  157. case reflect.Bool:
  158. boolVal, err := key.Bool()
  159. if err != nil {
  160. return wrapStrictError(err, isStrict)
  161. }
  162. if isPtr {
  163. field.Set(reflect.ValueOf(&boolVal))
  164. } else {
  165. field.SetBool(boolVal)
  166. }
  167. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  168. // ParseDuration will not return err for `0`, so check the type name
  169. if vt.Name() == "Duration" {
  170. durationVal, err := key.Duration()
  171. if err != nil {
  172. if intVal, err := key.Int64(); err == nil {
  173. field.SetInt(intVal)
  174. return nil
  175. }
  176. return wrapStrictError(err, isStrict)
  177. }
  178. if isPtr {
  179. field.Set(reflect.ValueOf(&durationVal))
  180. } else if int64(durationVal) > 0 {
  181. field.Set(reflect.ValueOf(durationVal))
  182. }
  183. return nil
  184. }
  185. intVal, err := key.Int64()
  186. if err != nil {
  187. return wrapStrictError(err, isStrict)
  188. }
  189. if isPtr {
  190. pv := reflect.New(t.Elem())
  191. pv.Elem().SetInt(intVal)
  192. field.Set(pv)
  193. } else {
  194. field.SetInt(intVal)
  195. }
  196. // byte is an alias for uint8, so supporting uint8 breaks support for byte
  197. case reflect.Uint, reflect.Uint16, reflect.Uint32, reflect.Uint64:
  198. durationVal, err := key.Duration()
  199. // Skip zero value
  200. if err == nil && uint64(durationVal) > 0 {
  201. if isPtr {
  202. field.Set(reflect.ValueOf(&durationVal))
  203. } else {
  204. field.Set(reflect.ValueOf(durationVal))
  205. }
  206. return nil
  207. }
  208. uintVal, err := key.Uint64()
  209. if err != nil {
  210. return wrapStrictError(err, isStrict)
  211. }
  212. if isPtr {
  213. pv := reflect.New(t.Elem())
  214. pv.Elem().SetUint(uintVal)
  215. field.Set(pv)
  216. } else {
  217. field.SetUint(uintVal)
  218. }
  219. case reflect.Float32, reflect.Float64:
  220. floatVal, err := key.Float64()
  221. if err != nil {
  222. return wrapStrictError(err, isStrict)
  223. }
  224. if isPtr {
  225. pv := reflect.New(t.Elem())
  226. pv.Elem().SetFloat(floatVal)
  227. field.Set(pv)
  228. } else {
  229. field.SetFloat(floatVal)
  230. }
  231. case reflectTime:
  232. timeVal, err := key.Time()
  233. if err != nil {
  234. return wrapStrictError(err, isStrict)
  235. }
  236. if isPtr {
  237. field.Set(reflect.ValueOf(&timeVal))
  238. } else {
  239. field.Set(reflect.ValueOf(timeVal))
  240. }
  241. case reflect.Slice:
  242. return setSliceWithProperType(key, field, delim, allowShadow, isStrict)
  243. default:
  244. return fmt.Errorf("unsupported type %q", t)
  245. }
  246. return nil
  247. }
  248. func parseTagOptions(tag string) (rawName string, omitEmpty bool, allowShadow bool, allowNonUnique bool) {
  249. opts := strings.SplitN(tag, ",", 4)
  250. rawName = opts[0]
  251. if len(opts) > 1 {
  252. omitEmpty = opts[1] == "omitempty"
  253. }
  254. if len(opts) > 2 {
  255. allowShadow = opts[2] == "allowshadow"
  256. }
  257. if len(opts) > 3 {
  258. allowNonUnique = opts[3] == "nonunique"
  259. }
  260. return rawName, omitEmpty, allowShadow, allowNonUnique
  261. }
  262. // mapToField maps the given value to the matching field of the given section.
  263. // The sectionIndex is the index (if non unique sections are enabled) to which the value should be added.
  264. func (s *Section) mapToField(val reflect.Value, isStrict bool, sectionIndex int) error {
  265. if val.Kind() == reflect.Ptr {
  266. val = val.Elem()
  267. }
  268. typ := val.Type()
  269. for i := 0; i < typ.NumField(); i++ {
  270. field := val.Field(i)
  271. tpField := typ.Field(i)
  272. tag := tpField.Tag.Get("ini")
  273. if tag == "-" {
  274. continue
  275. }
  276. rawName, _, allowShadow, allowNonUnique := parseTagOptions(tag)
  277. fieldName := s.parseFieldName(tpField.Name, rawName)
  278. if len(fieldName) == 0 || !field.CanSet() {
  279. continue
  280. }
  281. isStruct := tpField.Type.Kind() == reflect.Struct
  282. isStructPtr := tpField.Type.Kind() == reflect.Ptr && tpField.Type.Elem().Kind() == reflect.Struct
  283. isAnonymous := tpField.Type.Kind() == reflect.Ptr && tpField.Anonymous
  284. if isAnonymous {
  285. field.Set(reflect.New(tpField.Type.Elem()))
  286. }
  287. if isAnonymous || isStruct || isStructPtr {
  288. if secs, err := s.f.SectionsByName(fieldName); err == nil {
  289. if len(secs) <= sectionIndex {
  290. return fmt.Errorf("there are not enough sections (%d <= %d) for the field %q", len(secs), sectionIndex, fieldName)
  291. }
  292. // Only set the field to non-nil struct value if we have a section for it.
  293. // Otherwise, we end up with a non-nil struct ptr even though there is no data.
  294. if isStructPtr && field.IsNil() {
  295. field.Set(reflect.New(tpField.Type.Elem()))
  296. }
  297. if err = secs[sectionIndex].mapToField(field, isStrict, sectionIndex); err != nil {
  298. return fmt.Errorf("map to field %q: %v", fieldName, err)
  299. }
  300. continue
  301. }
  302. }
  303. // Map non-unique sections
  304. if allowNonUnique && tpField.Type.Kind() == reflect.Slice {
  305. newField, err := s.mapToSlice(fieldName, field, isStrict)
  306. if err != nil {
  307. return fmt.Errorf("map to slice %q: %v", fieldName, err)
  308. }
  309. field.Set(newField)
  310. continue
  311. }
  312. if key, err := s.GetKey(fieldName); err == nil {
  313. delim := parseDelim(tpField.Tag.Get("delim"))
  314. if err = setWithProperType(tpField.Type, key, field, delim, allowShadow, isStrict); err != nil {
  315. return fmt.Errorf("set field %q: %v", fieldName, err)
  316. }
  317. }
  318. }
  319. return nil
  320. }
  321. // mapToSlice maps all sections with the same name and returns the new value.
  322. // The type of the Value must be a slice.
  323. func (s *Section) mapToSlice(secName string, val reflect.Value, isStrict bool) (reflect.Value, error) {
  324. secs, err := s.f.SectionsByName(secName)
  325. if err != nil {
  326. return reflect.Value{}, err
  327. }
  328. typ := val.Type().Elem()
  329. for i, sec := range secs {
  330. elem := reflect.New(typ)
  331. if err = sec.mapToField(elem, isStrict, i); err != nil {
  332. return reflect.Value{}, fmt.Errorf("map to field from section %q: %v", secName, err)
  333. }
  334. val = reflect.Append(val, elem.Elem())
  335. }
  336. return val, nil
  337. }
  338. // mapTo maps a section to object v.
  339. func (s *Section) mapTo(v interface{}, isStrict bool) error {
  340. typ := reflect.TypeOf(v)
  341. val := reflect.ValueOf(v)
  342. if typ.Kind() == reflect.Ptr {
  343. typ = typ.Elem()
  344. val = val.Elem()
  345. } else {
  346. return errors.New("not a pointer to a struct")
  347. }
  348. if typ.Kind() == reflect.Slice {
  349. newField, err := s.mapToSlice(s.name, val, isStrict)
  350. if err != nil {
  351. return err
  352. }
  353. val.Set(newField)
  354. return nil
  355. }
  356. return s.mapToField(val, isStrict, 0)
  357. }
  358. // MapTo maps section to given struct.
  359. func (s *Section) MapTo(v interface{}) error {
  360. return s.mapTo(v, false)
  361. }
  362. // StrictMapTo maps section to given struct in strict mode,
  363. // which returns all possible error including value parsing error.
  364. func (s *Section) StrictMapTo(v interface{}) error {
  365. return s.mapTo(v, true)
  366. }
  367. // MapTo maps file to given struct.
  368. func (f *File) MapTo(v interface{}) error {
  369. return f.Section("").MapTo(v)
  370. }
  371. // StrictMapTo maps file to given struct in strict mode,
  372. // which returns all possible error including value parsing error.
  373. func (f *File) StrictMapTo(v interface{}) error {
  374. return f.Section("").StrictMapTo(v)
  375. }
  376. // MapToWithMapper maps data sources to given struct with name mapper.
  377. func MapToWithMapper(v interface{}, mapper NameMapper, source interface{}, others ...interface{}) error {
  378. cfg, err := Load(source, others...)
  379. if err != nil {
  380. return err
  381. }
  382. cfg.NameMapper = mapper
  383. return cfg.MapTo(v)
  384. }
  385. // StrictMapToWithMapper maps data sources to given struct with name mapper in strict mode,
  386. // which returns all possible error including value parsing error.
  387. func StrictMapToWithMapper(v interface{}, mapper NameMapper, source interface{}, others ...interface{}) error {
  388. cfg, err := Load(source, others...)
  389. if err != nil {
  390. return err
  391. }
  392. cfg.NameMapper = mapper
  393. return cfg.StrictMapTo(v)
  394. }
  395. // MapTo maps data sources to given struct.
  396. func MapTo(v, source interface{}, others ...interface{}) error {
  397. return MapToWithMapper(v, nil, source, others...)
  398. }
  399. // StrictMapTo maps data sources to given struct in strict mode,
  400. // which returns all possible error including value parsing error.
  401. func StrictMapTo(v, source interface{}, others ...interface{}) error {
  402. return StrictMapToWithMapper(v, nil, source, others...)
  403. }
  404. // reflectSliceWithProperType does the opposite thing as setSliceWithProperType.
  405. func reflectSliceWithProperType(key *Key, field reflect.Value, delim string, allowShadow bool) error {
  406. slice := field.Slice(0, field.Len())
  407. if field.Len() == 0 {
  408. return nil
  409. }
  410. sliceOf := field.Type().Elem().Kind()
  411. if allowShadow {
  412. var keyWithShadows *Key
  413. for i := 0; i < field.Len(); i++ {
  414. var val string
  415. switch sliceOf {
  416. case reflect.String:
  417. val = slice.Index(i).String()
  418. case reflect.Int, reflect.Int64:
  419. val = fmt.Sprint(slice.Index(i).Int())
  420. case reflect.Uint, reflect.Uint64:
  421. val = fmt.Sprint(slice.Index(i).Uint())
  422. case reflect.Float64:
  423. val = fmt.Sprint(slice.Index(i).Float())
  424. case reflect.Bool:
  425. val = fmt.Sprint(slice.Index(i).Bool())
  426. case reflectTime:
  427. val = slice.Index(i).Interface().(time.Time).Format(time.RFC3339)
  428. default:
  429. return fmt.Errorf("unsupported type '[]%s'", sliceOf)
  430. }
  431. if i == 0 {
  432. keyWithShadows = newKey(key.s, key.name, val)
  433. } else {
  434. _ = keyWithShadows.AddShadow(val)
  435. }
  436. }
  437. key = keyWithShadows
  438. return nil
  439. }
  440. var buf bytes.Buffer
  441. for i := 0; i < field.Len(); i++ {
  442. switch sliceOf {
  443. case reflect.String:
  444. buf.WriteString(slice.Index(i).String())
  445. case reflect.Int, reflect.Int64:
  446. buf.WriteString(fmt.Sprint(slice.Index(i).Int()))
  447. case reflect.Uint, reflect.Uint64:
  448. buf.WriteString(fmt.Sprint(slice.Index(i).Uint()))
  449. case reflect.Float64:
  450. buf.WriteString(fmt.Sprint(slice.Index(i).Float()))
  451. case reflect.Bool:
  452. buf.WriteString(fmt.Sprint(slice.Index(i).Bool()))
  453. case reflectTime:
  454. buf.WriteString(slice.Index(i).Interface().(time.Time).Format(time.RFC3339))
  455. default:
  456. return fmt.Errorf("unsupported type '[]%s'", sliceOf)
  457. }
  458. buf.WriteString(delim)
  459. }
  460. key.SetValue(buf.String()[:buf.Len()-len(delim)])
  461. return nil
  462. }
  463. // reflectWithProperType does the opposite thing as setWithProperType.
  464. func reflectWithProperType(t reflect.Type, key *Key, field reflect.Value, delim string, allowShadow bool) error {
  465. switch t.Kind() {
  466. case reflect.String:
  467. key.SetValue(field.String())
  468. case reflect.Bool:
  469. key.SetValue(fmt.Sprint(field.Bool()))
  470. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  471. key.SetValue(fmt.Sprint(field.Int()))
  472. case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
  473. key.SetValue(fmt.Sprint(field.Uint()))
  474. case reflect.Float32, reflect.Float64:
  475. key.SetValue(fmt.Sprint(field.Float()))
  476. case reflectTime:
  477. key.SetValue(fmt.Sprint(field.Interface().(time.Time).Format(time.RFC3339)))
  478. case reflect.Slice:
  479. return reflectSliceWithProperType(key, field, delim, allowShadow)
  480. case reflect.Ptr:
  481. if !field.IsNil() {
  482. return reflectWithProperType(t.Elem(), key, field.Elem(), delim, allowShadow)
  483. }
  484. default:
  485. return fmt.Errorf("unsupported type %q", t)
  486. }
  487. return nil
  488. }
  489. // CR: copied from encoding/json/encode.go with modifications of time.Time support.
  490. // TODO: add more test coverage.
  491. func isEmptyValue(v reflect.Value) bool {
  492. switch v.Kind() {
  493. case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
  494. return v.Len() == 0
  495. case reflect.Bool:
  496. return !v.Bool()
  497. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  498. return v.Int() == 0
  499. case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
  500. return v.Uint() == 0
  501. case reflect.Float32, reflect.Float64:
  502. return v.Float() == 0
  503. case reflect.Interface, reflect.Ptr:
  504. return v.IsNil()
  505. case reflectTime:
  506. t, ok := v.Interface().(time.Time)
  507. return ok && t.IsZero()
  508. }
  509. return false
  510. }
  511. // StructReflector is the interface implemented by struct types that can extract themselves into INI objects.
  512. type StructReflector interface {
  513. ReflectINIStruct(*File) error
  514. }
  515. func (s *Section) reflectFrom(val reflect.Value) error {
  516. if val.Kind() == reflect.Ptr {
  517. val = val.Elem()
  518. }
  519. typ := val.Type()
  520. for i := 0; i < typ.NumField(); i++ {
  521. if !val.Field(i).CanInterface() {
  522. continue
  523. }
  524. field := val.Field(i)
  525. tpField := typ.Field(i)
  526. tag := tpField.Tag.Get("ini")
  527. if tag == "-" {
  528. continue
  529. }
  530. rawName, omitEmpty, allowShadow, allowNonUnique := parseTagOptions(tag)
  531. if omitEmpty && isEmptyValue(field) {
  532. continue
  533. }
  534. if r, ok := field.Interface().(StructReflector); ok {
  535. return r.ReflectINIStruct(s.f)
  536. }
  537. fieldName := s.parseFieldName(tpField.Name, rawName)
  538. if len(fieldName) == 0 || !field.CanSet() {
  539. continue
  540. }
  541. if (tpField.Type.Kind() == reflect.Ptr && tpField.Anonymous) ||
  542. (tpField.Type.Kind() == reflect.Struct && tpField.Type.Name() != "Time") {
  543. // Note: The only error here is section doesn't exist.
  544. sec, err := s.f.GetSection(fieldName)
  545. if err != nil {
  546. // Note: fieldName can never be empty here, ignore error.
  547. sec, _ = s.f.NewSection(fieldName)
  548. }
  549. // Add comment from comment tag
  550. if len(sec.Comment) == 0 {
  551. sec.Comment = tpField.Tag.Get("comment")
  552. }
  553. if err = sec.reflectFrom(field); err != nil {
  554. return fmt.Errorf("reflect from field %q: %v", fieldName, err)
  555. }
  556. continue
  557. }
  558. if allowNonUnique && tpField.Type.Kind() == reflect.Slice {
  559. slice := field.Slice(0, field.Len())
  560. if field.Len() == 0 {
  561. return nil
  562. }
  563. sliceOf := field.Type().Elem().Kind()
  564. for i := 0; i < field.Len(); i++ {
  565. if sliceOf != reflect.Struct && sliceOf != reflect.Ptr {
  566. return fmt.Errorf("field %q is not a slice of pointer or struct", fieldName)
  567. }
  568. sec, err := s.f.NewSection(fieldName)
  569. if err != nil {
  570. return err
  571. }
  572. // Add comment from comment tag
  573. if len(sec.Comment) == 0 {
  574. sec.Comment = tpField.Tag.Get("comment")
  575. }
  576. if err := sec.reflectFrom(slice.Index(i)); err != nil {
  577. return fmt.Errorf("reflect from field %q: %v", fieldName, err)
  578. }
  579. }
  580. continue
  581. }
  582. // Note: Same reason as section.
  583. key, err := s.GetKey(fieldName)
  584. if err != nil {
  585. key, _ = s.NewKey(fieldName, "")
  586. }
  587. // Add comment from comment tag
  588. if len(key.Comment) == 0 {
  589. key.Comment = tpField.Tag.Get("comment")
  590. }
  591. delim := parseDelim(tpField.Tag.Get("delim"))
  592. if err = reflectWithProperType(tpField.Type, key, field, delim, allowShadow); err != nil {
  593. return fmt.Errorf("reflect field %q: %v", fieldName, err)
  594. }
  595. }
  596. return nil
  597. }
  598. // ReflectFrom reflects section from given struct. It overwrites existing ones.
  599. func (s *Section) ReflectFrom(v interface{}) error {
  600. typ := reflect.TypeOf(v)
  601. val := reflect.ValueOf(v)
  602. if s.name != DefaultSection && s.f.options.AllowNonUniqueSections &&
  603. (typ.Kind() == reflect.Slice || typ.Kind() == reflect.Ptr) {
  604. // Clear sections to make sure none exists before adding the new ones
  605. s.f.DeleteSection(s.name)
  606. if typ.Kind() == reflect.Ptr {
  607. sec, err := s.f.NewSection(s.name)
  608. if err != nil {
  609. return err
  610. }
  611. return sec.reflectFrom(val.Elem())
  612. }
  613. slice := val.Slice(0, val.Len())
  614. sliceOf := val.Type().Elem().Kind()
  615. if sliceOf != reflect.Ptr {
  616. return fmt.Errorf("not a slice of pointers")
  617. }
  618. for i := 0; i < slice.Len(); i++ {
  619. sec, err := s.f.NewSection(s.name)
  620. if err != nil {
  621. return err
  622. }
  623. err = sec.reflectFrom(slice.Index(i))
  624. if err != nil {
  625. return fmt.Errorf("reflect from %dth field: %v", i, err)
  626. }
  627. }
  628. return nil
  629. }
  630. if typ.Kind() == reflect.Ptr {
  631. val = val.Elem()
  632. } else {
  633. return errors.New("not a pointer to a struct")
  634. }
  635. return s.reflectFrom(val)
  636. }
  637. // ReflectFrom reflects file from given struct.
  638. func (f *File) ReflectFrom(v interface{}) error {
  639. return f.Section("").ReflectFrom(v)
  640. }
  641. // ReflectFromWithMapper reflects data sources from given struct with name mapper.
  642. func ReflectFromWithMapper(cfg *File, v interface{}, mapper NameMapper) error {
  643. cfg.NameMapper = mapper
  644. return cfg.ReflectFrom(v)
  645. }
  646. // ReflectFrom reflects data sources from given struct.
  647. func ReflectFrom(cfg *File, v interface{}) error {
  648. return ReflectFromWithMapper(cfg, v, nil)
  649. }