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
/* Copyright 2022 Zinc Labs Inc. and Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
 */

//! dotenv_config provides a way to read configuration from environment variables.
//!
//!
//! use `.env` as config file and parse environments to config struct.
//!
//! ## Usage
//!
//! ### derive EnvConfig
//!
//! ```rust
//! use dotenv_config::EnvConfig;
//! use dotenvy::dotenv;
//!
//! #[derive(Debug, EnvConfig)]
//! struct Config {
//!     #[env_config(default = "192.168.2.1")]
//!     server_addr: String,
//!     server_mode: bool,
//!     #[env_config(name = "ZINC_ENABLE", default = true)]
//!     enable: bool,
//!     #[env_config(name = "ZINC_NUMBER", default = 123456)]
//!     num: Option<i64>,
//! }
//!
//! dotenv().ok();
//! let cfg = Config::init().unwrap();
//! println!("{:#?}", cfg);
//!
//! // print config help
//! let help = Config::get_help();
//! println!("{:#?}", help);
//! ```
//!
//! ### attribute env_config
//!
//! you can use macro attribute set field attribute
//!
//! - name: change default environment key
//! - default: if not set, used as default value
//!
//! ## you can though system environments or `.env` file config it.
//!
//! ```ignore
//! ZINC_ENABLE=false
//! ZINC_NUMBER=8787878
//! ```
//!
//! default load environment key is: `structName_fieldName` do UpperSnake, like above struct, default config key is:
//!
//! ```ignore
//! CONFIG_SERVER_ADDR
//! CONFIG_SERVER_MODE
//! ZINC_ENABLE
//! ZINC_NUMBER
//! ```
//!
//! If you have some problems please go to github create a issue.
//! https://github.com/zinclabs/dotenv-config
//!

use proc_macro::TokenStream;
mod builder;

#[proc_macro_derive(EnvConfig, attributes(env_config))]
pub fn derive_env_config(input: TokenStream) -> TokenStream {
    // println!("{:#?}", input);
    builder::BuilderContext::render(input)
        .unwrap()
        .parse()
        .unwrap()
}