summaryrefslogtreecommitdiffstats
path: root/mpeglib/example/yaf/yafcore/inputDecoder.h
blob: 6382228daa7ae4b6f47d173d4b951eabc9169d4d (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
/*
  process Messages on the decoder
  Copyright (C) 1998  Martin Vogt

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU Library General Public License as published by
  the Free Software Foundation.

  For more information look at the file COPYRIGHT in this package

 */




#ifndef __INPUTDECODER_H
#define __INPUTDECODER_H
#include <pthread.h>

#include "outputInterface.h"
#include <strings.h>
#include <kdemacros.h>

#define _DECODER_STATUS_IDLE       1
#define _DECODER_STATUS_WORKING    2
#define _DECODER_STATUS_EXIT       3

class CommandTable;
class CommandTableYAF;
class CommandLine;

class KDE_EXPORT InputDecoder {

  int status;
  CommandTable* commandTable;
  CommandTableYAF* yafCommands;
  Buffer* returnBuffer;
  Buffer* returnLine;
  int lRuntimeInfo;



  
 public:
  InputDecoder();
  virtual ~InputDecoder();
  
  void processCommandLine(CommandLine*);
  virtual const char* processCommand(int command,const char* args);
  virtual void doSomething();

  virtual void setDecodertqStatus(int status);
  int getDecodertqStatus();

  const char* getReturnCode();

  void appendCommandTable(CommandTable* table);

  void setRuntimeInfo(int lRuntimeInfo);
  int getRuntimeInfo();


 private:

  void clearReturnBuffer();
  void appendReturnBuffer(const char* msg);


  int commandCounter;
  int commandId;
  const char* commandMsg;
  const char* commandArgs;
  const char* retString;
  char* commandCounterString;
  
  
};

#endif