-
Notifications
You must be signed in to change notification settings - Fork 414
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jiyong Huang <[email protected]>
- Loading branch information
Showing
40 changed files
with
235 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// Copyright 2024 EMQ Technologies Co., Ltd. | ||
// | ||
// 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. | ||
|
||
package cmd | ||
|
||
import ( | ||
"flag" | ||
|
||
"github.com/lf-edge/ekuiper/internal/conf" | ||
"github.com/lf-edge/ekuiper/internal/server" | ||
) | ||
|
||
// The compile time variable | ||
var ( | ||
Version = "unknown" | ||
LoadFileType = "relative" | ||
) | ||
|
||
var ( | ||
loadFileType string | ||
etcPath string | ||
dataPath string | ||
logPath string | ||
pluginsPath string | ||
) | ||
|
||
func init() { | ||
flag.StringVar(&loadFileType, "loadFileType", "", "loadFileType indicates the how to load path") | ||
flag.StringVar(&etcPath, "etc", "", "etc indicates the path of etc dir") | ||
flag.StringVar(&dataPath, "data", "", "data indicates the path of data dir") | ||
flag.StringVar(&logPath, "log", "", "log indicates the path of log dir") | ||
flag.StringVar(&pluginsPath, "plugins", "", "plugins indicates the path of plugins dir") | ||
|
||
flag.Parse() | ||
|
||
if len(loadFileType) > 0 { | ||
conf.PathConfig.LoadFileType = loadFileType | ||
} else { | ||
conf.PathConfig.LoadFileType = LoadFileType | ||
} | ||
if len(etcPath) > 0 { | ||
conf.PathConfig.Dirs["etc"] = etcPath | ||
} | ||
if len(dataPath) > 0 { | ||
conf.PathConfig.Dirs["data"] = dataPath | ||
} | ||
if len(logPath) > 0 { | ||
conf.PathConfig.Dirs["log"] = logPath | ||
} | ||
if len(pluginsPath) > 0 { | ||
conf.PathConfig.Dirs["plugins"] = pluginsPath | ||
} | ||
} | ||
|
||
func Main() { | ||
server.StartUp(Version) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.