You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

struct.go 20 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  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. func (s *Section) mapToField(val reflect.Value, isStrict bool) error {
  263. if val.Kind() == reflect.Ptr {
  264. val = val.Elem()
  265. }
  266. typ := val.Type()
  267. for i := 0; i < typ.NumField(); i++ {
  268. field := val.Field(i)
  269. tpField := typ.Field(i)
  270. tag := tpField.Tag.Get("ini")
  271. if tag == "-" {
  272. continue
  273. }
  274. rawName, _, allowShadow, allowNonUnique := parseTagOptions(tag)
  275. fieldName := s.parseFieldName(tpField.Name, rawName)
  276. if len(fieldName) == 0 || !field.CanSet() {
  277. continue
  278. }
  279. isStruct := tpField.Type.Kind() == reflect.Struct
  280. isStructPtr := tpField.Type.Kind() == reflect.Ptr && tpField.Type.Elem().Kind() == reflect.Struct
  281. isAnonymous := tpField.Type.Kind() == reflect.Ptr && tpField.Anonymous
  282. if isAnonymous {
  283. field.Set(reflect.New(tpField.Type.Elem()))
  284. }
  285. if isAnonymous || isStruct || isStructPtr {
  286. if sec, err := s.f.GetSection(fieldName); err == nil {
  287. // Only set the field to non-nil struct value if we have a section for it.
  288. // Otherwise, we end up with a non-nil struct ptr even though there is no data.
  289. if isStructPtr && field.IsNil() {
  290. field.Set(reflect.New(tpField.Type.Elem()))
  291. }
  292. if err = sec.mapToField(field, isStrict); err != nil {
  293. return fmt.Errorf("map to field %q: %v", fieldName, err)
  294. }
  295. continue
  296. }
  297. }
  298. // Map non-unique sections
  299. if allowNonUnique && tpField.Type.Kind() == reflect.Slice {
  300. newField, err := s.mapToSlice(fieldName, field, isStrict)
  301. if err != nil {
  302. return fmt.Errorf("map to slice %q: %v", fieldName, err)
  303. }
  304. field.Set(newField)
  305. continue
  306. }
  307. if key, err := s.GetKey(fieldName); err == nil {
  308. delim := parseDelim(tpField.Tag.Get("delim"))
  309. if err = setWithProperType(tpField.Type, key, field, delim, allowShadow, isStrict); err != nil {
  310. return fmt.Errorf("set field %q: %v", fieldName, err)
  311. }
  312. }
  313. }
  314. return nil
  315. }
  316. // mapToSlice maps all sections with the same name and returns the new value.
  317. // The type of the Value must be a slice.
  318. func (s *Section) mapToSlice(secName string, val reflect.Value, isStrict bool) (reflect.Value, error) {
  319. secs, err := s.f.SectionsByName(secName)
  320. if err != nil {
  321. return reflect.Value{}, err
  322. }
  323. typ := val.Type().Elem()
  324. for _, sec := range secs {
  325. elem := reflect.New(typ)
  326. if err = sec.mapToField(elem, isStrict); err != nil {
  327. return reflect.Value{}, fmt.Errorf("map to field from section %q: %v", secName, err)
  328. }
  329. val = reflect.Append(val, elem.Elem())
  330. }
  331. return val, nil
  332. }
  333. // mapTo maps a section to object v.
  334. func (s *Section) mapTo(v interface{}, isStrict bool) error {
  335. typ := reflect.TypeOf(v)
  336. val := reflect.ValueOf(v)
  337. if typ.Kind() == reflect.Ptr {
  338. typ = typ.Elem()
  339. val = val.Elem()
  340. } else {
  341. return errors.New("not a pointer to a struct")
  342. }
  343. if typ.Kind() == reflect.Slice {
  344. newField, err := s.mapToSlice(s.name, val, isStrict)
  345. if err != nil {
  346. return err
  347. }
  348. val.Set(newField)
  349. return nil
  350. }
  351. return s.mapToField(val, isStrict)
  352. }
  353. // MapTo maps section to given struct.
  354. func (s *Section) MapTo(v interface{}) error {
  355. return s.mapTo(v, false)
  356. }
  357. // StrictMapTo maps section to given struct in strict mode,
  358. // which returns all possible error including value parsing error.
  359. func (s *Section) StrictMapTo(v interface{}) error {
  360. return s.mapTo(v, true)
  361. }
  362. // MapTo maps file to given struct.
  363. func (f *File) MapTo(v interface{}) error {
  364. return f.Section("").MapTo(v)
  365. }
  366. // StrictMapTo maps file to given struct in strict mode,
  367. // which returns all possible error including value parsing error.
  368. func (f *File) StrictMapTo(v interface{}) error {
  369. return f.Section("").StrictMapTo(v)
  370. }
  371. // MapToWithMapper maps data sources to given struct with name mapper.
  372. func MapToWithMapper(v interface{}, mapper NameMapper, source interface{}, others ...interface{}) error {
  373. cfg, err := Load(source, others...)
  374. if err != nil {
  375. return err
  376. }
  377. cfg.NameMapper = mapper
  378. return cfg.MapTo(v)
  379. }
  380. // StrictMapToWithMapper maps data sources to given struct with name mapper in strict mode,
  381. // which returns all possible error including value parsing error.
  382. func StrictMapToWithMapper(v interface{}, mapper NameMapper, source interface{}, others ...interface{}) error {
  383. cfg, err := Load(source, others...)
  384. if err != nil {
  385. return err
  386. }
  387. cfg.NameMapper = mapper
  388. return cfg.StrictMapTo(v)
  389. }
  390. // MapTo maps data sources to given struct.
  391. func MapTo(v, source interface{}, others ...interface{}) error {
  392. return MapToWithMapper(v, nil, source, others...)
  393. }
  394. // StrictMapTo maps data sources to given struct in strict mode,
  395. // which returns all possible error including value parsing error.
  396. func StrictMapTo(v, source interface{}, others ...interface{}) error {
  397. return StrictMapToWithMapper(v, nil, source, others...)
  398. }
  399. // reflectSliceWithProperType does the opposite thing as setSliceWithProperType.
  400. func reflectSliceWithProperType(key *Key, field reflect.Value, delim string, allowShadow bool) error {
  401. slice := field.Slice(0, field.Len())
  402. if field.Len() == 0 {
  403. return nil
  404. }
  405. sliceOf := field.Type().Elem().Kind()
  406. if allowShadow {
  407. var keyWithShadows *Key
  408. for i := 0; i < field.Len(); i++ {
  409. var val string
  410. switch sliceOf {
  411. case reflect.String:
  412. val = slice.Index(i).String()
  413. case reflect.Int, reflect.Int64:
  414. val = fmt.Sprint(slice.Index(i).Int())
  415. case reflect.Uint, reflect.Uint64:
  416. val = fmt.Sprint(slice.Index(i).Uint())
  417. case reflect.Float64:
  418. val = fmt.Sprint(slice.Index(i).Float())
  419. case reflect.Bool:
  420. val = fmt.Sprint(slice.Index(i).Bool())
  421. case reflectTime:
  422. val = slice.Index(i).Interface().(time.Time).Format(time.RFC3339)
  423. default:
  424. return fmt.Errorf("unsupported type '[]%s'", sliceOf)
  425. }
  426. if i == 0 {
  427. keyWithShadows = newKey(key.s, key.name, val)
  428. } else {
  429. _ = keyWithShadows.AddShadow(val)
  430. }
  431. }
  432. key = keyWithShadows
  433. return nil
  434. }
  435. var buf bytes.Buffer
  436. for i := 0; i < field.Len(); i++ {
  437. switch sliceOf {
  438. case reflect.String:
  439. buf.WriteString(slice.Index(i).String())
  440. case reflect.Int, reflect.Int64:
  441. buf.WriteString(fmt.Sprint(slice.Index(i).Int()))
  442. case reflect.Uint, reflect.Uint64:
  443. buf.WriteString(fmt.Sprint(slice.Index(i).Uint()))
  444. case reflect.Float64:
  445. buf.WriteString(fmt.Sprint(slice.Index(i).Float()))
  446. case reflect.Bool:
  447. buf.WriteString(fmt.Sprint(slice.Index(i).Bool()))
  448. case reflectTime:
  449. buf.WriteString(slice.Index(i).Interface().(time.Time).Format(time.RFC3339))
  450. default:
  451. return fmt.Errorf("unsupported type '[]%s'", sliceOf)
  452. }
  453. buf.WriteString(delim)
  454. }
  455. key.SetValue(buf.String()[:buf.Len()-len(delim)])
  456. return nil
  457. }
  458. // reflectWithProperType does the opposite thing as setWithProperType.
  459. func reflectWithProperType(t reflect.Type, key *Key, field reflect.Value, delim string, allowShadow bool) error {
  460. switch t.Kind() {
  461. case reflect.String:
  462. key.SetValue(field.String())
  463. case reflect.Bool:
  464. key.SetValue(fmt.Sprint(field.Bool()))
  465. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  466. key.SetValue(fmt.Sprint(field.Int()))
  467. case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
  468. key.SetValue(fmt.Sprint(field.Uint()))
  469. case reflect.Float32, reflect.Float64:
  470. key.SetValue(fmt.Sprint(field.Float()))
  471. case reflectTime:
  472. key.SetValue(fmt.Sprint(field.Interface().(time.Time).Format(time.RFC3339)))
  473. case reflect.Slice:
  474. return reflectSliceWithProperType(key, field, delim, allowShadow)
  475. case reflect.Ptr:
  476. if !field.IsNil() {
  477. return reflectWithProperType(t.Elem(), key, field.Elem(), delim, allowShadow)
  478. }
  479. default:
  480. return fmt.Errorf("unsupported type %q", t)
  481. }
  482. return nil
  483. }
  484. // CR: copied from encoding/json/encode.go with modifications of time.Time support.
  485. // TODO: add more test coverage.
  486. func isEmptyValue(v reflect.Value) bool {
  487. switch v.Kind() {
  488. case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
  489. return v.Len() == 0
  490. case reflect.Bool:
  491. return !v.Bool()
  492. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  493. return v.Int() == 0
  494. case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
  495. return v.Uint() == 0
  496. case reflect.Float32, reflect.Float64:
  497. return v.Float() == 0
  498. case reflect.Interface, reflect.Ptr:
  499. return v.IsNil()
  500. case reflectTime:
  501. t, ok := v.Interface().(time.Time)
  502. return ok && t.IsZero()
  503. }
  504. return false
  505. }
  506. // StructReflector is the interface implemented by struct types that can extract themselves into INI objects.
  507. type StructReflector interface {
  508. ReflectINIStruct(*File) error
  509. }
  510. func (s *Section) reflectFrom(val reflect.Value) error {
  511. if val.Kind() == reflect.Ptr {
  512. val = val.Elem()
  513. }
  514. typ := val.Type()
  515. for i := 0; i < typ.NumField(); i++ {
  516. if !val.Field(i).CanInterface() {
  517. continue
  518. }
  519. field := val.Field(i)
  520. tpField := typ.Field(i)
  521. tag := tpField.Tag.Get("ini")
  522. if tag == "-" {
  523. continue
  524. }
  525. rawName, omitEmpty, allowShadow, allowNonUnique := parseTagOptions(tag)
  526. if omitEmpty && isEmptyValue(field) {
  527. continue
  528. }
  529. if r, ok := field.Interface().(StructReflector); ok {
  530. return r.ReflectINIStruct(s.f)
  531. }
  532. fieldName := s.parseFieldName(tpField.Name, rawName)
  533. if len(fieldName) == 0 || !field.CanSet() {
  534. continue
  535. }
  536. if (tpField.Type.Kind() == reflect.Ptr && tpField.Anonymous) ||
  537. (tpField.Type.Kind() == reflect.Struct && tpField.Type.Name() != "Time") {
  538. // Note: The only error here is section doesn't exist.
  539. sec, err := s.f.GetSection(fieldName)
  540. if err != nil {
  541. // Note: fieldName can never be empty here, ignore error.
  542. sec, _ = s.f.NewSection(fieldName)
  543. }
  544. // Add comment from comment tag
  545. if len(sec.Comment) == 0 {
  546. sec.Comment = tpField.Tag.Get("comment")
  547. }
  548. if err = sec.reflectFrom(field); err != nil {
  549. return fmt.Errorf("reflect from field %q: %v", fieldName, err)
  550. }
  551. continue
  552. }
  553. if allowNonUnique && tpField.Type.Kind() == reflect.Slice {
  554. slice := field.Slice(0, field.Len())
  555. if field.Len() == 0 {
  556. return nil
  557. }
  558. sliceOf := field.Type().Elem().Kind()
  559. for i := 0; i < field.Len(); i++ {
  560. if sliceOf != reflect.Struct && sliceOf != reflect.Ptr {
  561. return fmt.Errorf("field %q is not a slice of pointer or struct", fieldName)
  562. }
  563. sec, err := s.f.NewSection(fieldName)
  564. if err != nil {
  565. return err
  566. }
  567. // Add comment from comment tag
  568. if len(sec.Comment) == 0 {
  569. sec.Comment = tpField.Tag.Get("comment")
  570. }
  571. if err := sec.reflectFrom(slice.Index(i)); err != nil {
  572. return fmt.Errorf("reflect from field %q: %v", fieldName, err)
  573. }
  574. }
  575. continue
  576. }
  577. // Note: Same reason as section.
  578. key, err := s.GetKey(fieldName)
  579. if err != nil {
  580. key, _ = s.NewKey(fieldName, "")
  581. }
  582. // Add comment from comment tag
  583. if len(key.Comment) == 0 {
  584. key.Comment = tpField.Tag.Get("comment")
  585. }
  586. delim := parseDelim(tpField.Tag.Get("delim"))
  587. if err = reflectWithProperType(tpField.Type, key, field, delim, allowShadow); err != nil {
  588. return fmt.Errorf("reflect field %q: %v", fieldName, err)
  589. }
  590. }
  591. return nil
  592. }
  593. // ReflectFrom reflects section from given struct. It overwrites existing ones.
  594. func (s *Section) ReflectFrom(v interface{}) error {
  595. typ := reflect.TypeOf(v)
  596. val := reflect.ValueOf(v)
  597. if s.name != DefaultSection && s.f.options.AllowNonUniqueSections &&
  598. (typ.Kind() == reflect.Slice || typ.Kind() == reflect.Ptr) {
  599. // Clear sections to make sure none exists before adding the new ones
  600. s.f.DeleteSection(s.name)
  601. if typ.Kind() == reflect.Ptr {
  602. sec, err := s.f.NewSection(s.name)
  603. if err != nil {
  604. return err
  605. }
  606. return sec.reflectFrom(val.Elem())
  607. }
  608. slice := val.Slice(0, val.Len())
  609. sliceOf := val.Type().Elem().Kind()
  610. if sliceOf != reflect.Ptr {
  611. return fmt.Errorf("not a slice of pointers")
  612. }
  613. for i := 0; i < slice.Len(); i++ {
  614. sec, err := s.f.NewSection(s.name)
  615. if err != nil {
  616. return err
  617. }
  618. err = sec.reflectFrom(slice.Index(i))
  619. if err != nil {
  620. return fmt.Errorf("reflect from %dth field: %v", i, err)
  621. }
  622. }
  623. return nil
  624. }
  625. if typ.Kind() == reflect.Ptr {
  626. val = val.Elem()
  627. } else {
  628. return errors.New("not a pointer to a struct")
  629. }
  630. return s.reflectFrom(val)
  631. }
  632. // ReflectFrom reflects file from given struct.
  633. func (f *File) ReflectFrom(v interface{}) error {
  634. return f.Section("").ReflectFrom(v)
  635. }
  636. // ReflectFromWithMapper reflects data sources from given struct with name mapper.
  637. func ReflectFromWithMapper(cfg *File, v interface{}, mapper NameMapper) error {
  638. cfg.NameMapper = mapper
  639. return cfg.ReflectFrom(v)
  640. }
  641. // ReflectFrom reflects data sources from given struct.
  642. func ReflectFrom(cfg *File, v interface{}) error {
  643. return ReflectFromWithMapper(cfg, v, nil)
  644. }