forked from quickshell/quickshell
		
	core/command: allow log files to be specified w/ instance selectors
This commit is contained in:
		
							parent
							
								
									19d74595d6
								
							
						
					
					
						commit
						f810c63ffc
					
				
					 1 changed files with 23 additions and 7 deletions
				
			
		| 
						 | 
					@ -239,17 +239,23 @@ int runCommand(int argc, char** argv, QCoreApplication* coreApplication) {
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		auto* sub = cli.add_subcommand("log", "Read quickshell logs.");
 | 
							auto* sub = cli.add_subcommand(
 | 
				
			||||||
		sub->add_option("--file", state.log.file, "Log file to read.")->required();
 | 
							    "log",
 | 
				
			||||||
 | 
							    "Read quickshell logs.\n"
 | 
				
			||||||
 | 
							    "If --file is specified, the given file will be read.\n"
 | 
				
			||||||
 | 
							    "If not, the log of the first launched instance matching"
 | 
				
			||||||
 | 
							    "the instance selection flags will be read."
 | 
				
			||||||
 | 
							);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							auto* file = sub->add_option("--file", state.log.file, "Log file to read.");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		sub->add_option("-r,--rules", state.log.readoutRules, "Log file to read.")
 | 
							sub->add_option("-r,--rules", state.log.readoutRules, "Log file to read.")
 | 
				
			||||||
		    ->description("Rules to apply to the log being read, in the format of QT_LOGGING_RULES.");
 | 
							    ->description("Rules to apply to the log being read, in the format of QT_LOGGING_RULES.");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							auto* instance = addInstanceSelection(sub)->excludes(file);
 | 
				
			||||||
 | 
							addConfigSelection(sub)->excludes(instance)->excludes(file);
 | 
				
			||||||
		addLoggingOptions(sub, false);
 | 
							addLoggingOptions(sub, false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// todo
 | 
					 | 
				
			||||||
		// addConfigSelection(sub)->excludes(file);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		state.subcommand.log = sub;
 | 
							state.subcommand.log = sub;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -444,9 +450,19 @@ int selectInstance(CommandState& cmd, InstanceLockInfo* instance) {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int readLogFile(CommandState& cmd) {
 | 
					int readLogFile(CommandState& cmd) {
 | 
				
			||||||
	auto file = QFile(*cmd.log.file);
 | 
						auto path = *cmd.log.file;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (path.isEmpty()) {
 | 
				
			||||||
 | 
							InstanceLockInfo instance;
 | 
				
			||||||
 | 
							auto r = selectInstance(cmd, &instance);
 | 
				
			||||||
 | 
							if (r != 0) return r;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							path = QDir(QsPaths::basePath(instance.instance.instanceId)).filePath("log.qslog");
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						auto file = QFile(path);
 | 
				
			||||||
	if (!file.open(QFile::ReadOnly)) {
 | 
						if (!file.open(QFile::ReadOnly)) {
 | 
				
			||||||
		qCCritical(logBare) << "Failed to open log file" << *cmd.log.file;
 | 
							qCCritical(logBare) << "Failed to open log file" << path;
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue