cfg.cpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /* SLiM - Simple Login Manager
  2. Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
  3. Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. */
  9. #include <fstream>
  10. #include <string>
  11. #include <iostream>
  12. #include <unistd.h>
  13. #include "cfg.h"
  14. using namespace std;
  15. typedef pair<string,string> option;
  16. Cfg::Cfg() {
  17. // Configuration options
  18. options.insert(option("default_path","./:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"));
  19. options.insert(option("default_xserver","/usr/X11R6/bin/X"));
  20. options.insert(option("xserver_arguments",""));
  21. options.insert(option("numlock",""));
  22. options.insert(option("daemon",""));
  23. options.insert(option("login_cmd","exec /bin/bash -login ~/.xinitrc %session"));
  24. options.insert(option("halt_cmd","/sbin/shutdown -h now"));
  25. options.insert(option("reboot_cmd","/sbin/shutdown -r now"));
  26. options.insert(option("suspend_cmd",""));
  27. options.insert(option("sessionstart_cmd",""));
  28. options.insert(option("sessionstop_cmd",""));
  29. options.insert(option("console_cmd","/usr/X11R6/bin/xterm -C -fg white -bg black +sb -g %dx%d+%d+%d -fn %dx%d -T ""Console login"" -e /bin/sh -c ""/bin/cat /etc/issue; exec /bin/login"""));
  30. options.insert(option("screenshot_cmd","import -window root /login.app.png"));
  31. options.insert(option("welcome_msg","Welcome to %host"));
  32. options.insert(option("default_user",""));
  33. options.insert(option("current_theme","default"));
  34. options.insert(option("lockfile","/var/run/slim.lock"));
  35. options.insert(option("logfile","/var/log/slim.log"));
  36. options.insert(option("shutdown_msg","The system is halting..."));
  37. options.insert(option("reboot_msg","The system is rebooting..."));
  38. options.insert(option("sessions","wmaker,blackbox,icewm"));
  39. options.insert(option("hidecursor","false"));
  40. // Theme stuff
  41. options.insert(option("input_panel_x","50%"));
  42. options.insert(option("input_panel_y","40%"));
  43. options.insert(option("input_name_x","200"));
  44. options.insert(option("input_name_y","154"));
  45. options.insert(option("input_pass_x","-1")); // default is single inputbox
  46. options.insert(option("input_pass_y","-1"));
  47. options.insert(option("input_font","Verdana:size=11"));
  48. options.insert(option("input_color", "#000000"));
  49. options.insert(option("input_cursor_height","20"));
  50. options.insert(option("input_maxlength_name","20"));
  51. options.insert(option("input_maxlength_passwd","20"));
  52. options.insert(option("input_shadow_xoffset", "0"));
  53. options.insert(option("input_shadow_yoffset", "0"));
  54. options.insert(option("input_shadow_color","#FFFFFF"));
  55. options.insert(option("welcome_font","Verdana:size=14"));
  56. options.insert(option("welcome_color","#FFFFFF"));
  57. options.insert(option("welcome_x","-1"));
  58. options.insert(option("welcome_y","-1"));
  59. options.insert(option("welcome_shadow_xoffset", "0"));
  60. options.insert(option("welcome_shadow_yoffset", "0"));
  61. options.insert(option("welcome_shadow_color","#FFFFFF"));
  62. options.insert(option("intro_msg",""));
  63. options.insert(option("intro_font","Verdana:size=14"));
  64. options.insert(option("intro_color","#FFFFFF"));
  65. options.insert(option("intro_x","-1"));
  66. options.insert(option("intro_y","-1"));
  67. options.insert(option("background_style","stretch"));
  68. options.insert(option("background_color","#CCCCCC"));
  69. options.insert(option("username_font","Verdana:size=12"));
  70. options.insert(option("username_color","#FFFFFF"));
  71. options.insert(option("username_x","-1"));
  72. options.insert(option("username_y","-1"));
  73. options.insert(option("username_msg","Please enter your username"));
  74. options.insert(option("username_shadow_xoffset", "0"));
  75. options.insert(option("username_shadow_yoffset", "0"));
  76. options.insert(option("username_shadow_color","#FFFFFF"));
  77. options.insert(option("password_x","-1"));
  78. options.insert(option("password_y","-1"));
  79. options.insert(option("password_msg","Please enter your password"));
  80. options.insert(option("msg_color","#FFFFFF"));
  81. options.insert(option("msg_font","Verdana:size=16:bold"));
  82. options.insert(option("msg_x","40"));
  83. options.insert(option("msg_y","40"));
  84. options.insert(option("msg_shadow_xoffset", "0"));
  85. options.insert(option("msg_shadow_yoffset", "0"));
  86. options.insert(option("msg_shadow_color","#FFFFFF"));
  87. error = "";
  88. }
  89. /*
  90. * Creates the Cfg object and parses
  91. * known options from the given configfile / themefile
  92. */
  93. bool Cfg::readConf(string configfile) {
  94. int n = -1;
  95. string line, fn(configfile);
  96. map<string,string>::iterator it;
  97. string op;
  98. ifstream cfgfile( fn.c_str() );
  99. if (cfgfile) {
  100. while (getline( cfgfile, line )) {
  101. it = options.begin();
  102. while (it != options.end()) {
  103. op = it->first;
  104. n = line.find(op);
  105. if (n == 0)
  106. options[op] = parseOption(line, op);
  107. it++;
  108. }
  109. }
  110. cfgfile.close();
  111. return true;
  112. } else {
  113. error = "Cannot read configuration file: " + configfile;
  114. return false;
  115. }
  116. }
  117. /* Returns the option value, trimmed */
  118. string Cfg::parseOption(string line, string option ) {
  119. return Trim( line.substr(option.size(), line.size() - option.size()));
  120. }
  121. const string& Cfg::getError() const {
  122. return error;
  123. }
  124. string& Cfg::getOption(string option) {
  125. return options[option];
  126. }
  127. /* return a trimmed string */
  128. string Cfg::Trim( const string& s ) {
  129. if ( s.empty() ) {
  130. return s;
  131. }
  132. int pos = 0;
  133. string line = s;
  134. string::size_type len = line.length();
  135. while ( pos < len && isspace( line[pos] ) ) {
  136. ++pos;
  137. }
  138. line.erase( 0, pos );
  139. pos = line.length()-1;
  140. while ( pos > -1 && isspace( line[pos] ) ) {
  141. --pos;
  142. }
  143. if ( pos != -1 ) {
  144. line.erase( pos+1 );
  145. }
  146. return line;
  147. }
  148. /* Return the welcome message with replaced vars */
  149. string Cfg::getWelcomeMessage(){
  150. string s = getOption("welcome_msg");
  151. int n = -1;
  152. n = s.find("%host");
  153. if (n >= 0) {
  154. string tmp = s.substr(0, n);
  155. char host[40];
  156. gethostname(host,40);
  157. tmp = tmp + host;
  158. tmp = tmp + s.substr(n+5, s.size() - n);
  159. s = tmp;
  160. }
  161. n = s.find("%domain");
  162. if (n >= 0) {
  163. string tmp = s.substr(0, n);;
  164. char domain[40];
  165. getdomainname(domain,40);
  166. tmp = tmp + domain;
  167. tmp = tmp + s.substr(n+7, s.size() - n);
  168. s = tmp;
  169. }
  170. return s;
  171. }
  172. int Cfg::string2int(const char* string, bool* ok) {
  173. char* err = 0;
  174. int l = (int)strtol(string, &err, 10);
  175. if (ok) {
  176. *ok = (*err == 0);
  177. }
  178. return (*err == 0) ? l : 0;
  179. }
  180. // Get absolute position
  181. int Cfg::absolutepos(const string& position, int max, int width) {
  182. int n = -1;
  183. n = position.find("%");
  184. if (n>0) { // X Position expressed in percentage
  185. const char* tmp = position.substr(0, n).c_str();
  186. int result = (max*string2int(tmp)/100) - (width / 2);
  187. return result < 0 ? 0 : result ;
  188. } else { // Absolute X position
  189. return string2int(position.c_str());
  190. }
  191. }
  192. // split a comma separated string into a vector of strings
  193. void Cfg::split(vector<string>& v, const string& str, char c) {
  194. v.clear();
  195. string::const_iterator s = str.begin();
  196. while (true) {
  197. string::const_iterator begin = s;
  198. while (*s != c && s != str.end()) { ++s; }
  199. v.push_back(string(begin, s));
  200. if (s == str.end()) {
  201. break;
  202. }
  203. if (++s == str.end()) {
  204. v.push_back("");
  205. break;
  206. }
  207. }
  208. }
  209. string Cfg::nextSession(string current) {
  210. vector<string> sessions;
  211. split(sessions, getOption("sessions"), ',');
  212. if (sessions.size() <= 1)
  213. return current;
  214. for (int i=0; i<sessions.size()-1; i++) {
  215. if (current == sessions[i]) {
  216. return sessions[i+1];
  217. }
  218. }
  219. return sessions[0];
  220. }