task.rs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. use std::path::PathBuf;
  2. use reqwest::Url;
  3. use serde::{Deserialize, Serialize};
  4. #[derive(Debug, Clone, Serialize, Deserialize)]
  5. pub struct DADKTask {
  6. /// 包名
  7. pub name: String,
  8. /// 版本
  9. pub version: String,
  10. /// 包的描述
  11. pub description: String,
  12. /// 任务类型
  13. pub task_type: TaskType,
  14. /// 依赖的包
  15. pub depends: Vec<Dependency>,
  16. /// 构建配置
  17. pub build: BuildConfig,
  18. /// 安装配置
  19. pub install: InstallConfig,
  20. }
  21. impl DADKTask {
  22. pub fn new(
  23. name: String,
  24. version: String,
  25. description: String,
  26. task_type: TaskType,
  27. depends: Vec<Dependency>,
  28. build: BuildConfig,
  29. install: InstallConfig,
  30. ) -> Self {
  31. Self {
  32. name,
  33. version,
  34. description,
  35. task_type,
  36. depends,
  37. build,
  38. install,
  39. }
  40. }
  41. pub fn validate(&self) -> Result<(), String> {
  42. if self.name.is_empty() {
  43. return Err("name is empty".to_string());
  44. }
  45. if self.version.is_empty() {
  46. return Err("version is empty".to_string());
  47. }
  48. self.task_type.validate()?;
  49. self.build.validate()?;
  50. self.install.validate()?;
  51. return Ok(());
  52. }
  53. }
  54. /// @brief 构建配置
  55. #[derive(Debug, Clone, Serialize, Deserialize)]
  56. pub struct BuildConfig {
  57. /// 构建命令
  58. pub build_command: String,
  59. }
  60. impl BuildConfig {
  61. pub fn new(build_command: String) -> Self {
  62. Self { build_command }
  63. }
  64. pub fn validate(&self) -> Result<(), String> {
  65. return Ok(());
  66. }
  67. }
  68. #[derive(Debug, Clone, Serialize, Deserialize)]
  69. pub struct InstallConfig {
  70. /// 安装到DragonOS内的目录
  71. pub in_dragonos_path: PathBuf,
  72. /// 安装命令
  73. pub install_command: String,
  74. }
  75. impl InstallConfig {
  76. pub fn new(in_dragonos_path: PathBuf, install_command: String) -> Self {
  77. Self {
  78. in_dragonos_path,
  79. install_command,
  80. }
  81. }
  82. pub fn validate(&self) -> Result<(), String> {
  83. return Ok(());
  84. }
  85. }
  86. /// @brief 依赖项
  87. #[derive(Debug, Clone, Serialize, Deserialize)]
  88. pub struct Dependency {
  89. pub name: String,
  90. pub version: String,
  91. }
  92. /// # 任务类型
  93. #[derive(Debug, Clone, Serialize, Deserialize)]
  94. pub enum TaskType {
  95. /// 从源码构建
  96. BuildFromSource(CodeSource),
  97. /// 从预编译包安装
  98. InstallFromPrebuilt(PrebuiltSource),
  99. }
  100. impl TaskType {
  101. pub fn validate(&self) -> Result<(), String> {
  102. match self {
  103. TaskType::BuildFromSource(source) => source.validate(),
  104. TaskType::InstallFromPrebuilt(source) => source.validate(),
  105. }
  106. }
  107. }
  108. /// # 代码源
  109. #[derive(Debug, Clone, Serialize, Deserialize)]
  110. pub enum CodeSource {
  111. /// 从Git仓库获取
  112. Git(GitSource),
  113. /// 从本地目录获取
  114. Local(LocalSource),
  115. /// 从在线压缩包获取
  116. Archive(ArchiveSource),
  117. }
  118. impl CodeSource {
  119. pub fn validate(&self) -> Result<(), String> {
  120. match self {
  121. CodeSource::Git(source) => source.validate(),
  122. CodeSource::Local(source) => source.validate(Some(false)),
  123. CodeSource::Archive(source) => source.validate(),
  124. }
  125. }
  126. }
  127. /// # 预编译包源
  128. #[derive(Debug, Clone, Serialize, Deserialize)]
  129. pub enum PrebuiltSource {
  130. /// 从在线压缩包获取
  131. Archive(ArchiveSource),
  132. /// 从本地目录/文件获取
  133. Local(LocalSource),
  134. }
  135. impl PrebuiltSource {
  136. pub fn validate(&self) -> Result<(), String> {
  137. match self {
  138. PrebuiltSource::Archive(source) => source.validate(),
  139. PrebuiltSource::Local(source) => source.validate(None),
  140. }
  141. }
  142. }
  143. /// # Git源
  144. ///
  145. /// 从Git仓库获取源码
  146. #[derive(Debug, Clone, Serialize, Deserialize)]
  147. pub struct GitSource {
  148. /// Git仓库地址
  149. url: String,
  150. /// 分支
  151. branch: String,
  152. /// 特定的提交的hash值(可选,如果为空,则拉取最新提交)
  153. revision: Option<String>,
  154. }
  155. impl GitSource {
  156. pub fn new(url: String, branch: String, revision: Option<String>) -> Self {
  157. Self {
  158. url,
  159. branch,
  160. revision,
  161. }
  162. }
  163. /// # 验证参数合法性
  164. ///
  165. /// 仅进行形式校验,不会检查Git仓库是否存在,以及分支是否存在、是否有权限访问等
  166. pub fn validate(&self) -> Result<(), String> {
  167. if self.url.is_empty() {
  168. return Err("url is empty".to_string());
  169. }
  170. if self.branch.is_empty() {
  171. return Err("branch is empty".to_string());
  172. }
  173. return Ok(());
  174. }
  175. }
  176. /// # 本地源
  177. #[derive(Debug, Clone, Serialize, Deserialize)]
  178. pub struct LocalSource {
  179. /// 本地目录/文件的路径
  180. path: PathBuf,
  181. }
  182. impl LocalSource {
  183. pub fn new(path: PathBuf) -> Self {
  184. Self { path }
  185. }
  186. pub fn validate(&self, expect_file: Option<bool>) -> Result<(), String> {
  187. if !self.path.exists() {
  188. return Err(format!("path {:?} not exists", self.path));
  189. }
  190. if let Some(expect_file) = expect_file {
  191. if expect_file && !self.path.is_file() {
  192. return Err(format!("path {:?} is not a file", self.path));
  193. }
  194. if !expect_file && !self.path.is_dir() {
  195. return Err(format!("path {:?} is not a directory", self.path));
  196. }
  197. }
  198. return Ok(());
  199. }
  200. }
  201. /// # 在线压缩包源
  202. #[derive(Debug, Clone, Serialize, Deserialize)]
  203. pub struct ArchiveSource {
  204. /// 压缩包的URL
  205. url: String,
  206. }
  207. impl ArchiveSource {
  208. pub fn new(url: String) -> Self {
  209. Self { url }
  210. }
  211. pub fn validate(&self) -> Result<(), String> {
  212. if self.url.is_empty() {
  213. return Err("url is empty".to_string());
  214. }
  215. // 判断是一个网址
  216. if let Ok(url) = Url::parse(&self.url) {
  217. if url.scheme() != "http" && url.scheme() != "https" {
  218. return Err(format!("url {:?} is not a http/https url", self.url));
  219. }
  220. } else {
  221. return Err(format!("url {:?} is not a valid url", self.url));
  222. }
  223. return Ok(());
  224. }
  225. }