Skip to content

Commit b1bc4dd

Browse files
committed
ST: Simplify it, only Linux/Darwin, epoll/kqueue, single process
commit f4872e5 Author: winlin <[email protected]> Date: Fri Feb 26 09:13:21 2021 +0800 ST: For ossrs#2188: Remove sendmmsg from ST. commit aaeb891 Author: winlin <[email protected]> Date: Thu Mar 11 08:09:54 2021 +0800 ST: Refine utest script. commit d1ac9da Author: winlin <[email protected]> Date: Wed Mar 3 11:02:25 2021 +0800 ST: Support fast utest and coverage commit 8400115 Author: winlin <[email protected]> Date: Fri Feb 26 07:02:19 2021 +0800 ST: Always use unserialized accept for linux or darwin commit c3686f2 Author: winlin <[email protected]> Date: Fri Feb 26 06:54:05 2021 +0800 ST: Refine ARFLAGS by disable the verbose log commit aaa5c4f Author: winlin <[email protected]> Date: Thu Feb 25 08:58:46 2021 +0800 ST: Stack always grows from top to down. commit dddd466 Author: winlin <[email protected]> Date: Thu Feb 25 08:51:31 2021 +0800 ST: Ignore process fork, for single process only commit 7906cb5 Author: winlin <[email protected]> Date: Thu Feb 25 08:50:59 2021 +0800 ST: Fix build warnings commit d94921b Author: winlin <[email protected]> Date: Thu Feb 25 07:27:45 2021 +0800 ST: Remove select and poll support, only epoll and kqueue commit 76d2025 Author: winlin <[email protected]> Date: Thu Feb 25 07:10:47 2021 +0800 ST: Remove multiple OS support, except Linux and Darwin. commit 13c4ba3 Author: winlin <[email protected]> Date: Thu Feb 25 06:59:35 2021 +0800 ST: Remove __ia64__ CPU support commit 46c06e4 Author: winlin <[email protected]> Date: Wed Feb 24 11:37:27 2021 +0800 ST: Remove unused files for ST
1 parent fd6c653 commit b1bc4dd

35 files changed

+114
-6175
lines changed

trunk/3rdparty/st-srs/Makefile

+9-225
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,8 @@ VERSION = 1.9
3838
##########################
3939
# Supported OSes:
4040
#
41-
#OS = AIX
42-
#OS = CYGWIN
4341
#OS = DARWIN
44-
#OS = FREEBSD
45-
#OS = HPUX
46-
#OS = HPUX_64
47-
#OS = IRIX
48-
#OS = IRIX_64
4942
#OS = LINUX
50-
#OS = NETBSD
51-
#OS = OPENBSD
52-
#OS = OSF1
53-
#OS = SOLARIS
54-
#OS = SOLARIS_64
5543

5644
# Please see the "Other possible defines" section below for
5745
# possible compilation options.
@@ -62,6 +50,7 @@ AR = ar
6250
LD = ld
6351
RANLIB = ranlib
6452
LN = ln
53+
STATIC_ONLY = yes
6554

6655
SHELL = /bin/sh
6756
ECHO = /bin/echo
@@ -72,7 +61,7 @@ TARGETDIR = $(OS)_$(shell uname -r)_$(BUILD)
7261
DEFINES = -D$(OS)
7362
CFLAGS =
7463
SFLAGS =
75-
ARFLAGS = -rv
64+
ARFLAGS = -r
7665
LNFLAGS = -s
7766
DSO_SUFFIX = so
7867

@@ -83,20 +72,8 @@ DESC = st.pc
8372
# Platform section.
8473
# Possible targets:
8574

86-
TARGETS = aix-debug aix-optimized \
87-
cygwin-debug cygwin-optimized \
88-
darwin-debug darwin-optimized \
89-
freebsd-debug freebsd-optimized \
90-
hpux-debug hpux-optimized \
91-
hpux-64-debug hpux-64-optimized \
92-
irix-n32-debug irix-n32-optimized \
93-
irix-64-debug irix-64-optimized \
94-
linux-debug linux-optimized \
95-
netbsd-debug netbsd-optimized \
96-
openbsd-debug openbsd-optimized \
97-
osf1-debug osf1-optimized \
98-
solaris-debug solaris-optimized \
99-
solaris-64-debug solaris-64-optimized
75+
TARGETS = darwin-debug darwin-optimized \
76+
linux-debug linux-optimized
10077

10178
UTEST_TARGETS = darwin-debug-utest linux-debug-utest \
10279
darwin-debug-gcov linux-debug-gcov
@@ -105,138 +82,35 @@ UTEST_TARGETS = darwin-debug-utest linux-debug-utest \
10582
# Platform specifics
10683
#
10784

108-
ifeq ($(OS), AIX)
109-
AIX_VERSION = $(shell uname -v).$(shell uname -r)
110-
TARGETDIR = $(OS)_$(AIX_VERSION)_$(BUILD)
111-
CC = xlC
112-
STATIC_ONLY = yes
113-
ifeq ($(BUILD), OPT)
114-
OTHER_FLAGS = -w
115-
endif
116-
ifneq ($(filter-out 4.1 4.2, $(AIX_VERSION)),)
117-
DEFINES += -DMD_HAVE_SOCKLEN_T
118-
endif
119-
endif
120-
121-
ifeq ($(OS), CYGWIN)
122-
TARGETDIR = $(OS)_$(BUILD)
123-
CC = gcc
124-
LD = gcc
125-
DSO_SUFFIX = dll
126-
SLIBRARY = $(TARGETDIR)/libst.dll.a
127-
DLIBRARY = $(TARGETDIR)/libst.dll
128-
DEF_FILE = $(TARGETDIR)/libst.def
129-
LDFLAGS = libst.def -shared --enable-auto-image-base -Wl,--output-def,$(DEF_FILE),--out-implib,$(SLIBRARY)
130-
OTHER_FLAGS = -Wall
131-
endif
132-
13385
ifeq ($(OS), DARWIN)
13486
EXTRA_OBJS = $(TARGETDIR)/md_darwin.o
13587
LD = cc
13688
SFLAGS = -fPIC -fno-common
13789
DSO_SUFFIX = dylib
138-
RELEASE = $(shell uname -r | cut -d. -f1)
139-
PPC = $(shell test $(RELEASE) -le 9 && echo yes)
140-
INTEL = $(shell test $(RELEASE) -ge 9 && echo yes)
141-
ifeq ($(PPC), yes)
142-
CFLAGS += -arch ppc
143-
LDFLAGS += -arch ppc
144-
endif
145-
ifeq ($(INTEL), yes)
14690
CFLAGS += -arch x86_64
14791
LDFLAGS += -arch x86_64
148-
endif
14992
LDFLAGS += -dynamiclib -install_name /sw/lib/libst.$(MAJOR).$(DSO_SUFFIX) -compatibility_version $(MAJOR) -current_version $(VERSION)
15093
OTHER_FLAGS = -Wall
151-
endif
152-
153-
ifeq ($(OS), FREEBSD)
154-
SFLAGS = -fPIC
155-
LDFLAGS = -shared -soname=$(SONAME) -lc
156-
OTHER_FLAGS = -Wall
157-
ifeq ($(shell test -f /usr/include/sys/event.h && echo yes), yes)
15894
DEFINES += -DMD_HAVE_KQUEUE
15995
endif
160-
endif
161-
162-
ifeq (HPUX, $(findstring HPUX, $(OS)))
163-
ifeq ($(OS), HPUX_64)
164-
DEFINES = -DHPUX
165-
CFLAGS = -Ae +DD64 +Z
166-
else
167-
CFLAGS = -Ae +DAportable +Z
168-
endif
169-
RANLIB = true
170-
LDFLAGS = -b
171-
DSO_SUFFIX = sl
172-
endif
173-
174-
ifeq (IRIX, $(findstring IRIX, $(OS)))
175-
ifeq ($(OS), IRIX_64)
176-
DEFINES = -DIRIX
177-
ABIFLAG = -64
178-
else
179-
ABIFLAG = -n32
180-
endif
181-
RANLIB = true
182-
CFLAGS = $(ABIFLAG) -mips3
183-
LDFLAGS = $(ABIFLAG) -shared
184-
OTHER_FLAGS = -fullwarn
185-
endif
18696

18797
ifeq ($(OS), LINUX)
188-
EXTRA_OBJS = $(TARGETDIR)/md.o
98+
EXTRA_OBJS = $(TARGETDIR)/md_linux.o
18999
SFLAGS = -fPIC
190100
LDFLAGS = -shared -soname=$(SONAME) -lc
191101
OTHER_FLAGS = -Wall
192-
ifeq ($(shell test -f /usr/include/sys/epoll.h && echo yes), yes)
193102
DEFINES += -DMD_HAVE_EPOLL
194103
endif
195-
endif
196-
197-
ifeq ($(OS), NETBSD)
198-
SFLAGS = -fPIC
199-
LDFLAGS = -shared -soname=$(SONAME) -lc
200-
OTHER_FLAGS = -Wall
201-
endif
202-
203-
ifeq ($(OS), OPENBSD)
204-
SFLAGS = -fPIC
205-
LDFLAGS = -shared -soname=$(SONAME) -lc
206-
OTHER_FLAGS = -Wall
207-
ifeq ($(shell test -f /usr/include/sys/event.h && echo yes), yes)
208-
DEFINES += -DMD_HAVE_KQUEUE
209-
endif
210-
endif
211-
212-
ifeq ($(OS), OSF1)
213-
RANLIB = true
214-
LDFLAGS = -shared -all -expect_unresolved "*"
215-
endif
216-
217-
ifeq (SOLARIS, $(findstring SOLARIS, $(OS)))
218-
TARGETDIR = $(OS)_$(shell uname -r | sed 's/^5/2/')_$(BUILD)
219-
CC = gcc
220-
LD = gcc
221-
RANLIB = true
222-
LDFLAGS = -G
223-
OTHER_FLAGS = -Wall
224-
ifeq ($(OS), SOLARIS_64)
225-
DEFINES = -DSOLARIS
226-
CFLAGS += -m64
227-
LDFLAGS += -m64
228-
endif
229-
endif
230104

231105
#
232106
# End of platform section.
233107
##########################
234108

235109

236110
ifeq ($(BUILD), OPT)
237-
OTHER_FLAGS += -O
111+
OTHER_FLAGS += -O2
238112
else
239-
OTHER_FLAGS += -g
113+
OTHER_FLAGS += -g -O0
240114
DEFINES += -DDEBUG
241115
endif
242116

@@ -285,10 +159,6 @@ endif
285159
#
286160
# make EXTRA_CFLAGS=-UMD_HAVE_EPOLL <target>
287161
#
288-
# or to enable sendmmsg(2) support:
289-
#
290-
# make EXTRA_CFLAGS="-DMD_HAVE_SENDMMSG -D_GNU_SOURCE"
291-
#
292162
# or to enable stats for ST:
293163
#
294164
# make EXTRA_CFLAGS=-DDEBUG_STATS
@@ -311,28 +181,11 @@ OBJS += $(EXTRA_OBJS)
311181
HEADER = $(TARGETDIR)/st.h
312182
SLIBRARY = $(TARGETDIR)/libst.a
313183
DLIBRARY = $(TARGETDIR)/libst.$(DSO_SUFFIX).$(VERSION)
314-
EXAMPLES = examples
315184

316185
LINKNAME = libst.$(DSO_SUFFIX)
317186
SONAME = libst.$(DSO_SUFFIX).$(MAJOR)
318187
FULLNAME = libst.$(DSO_SUFFIX).$(VERSION)
319188

320-
ifeq ($(OS), CYGWIN)
321-
SONAME = cygst.$(DSO_SUFFIX)
322-
SLIBRARY = $(TARGETDIR)/libst.dll.a
323-
DLIBRARY = $(TARGETDIR)/$(SONAME)
324-
LINKNAME =
325-
# examples directory does not compile under cygwin
326-
EXAMPLES =
327-
endif
328-
329-
# for SRS
330-
# disable examples for ubuntu crossbuild failed.
331-
# @see https://github.com/winlinvip/simple-rtmp-server/issues/308
332-
ifeq ($(OS), LINUX)
333-
EXAMPLES =
334-
endif
335-
336189
ifeq ($(OS), DARWIN)
337190
LINKNAME = libst.$(DSO_SUFFIX)
338191
SONAME = libst.$(MAJOR).$(DSO_SUFFIX)
@@ -348,7 +201,7 @@ endif
348201
ifeq ($(OS),)
349202
ST_ALL = unknown
350203
else
351-
ST_ALL = $(TARGETDIR) $(LIBRARIES) $(HEADER) $(EXAMPLES) $(DESC)
204+
ST_ALL = $(TARGETDIR) $(LIBRARIES) $(HEADER) $(DESC)
352205
endif
353206

354207
all: $(ST_ALL)
@@ -386,7 +239,7 @@ $(HEADER): public.h
386239
rm -f $@
387240
cp public.h $@
388241

389-
$(TARGETDIR)/md.o: md.S
242+
$(TARGETDIR)/md_linux.o: md_linux.S
390243
$(CC) $(CFLAGS) -c $< -o $@
391244

392245
$(TARGETDIR)/md_darwin.o: md_darwin.S
@@ -395,10 +248,6 @@ $(TARGETDIR)/md_darwin.o: md_darwin.S
395248
$(TARGETDIR)/%.o: %.c common.h md.h
396249
$(CC) $(CFLAGS) -c $< -o $@
397250

398-
examples: $(SLIBRARY)
399-
@echo Making $@
400-
@cd $@; $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" OS="$(OS)" TARGETDIR="$(TARGETDIR)"
401-
402251
clean:
403252
rm -rf *_OPT *_DBG obj st.pc
404253

@@ -418,80 +267,15 @@ endif
418267
##########################
419268
# Target rules:
420269

421-
default-debug:
422-
. ./osguess.sh; $(MAKE) OS="$$OS" BUILD="DBG"
423-
default default-optimized:
424-
. ./osguess.sh; $(MAKE) OS="$$OS" BUILD="OPT"
425-
426-
aix-debug:
427-
$(MAKE) OS="AIX" BUILD="DBG"
428-
aix-optimized:
429-
$(MAKE) OS="AIX" BUILD="OPT"
430-
431-
cygwin-debug:
432-
$(MAKE) OS="CYGWIN" BUILD="DBG"
433-
cygwin-optimized:
434-
$(MAKE) OS="CYGWIN" BUILD="OPT"
435-
436270
darwin-debug:
437271
$(MAKE) OS="DARWIN" BUILD="DBG"
438272
darwin-optimized:
439273
$(MAKE) OS="DARWIN" BUILD="OPT"
440274

441-
freebsd-debug:
442-
$(MAKE) OS="FREEBSD" BUILD="DBG"
443-
freebsd-optimized:
444-
$(MAKE) OS="FREEBSD" BUILD="OPT"
445-
446-
hpux-debug:
447-
$(MAKE) OS="HPUX" BUILD="DBG"
448-
hpux-optimized:
449-
$(MAKE) OS="HPUX" BUILD="OPT"
450-
hpux-64-debug:
451-
$(MAKE) OS="HPUX_64" BUILD="DBG"
452-
hpux-64-optimized:
453-
$(MAKE) OS="HPUX_64" BUILD="OPT"
454-
455-
irix-n32-debug:
456-
$(MAKE) OS="IRIX" BUILD="DBG"
457-
irix-n32-optimized:
458-
$(MAKE) OS="IRIX" BUILD="OPT"
459-
irix-64-debug:
460-
$(MAKE) OS="IRIX_64" BUILD="DBG"
461-
irix-64-optimized:
462-
$(MAKE) OS="IRIX_64" BUILD="OPT"
463-
464275
linux-debug:
465276
$(MAKE) OS="LINUX" BUILD="DBG"
466277
linux-optimized:
467278
$(MAKE) OS="LINUX" BUILD="OPT"
468-
# compatibility
469-
linux-ia64-debug: linux-debug
470-
linux-ia64-optimized: linux-optimized
471-
472-
netbsd-debug:
473-
$(MAKE) OS="NETBSD" BUILD="DBG"
474-
netbsd-optimized:
475-
$(MAKE) OS="NETBSD" BUILD="OPT"
476-
477-
openbsd-debug:
478-
$(MAKE) OS="OPENBSD" BUILD="DBG"
479-
openbsd-optimized:
480-
$(MAKE) OS="OPENBSD" BUILD="OPT"
481-
482-
osf1-debug:
483-
$(MAKE) OS="OSF1" BUILD="DBG"
484-
osf1-optimized:
485-
$(MAKE) OS="OSF1" BUILD="OPT"
486-
487-
solaris-debug:
488-
$(MAKE) OS="SOLARIS" BUILD="DBG"
489-
solaris-optimized:
490-
$(MAKE) OS="SOLARIS" BUILD="OPT"
491-
solaris-64-debug:
492-
$(MAKE) OS="SOLARIS_64" BUILD="DBG"
493-
solaris-64-optimized:
494-
$(MAKE) OS="SOLARIS_64" BUILD="OPT"
495279

496280
darwin-debug-utest:
497281
@echo "Build utest for state-threads"

trunk/3rdparty/st-srs/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ The branch [srs](https://github.com/ossrs/state-threads/tree/srs) will be patche
6868
- [x] Support macro `MD_ST_NO_ASM` to disable ASM, [#8](https://github.com/ossrs/state-threads/issues/8).
6969
- [x] Merge patch [srs#1282](https://github.com/ossrs/srs/issues/1282#issuecomment-445539513) to support aarch64, [#9](https://github.com/ossrs/state-threads/issues/9).
7070
- [x] Support OSX for Apple Darwin, macOS, [#11](https://github.com/ossrs/state-threads/issues/11).
71-
- [x] Support sendmmsg for UDP, [#12](https://github.com/ossrs/state-threads/issues/12).
71+
- [ ] Support sendmmsg for UDP, [#12](https://github.com/ossrs/state-threads/issues/12).
7272
- [x] Refine performance for sleep or epoll_wait(0), [#17](https://github.com/ossrs/state-threads/issues/17).
7373
- [ ] Improve the performance of timer. [9fe8cfe5b](https://github.com/ossrs/state-threads/commit/9fe8cfe5b1c9741a2e671a46215184f267fba400), [7879c2b](https://github.com/ossrs/state-threads/commit/7879c2b), [387cddb](https://github.com/ossrs/state-threads/commit/387cddb)
7474
- [x] Support utest by gtest and coverage by gcov/gocvr.
75+
- [ ] Support Multiple Threads for Linux and Darwin. [#19](https://github.com/ossrs/state-threads/issues/19), [srs#2188](https://github.com/ossrs/srs/issues/2188).
7576

7677
## GDB Tools
7778

trunk/3rdparty/st-srs/auto/fast.sh

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/bash
2+
3+
PWD=$(cd `dirname $0`/.. && pwd)
4+
5+
pushd $PWD
6+
echo "Run UTest in $(pwd)"
7+
8+
IS_LINUX=yes
9+
uname -s|grep Darwin >/dev/null && IS_DARWIN=yes && IS_LINUX=no
10+
echo "IS_LINUX: $IS_LINUX, IS_DARWIN: $IS_DARWIN"
11+
12+
echo "Clean gcda files"
13+
rm -f ./obj/*.gcda
14+
15+
echo "Build and run utest"
16+
if [[ $IS_DARWIN == yes ]]; then
17+
make darwin-debug-gcov && ./obj/st_utest
18+
else
19+
make linux-debug-gcov && ./obj/st_utest
20+
fi
21+
ret=$?; if [[ 0 -ne $ret ]]; then echo "Make ST utest fail, ret=$ret"; exit $ret; fi
22+
23+
echo "Generating coverage"
24+
mkdir -p coverage &&
25+
gcovr -r . -e LINUX -e DARWIN -e examples --html --html-details -o coverage/st.html &&
26+
echo "Coverage report at coverage/st.html" &&
27+
open coverage/st.html
28+
29+
popd
30+
echo "UTest done, restore $(pwd)"

0 commit comments

Comments
 (0)