=?UTF-8?Q?Iv=C3=A1n=20Matellanes=20?=: msvcirt: Implement ostream::osfx.

Alexandre Julliard julliard at winehq.org
Wed Jun 15 11:39:41 CDT 2016


Module: wine
Branch: master
Commit: 28d400be632d7675737f2ab57cdc5d31cbbfd72f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=28d400be632d7675737f2ab57cdc5d31cbbfd72f

Author: Iván Matellanes <matellanesivan at gmail.com>
Date:   Tue Jun 14 15:40:19 2016 +0100

msvcirt: Implement ostream::osfx.

Signed-off-by: Iván Matellanes <matellanes.ivan at gmail.com>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcirt/msvcirt.c       | 14 +++++++++++++-
 dlls/msvcirt/tests/msvcirt.c | 25 +++++++++++++++++++++++++
 2 files changed, 38 insertions(+), 1 deletion(-)

diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c
index 54012c0..6872383 100644
--- a/dlls/msvcirt/msvcirt.c
+++ b/dlls/msvcirt/msvcirt.c
@@ -2426,7 +2426,19 @@ int __thiscall ostream_opfx(ostream *this)
 DEFINE_THISCALL_WRAPPER(ostream_osfx, 4)
 void __thiscall ostream_osfx(ostream *this)
 {
-    FIXME("(%p) stub\n", this);
+    ios *base = ostream_get_ios(this);
+
+    TRACE("(%p)\n", this);
+
+    ios_unlockbuf(base);
+    ios_width_set(base, 0);
+    if (base->flags & FLAGS_unitbuf)
+        ostream_flush(this);
+    if (base->flags & FLAGS_stdio) {
+        fflush(stdout);
+        fflush(stderr);
+    }
+    ios_unlock(base);
 }
 
 /* ?put at ostream@@QAEAAV1 at D@Z */
diff --git a/dlls/msvcirt/tests/msvcirt.c b/dlls/msvcirt/tests/msvcirt.c
index 7197126..f29bafd 100644
--- a/dlls/msvcirt/tests/msvcirt.c
+++ b/dlls/msvcirt/tests/msvcirt.c
@@ -263,6 +263,7 @@ static ostream* (*__thiscall p_ostream_assign_sb)(ostream*, streambuf*);
 static void (*__thiscall p_ostream_vbase_dtor)(ostream*);
 static ostream* (*__thiscall p_ostream_flush)(ostream*);
 static int (*__thiscall p_ostream_opfx)(ostream*);
+static void (*__thiscall p_ostream_osfx)(ostream*);
 
 /* Emulate a __thiscall */
 #ifdef __i386__
@@ -430,6 +431,7 @@ static BOOL init(void)
         SET(p_ostream_vbase_dtor, "??_Dostream@@QEAAXXZ");
         SET(p_ostream_flush, "?flush at ostream@@QEAAAEAV1 at XZ");
         SET(p_ostream_opfx, "?opfx at ostream@@QEAAHXZ");
+        SET(p_ostream_osfx, "?osfx at ostream@@QEAAXXZ");
     } else {
         p_operator_new = (void*)GetProcAddress(msvcrt, "??2 at YAPAXI@Z");
         p_operator_delete = (void*)GetProcAddress(msvcrt, "??3 at YAXPAX@Z");
@@ -527,6 +529,7 @@ static BOOL init(void)
         SET(p_ostream_vbase_dtor, "??_Dostream@@QAEXXZ");
         SET(p_ostream_flush, "?flush at ostream@@QAEAAV1 at XZ");
         SET(p_ostream_opfx, "?opfx at ostream@@QAEHXZ");
+        SET(p_ostream_osfx, "?osfx at ostream@@QAEXXZ");
     }
     SET(p_ios_static_lock, "?x_lockc at ios@@0U_CRT_CRITICAL_SECTION@@A");
     SET(p_ios_lockc, "?lockc at ios@@KAXXZ");
@@ -2707,6 +2710,28 @@ if (0) /* crashes on native */
     ok(fb2.base.pbase == NULL, "wrong put base, expected %p got %p\n", NULL, fb2.base.pbase);
     ok(fb2.base.pptr == NULL, "wrong put pointer, expected %p got %p\n", NULL, fb2.base.pptr);
 
+    /* osfx */
+    os1.base_ios.state = IOSTATE_badbit;
+    os1.base_ios.width = 0xab;
+    call_func1(p_ostream_osfx, &os1);
+    ok(os1.base_ios.state == IOSTATE_badbit, "expected %d got %d\n", IOSTATE_badbit, os1.base_ios.state);
+    ok(os1.base_ios.width == 0, "expected 0 got %d\n", os1.base_ios.width);
+    ok(fb1.base.pbase == fb1.base.base, "wrong put base, expected %p got %p\n", fb1.base.base, fb1.base.pbase);
+    ok(fb1.base.pptr == fb1.base.base + 22, "wrong put pointer, expected %p got %p\n", fb1.base.base + 22, fb1.base.pptr);
+    os1.base_ios.state = IOSTATE_goodbit;
+    ret = (int) call_func1(p_ostream_opfx, &os1);
+    ok(ret == 1, "expected 1 got %d\n", ret);
+    os1.base_ios.sb = NULL;
+if (0) /* crashes on native */
+    call_func1(p_ostream_osfx, &os1);
+    os1.base_ios.sb = (streambuf*) &fb1;
+    os1.base_ios.flags = FLAGS_unitbuf;
+    call_func1(p_ostream_osfx, &os1);
+    ok(os1.base_ios.state == IOSTATE_goodbit, "expected %d got %d\n", IOSTATE_goodbit, os1.base_ios.state);
+    ok(os1.base_ios.flags == FLAGS_unitbuf, "expected %d got %d\n", FLAGS_unitbuf, os1.base_ios.flags);
+    ok(fb1.base.pbase == NULL, "wrong put base, expected %p got %p\n", NULL, fb1.base.pbase);
+    ok(fb1.base.pptr == NULL, "wrong put pointer, expected %p got %p\n", NULL, fb1.base.pptr);
+
     call_func1(p_ostream_vbase_dtor, &os1);
     call_func1(p_ostream_vbase_dtor, &os2);
     call_func1(p_filebuf_dtor, &fb1);




More information about the wine-cvs mailing list