Conditions | 7 |
Total Lines | 57 |
Code Lines | 37 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | package postgres |
||
31 | func New(uri string, opts ...Option) (*Postgres, error) { |
||
32 | pg := &Postgres{ |
||
33 | maxOpenConnections: _defaultMaxOpenConnections, |
||
34 | maxIdleConnections: _defaultMaxIdleConnections, |
||
35 | maxDataPerWrite: _defaultMaxDataPerWrite, |
||
36 | maxRetries: _defaultMaxRetries, |
||
37 | watchBufferSize: _defaultWatchBufferSize, |
||
38 | simpleMode: _defaultSimpleMode, |
||
39 | } |
||
40 | |||
41 | // Custom options |
||
42 | for _, opt := range opts { |
||
43 | opt(pg) |
||
44 | } |
||
45 | |||
46 | pg.Builder = squirrel.StatementBuilder.PlaceholderFormat(squirrel.Dollar) |
||
47 | |||
48 | writeConfig, err := pgxpool.ParseConfig(uri) |
||
49 | if err != nil { |
||
50 | return nil, err |
||
51 | } |
||
52 | |||
53 | readConfig, err := pgxpool.ParseConfig(uri) |
||
54 | if err != nil { |
||
55 | return nil, err |
||
56 | } |
||
57 | |||
58 | if pg.simpleMode { |
||
59 | writeConfig.ConnConfig.DefaultQueryExecMode = pgx.QueryExecModeSimpleProtocol |
||
60 | readConfig.ConnConfig.DefaultQueryExecMode = pgx.QueryExecModeSimpleProtocol |
||
61 | } |
||
62 | |||
63 | writeConfig.MinConns = int32(pg.maxIdleConnections) |
||
64 | readConfig.MinConns = int32(pg.maxIdleConnections) |
||
65 | |||
66 | writeConfig.MaxConns = int32(pg.maxOpenConnections) |
||
67 | readConfig.MaxConns = int32(pg.maxOpenConnections) |
||
68 | |||
69 | writeConfig.MaxConnIdleTime = pg.maxConnectionIdleTime |
||
70 | readConfig.MaxConnIdleTime = pg.maxConnectionIdleTime |
||
71 | |||
72 | writeConfig.MaxConnLifetime = pg.maxConnectionLifeTime |
||
73 | readConfig.MaxConnLifetime = pg.maxConnectionLifeTime |
||
74 | |||
75 | initContext, cancelInit := context.WithTimeout(context.Background(), 5*time.Second) |
||
76 | defer cancelInit() |
||
77 | |||
78 | pg.WritePool, err = pgxpool.NewWithConfig(initContext, writeConfig) |
||
79 | if err != nil { |
||
80 | return nil, err |
||
81 | } |
||
82 | pg.ReadPool, err = pgxpool.NewWithConfig(initContext, readConfig) |
||
83 | if err != nil { |
||
84 | return nil, err |
||
85 | } |
||
86 | |||
87 | return pg, nil |
||
88 | } |
||
123 |