~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

  • Committer: Jay Pipes
  • Date: 2009-10-03 06:05:57 UTC
  • mto: (1234.1.1 push) (1237.2.10 push)
  • mto: This revision was merged to the branch mainline in revision 1166.
  • Revision ID: jpipes@serialcoder-20091003060557-kw8xz3p634vqsbsi
New transaction proto file containing message definitions to be
used in new replication system, which supports group commit behaviour.

New statement_transform library files with utility methods used in 
converting transaction messages into SQL strings.

Update transaction_reader and transaction_writer programs to use
CodedOutput and CodedInputStream from GPB library and got rid of 
calls to korr.h macros entirely.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
libdrizzledmessage_la_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
44
44
 
45
 
libdrizzledmessage_la_SOURCES = command_transform.cc
 
45
libdrizzledmessage_la_SOURCES = command_transform.cc statement_transform.cc
46
46
 
47
47
messageincludedir= ${includedir}/drizzled/message
48
 
messageinclude_HEADERS= command_transform.h
 
48
messageinclude_HEADERS= command_transform.h statement_transform.h
49
49
 
50
50
nodist_libdrizzledmessage_la_SOURCES = \
51
51
                binary_log.pb.cc \
59
59
                master_list.pb.h \
60
60
                replication.pb.h \
61
61
                schema.pb.h \
62
 
                table.pb.h \
63
 
                command_transform.h
 
62
                table.pb.h 
64
63
 
65
64
noinst_HEADERS= \
66
65
                binary_log.h \
85
84
 
86
85
master_list_reader_SOURCES =  master_list_reader.cc
87
86
 
88
 
transaction_writer_SOURCES =  transaction_writer.cc
 
87
transaction_writer_SOURCES =  transaction_writer.cc transaction.pb.cc
89
88
 
90
 
transaction_reader_SOURCES =  transaction_reader.cc
 
89
transaction_reader_SOURCES =  transaction_reader.cc transaction.pb.cc
91
90
 
92
91
command_reader_SOURCES =  command_reader.cc
93
92
 
99
98
                binary_log.proto \
100
99
                master_list.proto \
101
100
                replication.proto \
 
101
                transaction.proto \
102
102
                check_length.sh
103
103
 
104
104
BUILT_SOURCES = \
106
106
                table.pb.h \
107
107
                binary_log.pb.h \
108
108
                replication.pb.h \
 
109
                transaction.pb.h \
109
110
                master_list.pb.h
110
111
 
111
112
CLEANFILES = \
117
118
                table.pb.cc \
118
119
                replication.pb.h \
119
120
                replication.pb.cc \
 
121
                transaction.pb.h \
 
122
                transaction.pb.cc \
120
123
                master_list.pb.h \
121
124
                master_list.pb.cc
122
125