summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/libjingle/talk/examples/call/console.h
blob: cb6f5e7ef22ed9ddc3ec09998075c60b3f3fe791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * Jingle call example
 * Copyright 2004--2005, Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef CRICKET_EXAMPLES_CALL_CONSOLE_H__
#define CRICKET_EXAMPLES_CALL_CONSOLE_H__

#include <string>
#include <vector>

#include "talk/base/sigslot.h"
#include "talk/base/thread.h"
#include "talk/base/physicalsocketserver.h"

class CConsole;

class ConsoleTask {
public:
  ConsoleTask() : console_(NULL) {}
  virtual ~ConsoleTask() {}

  CConsole* console() const { return console_; } 
  void set_console(CConsole* console) { console_ = console; }

  virtual void Start() {}
  virtual std::string GetPrompt() = 0;
  virtual void ProcessLine(const std::string& line) = 0; // includes newline

  sigslot::signal1<ConsoleTask*> SignalDone;

protected:
  void ParseLine(const std::string& line, std::vector<std::string>* words);

private:
  CConsole* console_;
};

class CConsole: public cricket::MessageHandler, public sigslot::has_slots<> {
public:
  CConsole(cricket::PhysicalSocketServer* ss);
  ~CConsole();

  void Push(ConsoleTask* task);
  void Remove(ConsoleTask* task);

  // final newline should not be included
  void Print(const char* str);
  void Print(const std::string& str);
  void Printf(const char* format, ...);

private:
  cricket::AsyncFile* stdin_;
  std::vector<ConsoleTask*>* tasks_;
  std::string input_;
  bool prompting_;
  bool prompt_dirty_;

  void OnTaskDone(ConsoleTask* task);
  void OnReadInput(cricket::AsyncFile* file);
  void OnMessage(cricket::Message* pmsg);
  void UpdatePrompt();
};

void InitConsole(cricket::PhysicalSocketServer* ss);
CConsole* Console();

#endif // CRICKET_EXAMPLES_CALL_CONSOLE_H__